OpenRadioss 2025.1.11
OpenRadioss project
Loading...
Searching...
No Matches
hm_pre_read_rlink.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_pre_read_link ../starter/source/constraints/rigidlink/hm_pre_read_rlink.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!|| sz_r2r ../starter/source/coupling/rad2rad/routines_r2r.F
33!||--- uses -----------------------------------------------------
34!|| hm_option_read_mod ../starter/share/modules1/hm_option_read_mod.F
35!|| r2r_mod ../starter/share/modules1/r2r_mod.f
36!|| submodel_mod ../starter/share/modules1/submodel_mod.F
37!||====================================================================
38 SUBROUTINE hm_pre_read_link(NUM ,IGRNOD,LSUBMODEL)
39C-----------------------------------------------
40C M o d u l e s
41C-----------------------------------------------
42 USE r2r_mod
43 USE groupdef_mod
44 USE submodel_mod
47C-----------------------------------------------
48C I m p l i c i t T y p e s
49C-----------------------------------------------
50#include "implicit_f.inc"
51C-----------------------------------------------
52C C o m m o n B l o c k s
53C-----------------------------------------------
54#include "com04_c.inc"
55#include "r2r_c.inc"
56C-----------------------------------------------
57C D u m m y A r g u m e n t s
58C-----------------------------------------------
59 INTEGER NUM
60C-----------------------------------------------
61 TYPE (GROUP_) , DIMENSION(NGRNOD) :: IGRNOD
62 TYPE(submodel_data) LSUBMODEL(*)
63C-----------------------------------------------
64C L o c a l V a r i a b l e s
65C-----------------------------------------------
66 INTEGER I,NN,IGU,IGS,NLK
67 CHARACTER(LEN=NCHARTITLE) :: TITR
68C-----------------------------------------------
69C E x t e r n a l F u n c t i o n s
70C-----------------------------------------------
71 INTEGER NGR2USRN, NUSER
72C-----------------------------------------------
73 LOGICAL IS_AVAILABLE
74C=======================================================================
75 is_available = .false.
76C=======================================================================
77C-----------------------------------------------
78 CALL hm_option_start('/RLINK')
79 num = 0
80 nlk = 0
81C-----------------------------------------------
82 DO i=1,nlink
83 nlk=nlk+1
84C----------Multidomaines --> on ignore les rlink non tages--------
85 IF(nsubdom > 0)THEN
86 IF(taglnk(nlk) == 0)CALL sz_r2r(taglnk,nlk)
87 END IF
88C-----------------------------------------------------------------
89 CALL hm_option_read_key(lsubmodel,
90 . option_id = nuser,
91 . option_titr = titr)
92C-----------------------------------------------------------------
93 CALL hm_get_intv('dependentnodeset' ,igu ,is_available,lsubmodel)
94 igs = ngr2usrn(igu,igrnod,ngrnod,nn)
95 num = num + nn
96 ENDDO
97C-----------
98 RETURN
99 END SUBROUTINE hm_pre_read_link
subroutine hm_get_intv(name, ival, is_available, lsubmodel)
subroutine hm_option_read_key(lsubmodel, option_id, unit_id, submodel_index, submodel_id, option_titr, keyword1, keyword2, keyword3, keyword4, opt_pos)
subroutine hm_option_start(entity_type)
integer, parameter nchartitle
integer, dimension(:), allocatable taglnk
Definition r2r_mod.F:138
subroutine sz_r2r(tag, val)
program starter
Definition starter.F:39