OpenRadioss 2025.1.11
OpenRadioss project
Loading...
Searching...
No Matches
eng_qaprint_driver.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!|| eng_qaprint_driver ../engine/source/output/qaprint/eng_qaprint_driver.F
25!||--- called by ------------------------------------------------------
26!|| sortie_main ../engine/source/output/sortie_main.F
27!||--- calls -----------------------------------------------------
28!|| eng_qaprint_animinput ../engine/source/output/qaprint/eng_qaprint_animinput.F
29!|| eng_qaprint_dtinput ../engine/source/output/qaprint/eng_qaprint_dtinput.f
30!|| eng_qaprint_generalcontrolsinput ../engine/source/output/qaprint/eng_qaprint_generalcontrolsinput.F
31!||--- uses -----------------------------------------------------
32!|| dt_mod ../engine/source/modules/dt_mod.F
33!|| glob_therm_mod ../common_source/modules/mat_elem/glob_therm_mod.F90
34!|| output_mod ../common_source/modules/output/output_mod.F90
35!|| qa_out_mod ../common_source/qa/qa_out_mod.F
36!|| sensor_mod ../common_source/modules/sensor_mod.F90
37!||====================================================================
38 SUBROUTINE eng_qaprint_driver(IRUNN_BIS ,SENSORS,DT,OUTPUT,IPARIT,GLOB_THERM)
39C-----------------------------------------------
40C M o d u l e s
41C-----------------------------------------------
42 USE qa_out_mod
43 USE sensor_mod
44 USE dt_mod
45 USE output_mod
46 use glob_therm_mod
47C-----------------------------------------------
48C I m p l i c i t T y p e s
49C-----------------------------------------------
50#include "implicit_f.inc"
51#include "com01_c.inc"
52C-----------------------------------------------
53C D u m m y A r g u m e n t s
54C-----------------------------------------------
55 INTEGER IRUNN_BIS
56 TYPE (SENSORS_) ,INTENT(IN) :: SENSORS
57 TYPE (DT_) , INTENT(INOUT) :: DT
58 TYPE(output_), INTENT(INOUT) :: OUTPUT !< output structure
59 type (glob_therm_) ,intent(in) :: glob_therm
60 INTEGER,INTENT(IN):: IPARIT
61C=======================================================================
62
63 ! doqa is set in QA_OUT_MOD depending on DO_QA env variable setting
64 ! we skip the specific QAPRINT treatment if doqa is != 1
65 IF ( doqa /= 1 ) RETURN
66
67 IF(ncycle == 0) THEN ! ECRITURE QAPRINT AU CYCLE 0 ENGINE
68 CALL eng_qaprint_generalcontrolsinput(irunn_bis,output,iparit,sensors)
69
70 CALL eng_qaprint_dtinput(dt,glob_therm)
71
72 CALL eng_qaprint_animinput(sensors)
73 ENDIF
74C-----------------------------------------------------------------------
75 RETURN
76 END
subroutine eng_qaprint_animinput(sensors)
subroutine eng_qaprint_driver(irunn_bis, sensors, dt, output, iparit, glob_therm)
subroutine eng_qaprint_dtinput(dt, glob_therm)
subroutine eng_qaprint_generalcontrolsinput(irunn, output, iparit, sensors)
integer doqa
Definition qa_out_mod.F:84