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

Go to the source code of this file.

Functions/Subroutines

subroutine st_qaprint_internal_groups (iparg)

Function/Subroutine Documentation

◆ st_qaprint_internal_groups()

subroutine st_qaprint_internal_groups ( integer, dimension(nparg,ngroup), intent(in) iparg)

Definition at line 31 of file st_qaprint_internal_groups.F.

32C-----------------------------------------------
33C M o d u l e s
34C-----------------------------------------------
35 USE qa_out_mod
36 USE groupdef_mod
38C-----------------------------------------------
39C I m p l i c i t T y p e s
40C-----------------------------------------------
41#include "implicit_f.inc"
42C-----------------------------------------------
43C C o m m o n B l o c k s
44C-----------------------------------------------
45#include "com01_c.inc"
46#include "param_c.inc"
47C-----------------------------------------------
48C D u m m y A r g u m e n t s
49C-----------------------------------------------
50 INTEGER,INTENT(IN) :: IPARG(NPARG,NGROUP)
51C--------------------------------------------------
52C L o c a l V a r i a b l e s
53C-----------------------------------------------
54 LOGICAL :: OK_QA
55 CHARACTER (LEN=255) :: VARNAME
56 INTEGER JJ,IVAL,NG
57 DOUBLE PRECISION TEMP_DOUBLE
58C-----------------------------------------------
59C S o u r c e L i n e s
60C-----------------------------------------------
61 ok_qa = myqakey('IPARG')
62
63 IF (ok_qa) THEN
64
65 DO ng=1,ngroup
66 DO jj=1,nparg
67 ival=iparg(jj,ng)
68 IF(ival/=0)THEN
69 varname=''
70 WRITE(varname,'(A,I0,A,I0,A)') 'IPARG(NG=',ng ,',',jj,')='
71 CALL qaprint(varname(1:len_trim(varname)),ival,0.0_8)
72 ENDIF
73 enddo!next JJ
74 enddo!next NG
75
76 ENDIF
77C-----------------------------------------------
78 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