OpenRadioss 2025.1.11
OpenRadioss project
Loading...
Searching...
No Matches
st_qaprint_madymo.F File Reference
#include "implicit_f.inc"
#include "com04_c.inc"
#include "scr17_c.inc"

Go to the source code of this file.

Functions/Subroutines

subroutine st_qaprint_madymo (iexmad, itab, ipart, ixs, ixc, ixtg)

Function/Subroutine Documentation

◆ st_qaprint_madymo()

subroutine st_qaprint_madymo ( integer, dimension(*), intent(in) iexmad,
integer, dimension(*), intent(in) itab,
integer, dimension(lipart1,*), intent(in) ipart,
integer, dimension(nixs,*), intent(in) ixs,
integer, dimension(nixc,*), intent(in) ixc,
integer, dimension(nixtg,*), intent(in) ixtg )

Definition at line 30 of file st_qaprint_madymo.F.

31C-----------------------------------------------
32C M o d u l e s
33C-----------------------------------------------
34 USE qa_out_mod
35 USE groupdef_mod
36 use element_mod , only : nixs,nixc,nixtg
37C-----------------------------------------------
38C I m p l i c i t T y p e s
39C-----------------------------------------------
40#include "implicit_f.inc"
41C-----------------------------------------------
42C C o m m o n B l o c k s
43C-----------------------------------------------
44#include "com04_c.inc"
45#include "scr17_c.inc"
46C-----------------------------------------------
47C D u m m y A r g u m e n t s
48C-----------------------------------------------
49 INTEGER, INTENT(IN) :: IEXMAD(*)
50 INTEGER, INTENT(IN) :: ITAB(*)
51 INTEGER, INTENT(IN) :: IPART(LIPART1,*)
52 INTEGER, INTENT(IN) :: IXS(NIXS,*)
53 INTEGER, INTENT(IN) :: IXC(NIXC,*)
54 INTEGER, INTENT(IN) :: IXTG(NIXTG,*)
55C--------------------------------------------------
56C L o c a l V a r i a b l e s
57C-----------------------------------------------
58 LOGICAL :: OK_QA
59 CHARACTER (LEN=255) :: VARNAME
60 INTEGER I
61C-----------------------------------------------
62C S o u r c e L i n e s
63C-----------------------------------------------
64 IF (myqakey('/MADYMO') ) THEN
65 DO i=1,nmadprt
66 WRITE(varname,'(A,I0)') 'MADYMO_PART_',i
67 CALL qaprint(varname(1:len_trim(varname)),ipart(4,iexmad(i)),0.0_8)
68 ENDDO
69C
70 DO i=nmadprt+1,nmadprt+nmadsh4
71 WRITE(varname,'(A,I0)') 'MADYMO_SH4_',i
72 CALL qaprint(varname(1:len_trim(varname)),ixc(nixc,iexmad(i)),0.0_8)
73 ENDDO
74C
75 DO i=nmadprt+nmadsh4+1,nmadprt+nmadsh4+nmadsh3
76 WRITE(varname,'(A,I0)') 'MADYMO_SH3_',i
77 CALL qaprint(varname(1:len_trim(varname)),ixtg(nixtg,iexmad(i)),0.0_8)
78 ENDDO
79C
80 DO i=nmadprt+nmadsh4+nmadsh3+1,nmadprt+nmadsh4+nmadsh3+nmadsol
81 WRITE(varname,'(A,I0)') 'MADYMO_SOL_',i
82 CALL qaprint(varname(1:len_trim(varname)),ixs(nixs,iexmad(i)),0.0_8)
83 ENDDO
84C
85 DO i=nmadprt+nmadsh4+nmadsh3+nmadsol+1,nmadprt+nmadsh4+nmadsh3+nmadsol+nmadnod
86 WRITE(varname,'(A,I0)') 'MADYMO_NOD_',i
87 CALL qaprint(varname(1:len_trim(varname)),itab(iexmad(i)),0.0_8)
88 ENDDO
89 ENDIF
90C-----------------------------------------------
91 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