OpenRadioss 2025.1.11
OpenRadioss project
Loading...
Searching...
No Matches
i25maind_2.F File Reference
#include "implicit_f.inc"
#include "comlock.inc"
#include "com04_c.inc"
#include "com08_c.inc"
#include "param_c.inc"
#include "task_c.inc"

Go to the source code of this file.

Functions/Subroutines

subroutine i25maind_2 (ipari, itab, sensor_tab, intlist25, intbuf_tab, x, v, kinet, jtask, nb_dst2, icodt, iskew, nsensor)

Function/Subroutine Documentation

◆ i25maind_2()

subroutine i25maind_2 ( integer, dimension(npari,*) ipari,
integer, dimension(*) itab,
type (sensor_str_), dimension(nsensor), intent(in) sensor_tab,
integer, dimension(*) intlist25,
type(intbuf_struct_), dimension(ninter) intbuf_tab,
x,
v,
integer, dimension(*) kinet,
integer jtask,
integer, dimension(parasiz) nb_dst2,
integer, dimension(*) icodt,
integer, dimension(*) iskew,
integer, intent(in) nsensor )

Definition at line 36 of file i25maind_2.F.

40C-----------------------------------------------
41C M o d u l e s
42C-----------------------------------------------
43 USE message_mod
44 USE tri7box
45 USE intbufdef_mod
46 USE mpi_commod
47 USE sensor_mod
48C-----------------------------------------------
49C I m p l i c i t T y p e s
50C-----------------------------------------------
51#include "implicit_f.inc"
52#include "comlock.inc"
53C-----------------------------------------------
54C C o m m o n B l o c k s
55C-----------------------------------------------
56#include "com04_c.inc"
57#include "com08_c.inc"
58#include "param_c.inc"
59#include "task_c.inc"
60C-----------------------------------------------
61C D u m m y A r g u m e n t s
62C-----------------------------------------------
63 INTEGER ,INTENT(IN) :: NSENSOR
64 INTEGER IPARI(NPARI,*), ITAB(*), INTLIST25(*), JTASK,
65 . KINET(*), NB_DST2(PARASIZ), ICODT(*), ISKEW(*)
66 my_real :: x(3,*), v(3,*)
67 TYPE(INTBUF_STRUCT_),DIMENSION(NINTER) :: INTBUF_TAB
68 TYPE (SENSOR_STR_) ,DIMENSION(NSENSOR) ,INTENT(IN) :: SENSOR_TAB
69C-----------------------------------------------
70C L o c a l V a r i a b l e s
71C-----------------------------------------------
72 INTEGER NIN, NI25, ISENS, LINDMAX
74 . ts, startt, stopt
75C-----------------------------------------------
76 DO ni25=1,ninter25
77C
78 nin = intlist25(ni25)
79C
80 lindmax = intbuf_tab(nin)%I_STOK(2)
81C
82 startt=intbuf_tab(nin)%VARIABLES(3)
83 stopt =intbuf_tab(nin)%VARIABLES(11)
84 IF(startt>tt) cycle
85 IF(tt>stopt) cycle
86C
87 isens = ipari(64,nin)
88 IF (isens > 0) THEN ! Interface activated by sensor
89 ts = sensor_tab(isens)%TSTART
90 ELSE
91 ts = tt
92 ENDIF
93 IF(tt<ts) cycle
94
95 CALL i25comp_2(
96 1 ipari ,intbuf_tab(nin),x ,itab ,nin ,
97 2 lindmax ,kinet ,jtask ,nb_dst2(jtask),v ,
98 3 icodt ,iskew )
99C
100 ENDDO
101C-----------------------------------------------------------------------
102 RETURN
#define my_real
Definition cppsort.cpp:32
subroutine i25comp_2(ipari, intbuf_tab, x, itab, nin, lindmax, kinet, jtask, nb_dst2, v, icodt, iskew)
Definition i25comp_2.F:44