OpenRadioss 2025.1.11
OpenRadioss project
Loading...
Searching...
No Matches
intal3.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!|| intal3 ../engine/source/ale/inter/intal3.F
25!||--- called by ------------------------------------------------------
26!|| alewdx ../engine/source/ale/grid/alewdx.F
27!||--- calls -----------------------------------------------------
28!|| i9wale ../engine/source/interfaces/int09/i9wale.F
29!|| int12w ../engine/source/ale/inter/int12w.F
30!|| intal4 ../engine/source/ale/inter/intal4.F
31!||--- uses -----------------------------------------------------
32!|| elbufdef_mod ../common_source/modules/mat_elem/elbufdef_mod.F90
33!|| intbufdef_mod ../common_source/modules/interfaces/intbufdef_mod.F90
34!||====================================================================
35 SUBROUTINE intal3(IPARI,X ,V ,
36 2 A ,VG ,ISKEW ,SKEW ,ICODE ,
37 3 IXS ,IXQ ,ELBUF_TAB,IPARG ,
38 4 PM ,NALE ,INTBUF_TAB )
39C-----------------------------------------------
40C M o d u l e s
41C-----------------------------------------------
42 USE elbufdef_mod
43 USE intbufdef_mod
44C-----------------------------------------------
45C I m p l i c i t T y p e s
46C-----------------------------------------------
47#include "implicit_f.inc"
48C-----------------------------------------------
49C C o m m o n B l o c k s
50C-----------------------------------------------
51#include "com01_c.inc"
52#include "com04_c.inc"
53#include "param_c.inc"
54#include "task_c.inc"
55C-----------------------------------------------
56C D u m m y A r g u m e n t s
57C-----------------------------------------------
58 INTEGER IPARI(NPARI,NINTER), ICODE(*),IXS(NIXS,NUMELS),IXQ(NIXQ,NUMELQ), IPARG(NPARG,NGROUP),ISKEW(*), NALE(*)
59 my_real X(3,NUMNOD), V(3,NUMNOD), A(3,NUMNOD), VG(*), SKEW(*), PM(NPROPM,NUMMAT)
60 TYPE(ELBUF_STRUCT_), DIMENSION(NGROUP) :: ELBUF_TAB
61 TYPE(intbuf_struct_) INTBUF_TAB(*)
62C-----------------------------------------------
63C L o c a l V a r i a b l e s
64C-----------------------------------------------
65 INTEGER N, NTY, ITIED
66C-----------------------------------------------
67C S o u r c e L i n e s
68C-----------------------------------------------
69 DO n=1,ninter
70 nty = ipari(7,n)
71 IF(nty == 1)THEN
72 IF(ispmd == 0)THEN
73 CALL intal4(ipari(1,n),intbuf_tab(n),v ,vg)
74 END IF
75 ELSEIF(nty == 9) THEN
76 CALL i9wale(
77 1 ipari(1,n),intbuf_tab(n),x ,v ,
78 2 a ,vg ,icode ,iskew ,skew ,
79 3 ixs ,ixq ,elbuf_tab ,iparg ,
80 4 pm ,nale )
81 ELSEIF(nty == 12) THEN
82 IF(ispmd == 0)THEN
83 itied=nint(intbuf_tab(n)%VARIABLES(1))
84C Grid Velocities of secondary nodes are not interpolated
85C ONLY in case "TIED"
86 IF (itied == 1 .OR. itied == 2) CALL int12w(ipari(1,n),intbuf_tab(n),vg)
87 ENDIF
88 ENDIF
89 enddo!next N
90C
91 RETURN
92C
93 END
subroutine i9wale(ipari, intbuf_tab, x, v, a, vg, icode, iskew, skew, ixs, ixq, elbuf_tab, iparg, pm, nale)
Definition i9wale.F:38
subroutine int12w(ipari, intbuf_tab, vg)
Definition int12w.F:34
subroutine intal3(ipari, x, v, a, vg, iskew, skew, icode, ixs, ixq, elbuf_tab, iparg, pm, nale, intbuf_tab)
Definition intal3.F:39
subroutine intal4(ipari, intbuf_tab, v, vg)
Definition intal4.F:33