OpenRadioss 2025.1.11
OpenRadioss project
Loading...
Searching...
No Matches
st_qaprint_refsta.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_refsta ../starter/source/output/qaprint/st_qaprint_refsta.F
25!||--- called by ------------------------------------------------------
26!|| st_qaprint_driver ../starter/source/output/qaprint/st_qaprint_driver.F
27!||--- calls -----------------------------------------------------
28!||--- uses -----------------------------------------------------
29!|| refsta_mod ../starter/share/modules1/refsta_mod.F
30!||====================================================================
31 SUBROUTINE st_qaprint_refsta(XREFC ,XREFTG ,XREFS ,TAGXREF, IXS ,IXC ,IXTG ,ITAB, XYZREF )
32C-----------------------------------------------
33C M o d u l e s
34C-----------------------------------------------
35 USE qa_out_mod
36 !USE GROUPDEF_MOD
37 USE refsta_mod
38 use element_mod , only : nixs,nixc,nixtg
39C-----------------------------------------------
40C I m p l i c i t T y p e s
41C-----------------------------------------------
42#include "implicit_f.inc"
43C-----------------------------------------------
44C C o m m o n B l o c k s
45C-----------------------------------------------
46#include "scr03_c.inc"
47#include "scr17_c.inc"
48#include "com04_c.inc"
49C-----------------------------------------------
50C D u m m y A r g u m e n t s
51C-----------------------------------------------
52 INTEGER, INTENT(IN) :: TAGXREF(NUMNOD),IXC(NIXC,*),IXTG(NIXTG,*),IXS(NIXS,*)
53 my_real, INTENT(IN) :: xrefc(4,3,numelc),xreftg(3,3,numeltg),xrefs(8,3,numels8),xyzref(3,numnod)
54 INTEGER,INTENT(IN), DIMENSION(NUMNOD) :: ITAB
55
56C--------------------------------------------------
57C L o c a l V a r i a b l e s
58C-----------------------------------------------
59 LOGICAL :: OK_QA
60 CHARACTER (LEN=255) :: VARNAME
61
62C-----------------------------------------------
63C S o u r c e L i n e s
64C-----------------------------------------------
65 IF(.NOT. is_refsta)RETURN
66
67 ok_qa = myqakey('/REFSTA')
68
69 IF (ok_qa) THEN
70
71 WRITE(varname,'(A)') 'REFSTA%NITRS ='
72 CALL qaprint(varname(1:len_trim(varname)),nitrs,0.0_8)
73
74 WRITE(varname,'(A)') 'REFSTA%RS0_FMT ='
75 CALL qaprint(varname(1:len_trim(varname)),rs0_fmt,0.0_8)
76
77 WRITE(varname,'(A,A)') 'REFSTA%XRFILE =',refsta_filename(1:len_trim(refsta_filename))
78 CALL qaprint(varname(1:len_trim(varname)),0,0.0_8)
79
80 !WRITE(VARNAME,'(A,I0,A,I0,A)') 'USER_INIVOL(',KK ,')%CONTY(',JJ,')%RATIO_FILL ='
81 !CALL QAPRINT(VARNAME(1:LEN_TRIM(VARNAME)),0,VFRAC)
82
83 ENDIF
84C-----------------------------------------------
85 RETURN
86 END
87
#define my_real
Definition cppsort.cpp:32
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
logical is_refsta
Definition refsta_mod.F:37
integer rs0_fmt
Definition refsta_mod.F:38
character(len=ncharline) refsta_filename
Definition refsta_mod.F:36
subroutine st_qaprint_refsta(xrefc, xreftg, xrefs, tagxref, ixs, ixc, ixtg, itab, xyzref)