Skip to content

Commit

Permalink
EXPLORE: Add/Refactor qa, qainfo and info list commands
Browse files Browse the repository at this point in the history
  • Loading branch information
gdsjaar committed Apr 18, 2024
1 parent ba085f9 commit 39535e9
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 5 deletions.
14 changes: 11 additions & 3 deletions packages/seacas/applications/explore/exp_comand.f
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
C Copyright(C) 1999-2020, 2023 National Technology & Engineering Solutions
C Copyright(C) 1999-2020, 2023, 2024 National Technology & Engineering Solutions
C of Sandia, LLC (NTESS). Under the terms of Contract DE-NA0003525 with
C NTESS, the U.S. Government retains certain rights in this software.
C
Expand Down Expand Up @@ -149,7 +149,7 @@ SUBROUTINE COMAND (A, IA, EXODUS, DBNAME, QAREC, INFO,
CHARACTER*80 DUMLIN
character*2048 OUTPUT, LCOUTPUT

CHARACTER*(MXSTLN) CMDTBL(15), SELTBL(15), LISTBL(38)
CHARACTER*(MXSTLN) CMDTBL(15), SELTBL(15), LISTBL(41)
SAVE CMDTBL, SELTBL, LISTBL, KINVC, KINVS
C --CMDTBL - the valid commands table
C --SELTBL - the valid SELECT options table
Expand All @@ -170,7 +170,7 @@ SUBROUTINE COMAND (A, IA, EXODUS, DBNAME, QAREC, INFO,
4 'GVARS ', 'NVARS ', 'EVARS ', 'NSVARS ', 'SSVARS ',
5 ' ' /
DATA LISTBL /
1 'TITLE ', 'VARS ',
1 'TITLE ', 'VARS ', 'QAINFO ', 'QA', 'INFORMATION',
2 'COORDINA', 'MAP ', 'NMAP ', 'NODEMAP ',
3 'BLOCKS ', 'MATERIAL', 'LINK ', 'CONNECTI', 'ATTRIBUT',
4 'NSETS ', 'NNODES ', 'NFACTORS', 'INVCON ',
Expand Down Expand Up @@ -791,8 +791,16 @@ SUBROUTINE COMAND (A, IA, EXODUS, DBNAME, QAREC, INFO,

ELSE IF (LISTYP .EQ. 'QA') THEN

CALL PRQA ('Q', NOUT, NQAREC, QAREC, NINFO, INFO)

ELSE IF (LISTYP .EQ. 'QAINFO') THEN

CALL PRQA ('*', NOUT, NQAREC, QAREC, NINFO, INFO)

ELSE IF (LISTYP .EQ. 'INFORMATION') THEN

CALL PRQA ('I', NOUT, NQAREC, QAREC, NINFO, INFO)

C *** EXODUS Print Commands ***

ELSE IF (LISTYP .EQ. 'NAMES') THEN
Expand Down
4 changes: 2 additions & 2 deletions packages/seacas/applications/explore/exp_qainfo.blk
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ C See packages/seacas/LICENSE for details
QAINFO(2) = ' '
QAINFO(3) = ' '

QAINFO(2)(:8) = '20240304'
QAINFO(3)(:8) = ' 4.01'
QAINFO(2)(:8) = '20240418'
QAINFO(3)(:8) = ' 4.02'

c..Dynamic dimensioning of block names+other changes
c..compress output of distribution factors
Expand Down

0 comments on commit 39535e9

Please sign in to comment.