OpenRadioss 2025.1.11
OpenRadioss project
Loading...
Searching...
No Matches
hm_preread_sphio.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_sphio ../starter/source/loads/sph/hm_preread_sphio.F
25!||--- called by ------------------------------------------------------
26!|| lectur ../starter/source/starter/lectur.F
27!||--- calls -----------------------------------------------------
28!|| fretitl ../starter/source/starter/freform.F
29!|| hm_get_intv ../starter/source/devtools/hm_reader/hm_get_intv.F
30!|| hm_option_read_key ../starter/source/devtools/hm_reader/hm_option_read_key.F
31!|| hm_option_start ../starter/source/devtools/hm_reader/hm_option_start.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_sphio(IGRSURF ,SVSPHIO,NOM_OPT, LSUBMODEL)
38C-----------------------------------------------
39C M o d u l e s
40C-----------------------------------------------
41 USE r2r_mod
42 USE groupdef_mod
44 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 "sphcom.inc"
55#include "scr17_c.inc"
56#include "r2r_c.inc"
57C-----------------------------------------------
58C D u m m y A r g u m e n t s
59C-----------------------------------------------
60 INTEGER SVSPHIO
61 INTEGER NOM_OPT(LNOPT1,*)
62 TYPE (SURF_), DIMENSION(NSURF) :: IGRSURF
63 TYPE(submodel_data) LSUBMODEL(*)
64C-----------------------------------------------
65C L o c a l V a r i a b l e s
66C-----------------------------------------------
67 INTEGER I,J,N,ID,IDS,NSEG,ITYPE,IDPRT,IDSURF,SKIP,IN1,IN2,IN3,LVAD
68 my_real dist,fcut
69 CHARACTER(LEN=NCHARTITLE) :: TITR
70 LOGICAL IS_AVAILABLE
71C=======================================================================
72 svsphio = 0
73 is_available = .false.
74C
75 ! Start reading the option
76 CALL hm_option_start('/SPH/INOUT')
77C
78 ! Loop over /SPH/INOUT
79 i = 0
80 DO n = 1,nsphio
81 skip = 0
82CC----------Multidomaines --> on ignore les inlets non tages------------
83 IF (nsubdom > 0) THEN
84 IF(tagsphio(n) == 0) skip = 1
85 ENDIF
86C----------------------------------------------------------------------
87 IF (skip == 0) THEN
88 i = i+1
89C
90 ! Title and ID
91 titr = ''
92 CALL hm_option_read_key(lsubmodel,
93 . option_id = id,
94 . option_titr = titr)
95 nom_opt(1,i)=id
96 CALL fretitl(titr,nom_opt(lnopt1-ltitr+1,i),ltitr)
97C
98 ! Reading type dans surface ID
99 CALL hm_get_intv('Itype' ,itype ,is_available,lsubmodel)
100 CALL hm_get_intv('SURF_ID' ,idsurf ,is_available,lsubmodel)
101C
102 IF ((idsurf > 0).AND.(itype == 1)) THEN
103 ids=0
104 DO j=1,nsurf
105 IF(igrsurf(j)%ID == idsurf) THEN
106 ids=j
107 EXIT
108 ENDIF
109 ENDDO
110 nseg = igrsurf(ids)%NSEG
111 lvad = 4 + 2*nseg
112 ELSE
113 lvad = 22
114 ENDIF
115 svsphio = svsphio + lvad
116 ENDIF
117 ENDDO
118C-------------------------------------
119C
120 RETURN
121 END
#define my_real
Definition cppsort.cpp:32
subroutine hm_get_intv(name, ival, is_available, lsubmodel)
subroutine hm_option_start(entity_type)
subroutine hm_preread_sphio(igrsurf, svsphio, nom_opt, lsubmodel)
integer, parameter nchartitle
integer, dimension(:), allocatable tagsphio
Definition r2r_mod.F:139
subroutine fretitl(titr, iasc, l)
Definition freform.F:620
program starter
Definition starter.F:39