OpenRadioss 2025.1.11
OpenRadioss project
Loading...
Searching...
No Matches
hm_preread_cload.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_cload ../starter/source/loads/general/cload/hm_preread_cload.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_cload(NUMCLD ,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 NUMCLD
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 FLAG_FMT,FLAG_FMT_TMP,IFIX_TMP
68 CHARACTER(LEN=NCHARTITLE) :: TITR
69 LOGICAL IS_AVAILABLE
70C-----------------------------------------------
71C E x t e r n a l F u n c t i o n s
72C-----------------------------------------------
73 INTEGER NGR2USRN
74C=======================================================================
75 is_available = .false.
76C Cloads
77 numcld = 0
78C--------------------------------------------------
79C START BROWSING MODEL CLOAD
80C--------------------------------------------------
81 CALL hm_option_start('/CLOAD')
82C--------------------------------------------------
83C BROWSING MODEL CLOAD 1->NCONLD
84C--------------------------------------------------
85 DO i=1,nconld
86 titr = ''
87C--------------------------------------------------
88C EXTRACT DATAS OF /CLOAD/... LINE
89C--------------------------------------------------
90 CALL hm_option_read_key(lsubmodel,
91 . option_id = id,
92 . option_titr = titr)
93C--------------------------------------------------
94C EXTRACT DATAS (INTEGER VALUES)
95C--------------------------------------------------
96 CALL hm_get_intv ('entityid',igu,is_available,lsubmodel)
97C--------------------------------------------------
98 igs = ngr2usrn(igu,igrnod,ngrnod,nn)
99C-----------Multidomaines -> on decompte les noeuds communs, on ne les compte qu'une foi---
100 IF (nsubdom>0) THEN
101 IF (iddom>0) nn = nn-igrnod(igs)%R2R_SHARE
102 nncl(i)=nn
103 ENDIF
104C-----------
105 numcld = numcld + nn
106C--------------------------------------------------
107 ENDDO
108C---
109 RETURN
110 END SUBROUTINE hm_preread_cload
subroutine hm_get_intv(name, ival, is_available, lsubmodel)
subroutine hm_option_start(entity_type)
subroutine hm_preread_cload(numcld, igrnod, igrsurf, lsubmodel)
integer, parameter nchartitle
integer, dimension(:), allocatable nncl
Definition r2r_mod.F:131
integer function ngr2usrn(iu, igrnod, ngrnod, num)
Definition nintrr.F:407
program starter
Definition starter.F:39