OpenRadioss 2025.1.11
OpenRadioss project
Loading...
Searching...
No Matches
st_qaprint_madymo.F
Go to the documentation of this file.
1Copyright> OpenRadioss
2Copyright> Copyright (C) 1986-2025 Altair Engineering Inc.
3Copyright>
4Copyright> This program is free software: you can redistribute it and/or modify
5Copyright> it under the terms of the GNU Affero General Public License as published by
6Copyright> the Free Software Foundation, either version 3 of the License, or
7Copyright> (at your option) any later version.
8Copyright>
9Copyright> This program is distributed in the hope that it will be useful,
10Copyright> but WITHOUT ANY WARRANTY; without even the implied warranty of
11Copyright> MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12Copyright> GNU Affero General Public License for more details.
13Copyright>
14Copyright> You should have received a copy of the GNU Affero General Public License
15Copyright> along with this program. If not, see <https://www.gnu.org/licenses/>.
16Copyright>
17Copyright>
18Copyright> Commercial Alternative: Altair Radioss Software
19Copyright>
20Copyright> As an alternative to this open-source version, Altair also offers Altair Radioss
21Copyright> software under a commercial license. Contact Altair to discuss further if the
22Copyright> commercial version may interest you: https://www.altair.com/radioss/.
23!||====================================================================
24!|| st_qaprint_madymo ../starter/source/output/qaprint/st_qaprint_madymo.F
25!||--- called by ------------------------------------------------------
26!|| st_qaprint_driver ../starter/source/output/qaprint/st_qaprint_driver.F
27!||--- calls -----------------------------------------------------
28!||--- uses -----------------------------------------------------
29!||====================================================================
30 SUBROUTINE st_qaprint_madymo(IEXMAD,ITAB,IPART,IXS,IXC,IXTG)
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
91 END
92
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
subroutine st_qaprint_madymo(iexmad, itab, ipart, ixs, ixc, ixtg)