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