OpenRadioss 2025.1.11
OpenRadioss project
Loading...
Searching...
No Matches
i14wfs.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!|| i14wfs ../engine/source/interfaces/int14/i14wfs.F
25!||--- called by ------------------------------------------------------
26!|| resol ../engine/source/engine/resol.F
27!||--- uses -----------------------------------------------------
28!|| groupdef_mod ../common_source/modules/groupdef_mod.F
29!|| intbufdef_mod ../common_source/modules/interfaces/intbufdef_mod.F90
30!|| output_mod ../common_source/modules/output/output_mod.F90
31!||====================================================================
32 SUBROUTINE i14wfs(OUTPUT,IPARI,INTBUF_TAB,IGRSURF,FSAV)
33C-----------------------------------------------
34C M o d u l e s
35C-----------------------------------------------
36 USE output_mod, ONLY : output_
37 USE intbufdef_mod
38 USE groupdef_mod
39C-----------------------------------------------
40C I m p l i c i t T y p e s
41C-----------------------------------------------
42#include "implicit_f.inc"
43C-----------------------------------------------
44C C o m m o n B l o c k s
45C-----------------------------------------------
46#include "com04_c.inc"
47#include "com06_c.inc"
48#include "com08_c.inc"
49#include "param_c.inc"
50C-----------------------------------------------------------------
51C D u m m y A r g u m e n t s
52C-----------------------------------------------
53 TYPE(output_), INTENT(INOUT) :: OUTPUT
54 INTEGER IPARI(NPARI,*)
55C REAL
57 . fsav(nthvki,*)
58 TYPE(intbuf_struct_) INTBUF_TAB(*)
59 TYPE (SURF_) , DIMENSION(NSURF) :: IGRSURF
60C-----------------------------------------------
61C L o c a l V a r i a b l e s
62C-----------------------------------------------
63 INTEGER NTY, N, NRTM, KSURF, NRTS
64C-----------------------------------------------
65C REAL
67 . de
68C-----------------------------------------------
69 DO 100 n=1,ninter
70 nty=ipari(7,n)
71 IF (nty/=14.AND.nty/=15) GOTO 100
72C Interface Stifnesses at nodes ...
73C J11+8 : Sauve DE pour calcul Travail des Forces Secnds.
74 de=intbuf_tab(n)%VARIABLES(9)
75 fsav(7,n)=fsav(7,n)+de*dt2*half
76C
77 nrtm=ipari(4,n)
78C Warning : DE doit etre stocke Surface / Surface, dans l'Interface
79C actuellement, NRTM == 1.
80 ksurf=intbuf_tab(n)%KSURF(1)
81 IF (igrsurf(ksurf)%TYPE==100) THEN
82C Travail des interfaces avec Madymo.
83 output%TH%WFEXT=output%TH%WFEXT+de*dt2*half
84 ENDIF
85C-----------------------------------------------
86 100 CONTINUE
87 RETURN
88 END
#define my_real
Definition cppsort.cpp:32
subroutine i14wfs(output, ipari, intbuf_tab, igrsurf, fsav)
Definition i14wfs.F:33