OpenRadioss 2025.1.11
OpenRadioss project
Loading...
Searching...
No Matches
hm_preread_pload.F File Reference
#include "implicit_f.inc"
#include "com04_c.inc"
#include "r2r_c.inc"

Go to the source code of this file.

Functions/Subroutines

subroutine hm_preread_pload (numpres, igrnod, igrsurf, lsubmodel)

Function/Subroutine Documentation

◆ hm_preread_pload()

subroutine hm_preread_pload ( integer numpres,
type (group_), dimension(ngrnod) igrnod,
type (surf_), dimension(nsurf) igrsurf,
type(submodel_data), dimension(*), intent(in) lsubmodel )

Definition at line 37 of file hm_preread_pload.F.

38C-----------------------------------------------
39C M o d u l e s
40C-----------------------------------------------
41 USE r2r_mod
42 USE groupdef_mod
43 USE submodel_mod
46C-----------------------------------------------
47C I m p l i c i t T y p e s
48C-----------------------------------------------
49#include "implicit_f.inc"
50C-----------------------------------------------
51C C o m m o n B l o c k s
52C-----------------------------------------------
53#include "com04_c.inc"
54#include "r2r_c.inc"
55C-----------------------------------------------
56C D u m m y A r g u m e n t s
57C-----------------------------------------------
58 INTEGER NUMPRES
59C-----------------------------------------------
60 TYPE (GROUP_) ,DIMENSION(NGRNOD) :: IGRNOD
61 TYPE (surf_) ,DIMENSION(NSURF) :: igrsurf
62 TYPE(SUBMODEL_DATA),INTENT(IN)::LSUBMODEL(*)
63C-----------------------------------------------
64C L o c a l V a r i a b l e s
65C-----------------------------------------------
66 INTEGER I,J,NLD,IGU,IGS,ISU,ISS,NN,ID,UID
67 INTEGER IFIX_TMP
68 CHARACTER(LEN=NCHARTITLE)::TITR
69C-----------------------------------------------
70C E x t e r n a l F u n c t i o n s
71C-----------------------------------------------
72 INTEGER NGR2USRN
73 LOGICAL IS_AVAILABLE
74C=======================================================================
75C Pressions PLOAD
76C-------------------------
77 is_available = .false.
78 nld = numpres
79 numpres = 0
80C--------------------------------------------------
81C START BROWSING MODEL /PLOAD
82C--------------------------------------------------
83 CALL hm_option_start('/PLOAD')
84C--------------------------------------------------
85C BROWSING MODEL Surface 1->NLD
86C--------------------------------------------------
87 DO i=1,nld
88 nn = 0
89C--------------------------------------------------
90C EXTRACT DATAS OF SURF
91C--------------------------------------------------
92 CALL hm_option_read_key(lsubmodel,
93 . option_id = id,
94 . option_titr = titr)
95C--------------------------------------------------
96C EXTRACT DATAS (INTEGER VALUES)
97C--------------------------------------------------
98 CALL hm_get_intv ('entityid',isu,is_available,lsubmodel)
99C--------------------------------------------------
100 IF (isu > 0) THEN
101 DO j=1,nsurf
102 IF (isu == igrsurf(j)%ID) THEN
103 iss = j
104 nn = igrsurf(iss)%NSEG
105 EXIT
106 ENDIF
107 ENDDO
108 ENDIF
109C-----------Multidomaines -> on decompte les seg communs, on ne les compte qu'une foi---
110 IF (nsubdom>0) THEN
111 IF (iddom>0) nn = nn-isurf_r2r(1,iss)
112 nncl(nconld+i)=nn
113 ENDIF
114C-----------
115 numpres = numpres + nn
116 ENDDO
117C---
118 RETURN
subroutine hm_get_intv(name, ival, is_available, lsubmodel)
subroutine hm_option_start(entity_type)
integer, parameter nchartitle
integer, dimension(:), allocatable nncl
Definition r2r_mod.F:131
integer, dimension(:,:), allocatable isurf_r2r
Definition r2r_mod.F:143