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

Go to the source code of this file.

Functions/Subroutines

subroutine transk (kl, trm, nel)

Function/Subroutine Documentation

◆ transk()

subroutine transk ( double precision, dimension(24,24,nel) kl,
double precision, dimension(nel,24,24) trm,
integer nel )

Definition at line 29 of file transk.F.

31C-----------------------------------------------
32C I m p l i c i t T y p e s
33C-----------------------------------------------
34#include "implicit_f.inc"
35C-----------------------------------------------
36C G l o b a l P a r a m e t e r s
37C-----------------------------------------------
38 double precision
39 . kl(24,24,nel),ktemp(24,24),trm(nel,24,24)
40 INTEGER I,L,M,N,NEL
41
42 DO i=1,nel
43 !CALL DGEMM('N','N',24,24,24,ONE,KL(1,1,I),24,TRM(I,1,1),24,ZERO,
44 ktemp(1:24,1:24) = zero
45 DO l=1,24
46 DO m=1,24
47 DO n=1,24
48 ktemp(l,m) = ktemp(l,m)+kl(l,n,i)*trm(i,n,m)
49 ENDDO
50 ENDDO
51 ENDDO
52
53 kl(1:24,1:24,i) = zero
54 DO l=1,24
55 DO m=1,24
56 DO n=1,24
57 kl(l,m,i) = kl(l,m,i)+trm(i,n,l)*ktemp(n,m)
58 ENDDO
59 ENDDO
60 ENDDO
61 ENDDO
62c
63 RETURN