OpenRadioss 2025.1.11
OpenRadioss project
Loading...
Searching...
No Matches
lecinp.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!|| lecinp ../engine/source/input/lecinp.F
25!||--- called by ------------------------------------------------------
26!|| radioss2 ../engine/source/engine/radioss2.F
27!||--- calls -----------------------------------------------------
28!|| freform ../engine/source/input/freform.F
29!||--- uses -----------------------------------------------------
30!|| dt_mod ../engine/source/modules/dt_mod.F
31!|| glob_therm_mod ../common_source/modules/mat_elem/glob_therm_mod.F90
32!|| h3d_mod ../engine/share/modules/h3d_mod.F
33!|| output_mod ../common_source/modules/output/output_mod.F90
34!|| sensor_mod ../common_source/modules/sensor_mod.F90
35!|| state_mod ../common_source/modules/state_mod.F
36!||====================================================================
37 SUBROUTINE lecinp(IRUN,IRFL,IRFE,H3D_DATA,FLAG_CST_AMS,DYNAIN_DATA,
38 . SENSORS ,DT, OUTPUT ,GLOB_THERM)
39C-----------------------------------------------
40C M o d u l e s
41C-----------------------------------------------
42 USE h3d_mod
43 USE state_mod
44 USE sensor_mod
45 USE dt_mod
46 USE output_mod
47 use glob_therm_mod
48C-----------------------------------------------
49C I m p l i c i t T y p e s
50C-----------------------------------------------
51#include "implicit_f.inc"
52C-----------------------------------------------
53C D u m m y A r g u m e n t s
54C-----------------------------------------------
55 INTEGER IRUN, IRFL, IRFE,FLAG_CST_AMS
56 TYPE(h3d_database), INTENT(INOUT) :: H3D_DATA
57 TYPE(dynain_database), INTENT(INOUT) :: DYNAIN_DATA
58 TYPE(sensors_), INTENT(INOUT) :: SENSORS
59 TYPE (DT_), INTENT(INOUT) :: DT
60 TYPE(output_), INTENT(INOUT) :: OUTPUT !< output structure
61 type (glob_therm_) ,intent(inout) :: glob_therm
62
63C-----------------------------------------------
64C C o m m o n B l o c k s
65C-----------------------------------------------
66#include "units_c.inc"
67#include "scr02_c.inc"
68#include "scr07_c.inc"
69#include "scr18_c.inc"
70#include "scrnoi_c.inc"
71#include "scrcut_c.inc"
72C-----------------------------------------------
73C L o c a l V a r i a b l e s
74C-----------------------------------------------
75 INTEGER I
76C-----------------------------------------------
77C S o u r c e L i n e s
78C-----------------------------------------------
79 nnoise=0
80 ncuts=0
81C
82 DO i=1,52
83 dtfac1(i) = zero
84 dtmin1(i) = zero
85 idtmin(i) = 0
86 ENDDO
87 nodadt = 0
88C
89 ifreef=1
90 CALL freform(irun,irfl,irfe,h3d_data,flag_cst_ams,dynain_data,
91 . sensors,dt,output,glob_therm)
92C
93 rewind iin
94C
95 RETURN
96 END
subroutine freform(irunn, irfl, irfe, h3d_data, flag_cst_ams, dynain_data, sensors, dt, output, glob_therm)
Definition freform.F:88
subroutine lecinp(irun, irfl, irfe, h3d_data, flag_cst_ams, dynain_data, sensors, dt, output, glob_therm)
Definition lecinp.F:39