OpenRadioss 2025.1.11
OpenRadioss project
Loading...
Searching...
No Matches
eng_qaprint_driver.F File Reference
#include "implicit_f.inc"
#include "com01_c.inc"

Go to the source code of this file.

Functions/Subroutines

subroutine eng_qaprint_driver (irunn_bis, sensors, dt, output, iparit, glob_therm)

Function/Subroutine Documentation

◆ eng_qaprint_driver()

subroutine eng_qaprint_driver ( integer irunn_bis,
type (sensors_), intent(in) sensors,
type (dt_), intent(inout) dt,
type(output_), intent(inout) output,
integer, intent(in) iparit,
type (glob_therm_), intent(in) glob_therm )
Parameters
[in,out]outputoutput structure

Definition at line 38 of file eng_qaprint_driver.F.

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
subroutine eng_qaprint_animinput(sensors)
subroutine eng_qaprint_dtinput(dt, glob_therm)
subroutine eng_qaprint_generalcontrolsinput(irunn, output, iparit, sensors)
integer doqa
Definition qa_out_mod.F:84