OpenRadioss 2025.1.11
OpenRadioss project
Loading...
Searching...
No Matches
calcmatb.F File Reference
#include "implicit_f.inc"

Go to the source code of this file.

Functions/Subroutines

subroutine calcmatb (nel, f, fp, matb)

Function/Subroutine Documentation

◆ calcmatb()

subroutine calcmatb ( integer nel,
f,
fp,
matb )

Definition at line 38 of file calcmatb.F.

39C-----------------------------------------------
40C I M P L I C I T T Y P E S
41C-----------------------------------------------
42#include "implicit_f.inc"
43C----------------------------------------------------------------
44C I N P U T A R G U M E N T S
45C----------------------------------------------------------------
46 INTEGER NEL
48 . f(nel, 3,3), fp(nel, 3,3)
49C----------------------------------------------------------------
50C O U T P U T A R G U M E N T S
51C----------------------------------------------------------------
53 . matb(nel, 3,3)
54C----------------------------------------------------------------
55 INTEGER I
57 . invfpo(nel, 3,3) , fe(nel, 3,3), fet(nel, 3,3)
58C----------------------------------------------------------------
59
60 !COMPUTE FP viscous GRADIENT OF DEF
61 !------------------------------------
62 !F=FE*FP
63 CALL kmatinv3(fp , invfpo, nel) !INVFPO = INVERSE (FP)
64 CALL prodmat (f , invfpo, fe, nel) ! FE = F * INVFPO
65
66 CALL prodaat(fe , matb, nel) !
67 RETURN
#define my_real
Definition cppsort.cpp:32
subroutine kmatinv3(mat, ainv, nel)
Definition kmatinv.F:32
subroutine prodaat(a, c, nel)
Definition prodAAT.F:34
subroutine prodmat(a, b, c, nel)
Definition prodmat.F:35