OpenRadioss 2025.1.11
OpenRadioss project
Loading...
Searching...
No Matches
tranpvq33.F
Go to the documentation of this file.
1Copyright> OpenRadioss
2Copyright> Copyright (C) 1986-2025 Altair Engineering Inc.
3Copyright>
4Copyright> This program is free software: you can redistribute it and/or modify
5Copyright> it under the terms of the GNU Affero General Public License as published by
6Copyright> the Free Software Foundation, either version 3 of the License, or
7Copyright> (at your option) any later version.
8Copyright>
9Copyright> This program is distributed in the hope that it will be useful,
10Copyright> but WITHOUT ANY WARRANTY; without even the implied warranty of
11Copyright> MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12Copyright> GNU Affero General Public License for more details.
13Copyright>
14Copyright> You should have received a copy of the GNU Affero General Public License
15Copyright> along with this program. If not, see <https://www.gnu.org/licenses/>.
16Copyright>
17Copyright>
18Copyright> Commercial Alternative: Altair Radioss Software
19Copyright>
20Copyright> As an alternative to this open-source version, Altair also offers Altair Radioss
21Copyright> software under a commercial license. Contact Altair to discuss further if the
22Copyright> commercial version may interest you: https://www.altair.com/radioss/.
23!||====================================================================
24!|| tranpvq33 ../engine/source/elements/thickshell/solide6c/tranpvq33.F
25!||--- called by ------------------------------------------------------
26!|| setprojks6 ../engine/source/elements/thickshell/solide6c/setprojks6.F
27!||====================================================================
28 SUBROUTINE tranpvq33(JFT ,JLT ,KD ,PVQ ,VQ ,IS ,IT )
29C---+----1----+----2----+----3----+----4----+----5----+----6----+----7----+----8
30#include "implicit_f.inc"
31C-----------------------------------------------
32C D U M M Y A R G U M E N T S
33C-----------------------------------------------
34 INTEGER JFT,JLT,IS,IT
36 . kd(3,3,*),pvq(3,3,*),vq(3,3,*)
37C-----------------------------------------------
38C LOCAL A R G U M E N T S
39C-----------------------------------------------
40 INTEGER I,J,EP,L,I1,J1
42 . k(3,3)
43C--------------PVQIJ=[VQ]gij-[KD][VQ]--;PVQJI=[VQ]gij-[KD]^t[VQ]-----------------------------
44 IF (it==1) THEN
45 DO i=1,3
46 DO j=1,3
47 DO ep=jft,jlt
48 k(i,j)=zero
49 DO l=1,3
50 k(i,j)=k(i,j)+kd(i,l,ep)*vq(l,j,ep)
51 ENDDO
52 pvq(i,j,ep)=-k(i,j)
53 ENDDO
54 ENDDO
55 ENDDO
56 ELSE
57 DO i=1,3
58 DO j=1,3
59 DO ep=jft,jlt
60 k(i,j)=zero
61 DO l=1,3
62 k(i,j)=k(i,j)+kd(l,i,ep)*vq(l,j,ep)
63 ENDDO
64 pvq(i,j,ep)=-k(i,j)
65 ENDDO
66 ENDDO
67 ENDDO
68 END IF !(IT==1) THEN
69C
70 IF (is==1) THEN
71 DO i=1,3
72 DO j=1,3
73 DO ep=jft,jlt
74 pvq(i,j,ep)=pvq(i,j,ep)+vq(i,j,ep)
75 ENDDO
76 ENDDO
77 ENDDO
78 END IF
79C
80 RETURN
81 END
#define my_real
Definition cppsort.cpp:32
subroutine tranpvq33(jft, jlt, kd, pvq, vq, is, it)
Definition tranpvq33.F:29