OpenRadioss 2025.1.11
OpenRadioss project
Loading...
Searching...
No Matches
st_qaprint_userwi.F File Reference
#include "implicit_f.inc"
#include "com01_c.inc"
#include "param_c.inc"
#include "scr10_c.inc"
#include "units_c.inc"
#include "scry_c.inc"

Go to the source code of this file.

Functions/Subroutines

subroutine st_qaprint_userwi (user_windows)

Function/Subroutine Documentation

◆ st_qaprint_userwi()

subroutine st_qaprint_userwi ( type(user_windows_), intent(in) user_windows)

Definition at line 30 of file st_qaprint_userwi.F.

31C-----------------------------------------------
32C M o d u l e s
33C-----------------------------------------------
34 USE qa_out_mod
36C-----------------------------------------------
37C I m p l i c i t T y p e s
38C-----------------------------------------------
39#include "implicit_f.inc"
40C-----------------------------------------------
41C C o m m o n B l o c k s
42C-----------------------------------------------
43#include "com01_c.inc"
44#include "param_c.inc"
45#include "scr10_c.inc"
46#include "units_c.inc"
47#include "scry_c.inc"
48C-----------------------------------------------
49C D u m m y A r g u m e n t s
50C-----------------------------------------------
51 TYPE(USER_WINDOWS_),INTENT(IN) :: USER_WINDOWS
52C--------------------------------------------------
53C L o c a l V a r i a b l e s
54C-----------------------------------------------
55 LOGICAL :: OK_QA
56 CHARACTER (LEN=255) :: VARNAME
57 INTEGER I,J,ELEM_ID
58 DOUBLE PRECISION TEMP_DOUBLE
59C-----------------------------------------------
60C S o u r c e L i n e s
61C-----------------------------------------------
62
63
64C------------------------------------
65C /USERWI
66C------------------------------------
67
68 ok_qa = myqakey('/USERWI')
69
70 IF (ok_qa) THEN
71
72 DO i=1,user_windows%S_IUSER
73
74 WRITE(varname,'(A6,I1,A)') 'IUVAR(',i,')_'
75 CALL qaprint(varname(1:len_trim(varname)),user_windows%IUSER(i),0.0_8)
76
77 ENDDO ! DO I=1,USER_WINDOWS%S_IUSER
78
79 DO i=1,user_windows%S_USER
80 temp_double = user_windows%USER(i)
81 WRITE(varname,'(A5,I1,A)') 'UVAR(',i,')_'
82 CALL qaprint(varname(1:len_trim(varname)),0,temp_double)
83 ENDDO ! DO I=1,USER_WINDOWS%S_USER
84
85 DO i=1,user_windows%N_USERNODS
86 WRITE(varname,'(A6,I1,A)') 'USERNODS(',i,')_'
87 CALL qaprint(varname(1:len_trim(varname)),user_windows%USERNODS(i),0.0_8)
88 ENDDO ! DO I=1,USER_WINDOWS%S_IUSER
89
90 ENDIF ! IF (OK_QA) THEN
91
92C------------------------------------
93 RETURN
logical function myqakey(value)
@purpose Check if a given value is part of the values set by env variable Useful to make a condition ...
Definition qa_out_mod.F:694
subroutine qaprint(name, idin, value)
@purpose print one entry to QA extract file example of call for real print CALL QAPRINT('MY_LABEL',...
Definition qa_out_mod.F:390