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

Go to the source code of this file.

Functions/Subroutines

subroutine chkstifn (ipari, ms, intbuf_tab)
subroutine chkslv (nsn, nsv, stifn, ms)

Function/Subroutine Documentation

◆ chkslv()

subroutine chkslv ( integer nsn,
integer, dimension(*) nsv,
stifn,
ms )

Definition at line 88 of file chkstifn.F.

89C-----------------------------------------------
90C I m p l i c i t T y p e s
91C-----------------------------------------------
92#include "implicit_f.inc"
93C-----------------------------------------------
94C D u m m y A r g u m e n t s
95C-----------------------------------------------
96 INTEGER NSN, NSV(*)
97C REAL
99 . stifn(*), ms(*)
100C-----------------------------------------------
101C L o c a l V a r i a b l e s
102C-----------------------------------------------
103 INTEGER I
104C REAL
105C-----------------------------------------------
106 DO i = 1, nsn
107C si somme masse nulle sur noeuds secnds alors stifn = -1
108 IF (ms(nsv(i))==zero) THEN
109 stifn(i) = -one
110 ENDIF
111 ENDDO
112 RETURN
#define my_real
Definition cppsort.cpp:32

◆ chkstifn()

subroutine chkstifn ( integer, dimension(npari,*) ipari,
ms,
type(intbuf_struct_), dimension(*) intbuf_tab )

Definition at line 32 of file chkstifn.F.

33C-----------------------------------------------
34C M o d u l e s
35C-----------------------------------------------
36 USE intbufdef_mod
37C-----------------------------------------------
38C I m p l i c i t T y p e s
39C-----------------------------------------------
40#include "implicit_f.inc"
41C-----------------------------------------------
42C C o m m o n B l o c k s
43C-----------------------------------------------
44#include "com04_c.inc"
45#include "task_c.inc"
46#include "param_c.inc"
47C-----------------------------------------------
48C D u m m y A r g u m e n t s
49C-----------------------------------------------
50 INTEGER IPARI(NPARI,*)
51C REAL
52 my_real
53 . ms(*)
54
55 TYPE(INTBUF_STRUCT_) INTBUF_TAB(*)
56C-----------------------------------------------
57C L o c a l V a r i a b l e s
58C-----------------------------------------------
59 INTEGER N, NMN, NSN,
60 . NRTS, NRTM, NTY
61C-----------------------------------------------
62C
63 DO n=1,ninter
64 nty =ipari(7,n)
65 IF(nty==5) THEN
66C interface type 5 non // en spmd
67 IF(ispmd==0) THEN
68 nrts = ipari(3,n)
69 nrtm = ipari(4,n)
70 nsn = ipari(5,n)
71 nmn = ipari(6,n)
72 CALL chkslv(nsn,intbuf_tab(n)%NSV,intbuf_tab(n)%STFNS,ms)
73 ENDIF
74 ELSE
75C autres types d'interfaces
76 ENDIF
77 ENDDO
78C
79 RETURN
subroutine chkslv(nsn, nsv, stifn, ms)
Definition chkstifn.F:89