OpenRadioss 2025.1.11
OpenRadioss project
Loading...
Searching...
No Matches
hm_preread_pload.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!|| hm_preread_pload ../starter/source/loads/general/pload/hm_preread_pload.F
25!||--- called by ------------------------------------------------------
26!|| lectur ../starter/source/starter/lectur.F
27!||--- calls -----------------------------------------------------
28!|| hm_get_intv ../starter/source/devtools/hm_reader/hm_get_intv.F
29!|| hm_option_read_key ../starter/source/devtools/hm_reader/hm_option_read_key.F
30!|| hm_option_start ../starter/source/devtools/hm_reader/hm_option_start.F
31!|| ngr2usrn ../starter/source/system/nintrr.F
32!||--- uses -----------------------------------------------------
33!|| hm_option_read_mod ../starter/share/modules1/hm_option_read_mod.F
34!|| r2r_mod ../starter/share/modules1/r2r_mod.F
35!|| submodel_mod ../starter/share/modules1/submodel_mod.F
36!||====================================================================
37 SUBROUTINE hm_preread_pload(NUMPRES,IGRNOD ,IGRSURF ,LSUBMODEL)
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
119 END SUBROUTINE hm_preread_pload
subroutine hm_get_intv(name, ival, is_available, lsubmodel)
subroutine hm_option_start(entity_type)
subroutine hm_preread_pload(numpres, igrnod, igrsurf, lsubmodel)
integer, parameter nchartitle
integer, dimension(:), allocatable nncl
Definition r2r_mod.F:131
integer, dimension(:,:), allocatable isurf_r2r
Definition r2r_mod.F:143