Cloned SEACAS for EXODUS library with extra build files for internal package management.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

97 lines
3.5 KiB

2 years ago
C Copyright(C) 1999-2020 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
C See packages/seacas/LICENSE for details
C=======================================================================
SUBROUTINE DBITIM (NDB, OPTION, EXODUS,
& NVARNP, NELBLK, NVAREL, ISEVOK,
& NSTEPS, NSTEPW, A, KTIMES, KWHOLE, *)
C=======================================================================
C --*** DBITIM *** (EXOLIB) Read database time step times
C -- Written by Amy Gilkey - revised 11/11/87
C --
C --DBITIM reads all time steps of the database, storing the time for
C --each step in dynamic memory. It also sets the number of time steps.
C --If there is a dynamic memory problem, the routine returns immediately
C --without issuing an error message. If there is a read error, a
C --warning is printed and the step with the error is ignored.
C --
C --Parameters:
C -- NDB - IN - the database number
C -- OPTION - IN - ' ' to not store, '*' to store all, else store options:
C -- 'W' to store whole times only
C -- 'H' to store history times only
C -- EXODUS - IN - true iff this is an EXODUS file
C -- NVARNP - IN - the number of nodal variables
C -- NELBLK - IN - the number of element blocks
C -- NVAREL - IN - the number of element variables
C -- ISEVOK - IN - the element block variable truth table;
C -- variable i of block j exists iff ISEVOK(j,i)
C -- NSTEPS - OUT - the number of database time steps
C -- NSTEPW - OUT - the number of whole (versus history) database time steps
C -- A - IN/OUT - the dynamic memory base array
C -- KTIMES - OUT - the dynamic memory index of TIMES (if OPTION)
C -- KWHOLE - OUT - the dynamic memory index of WHOTIM (if OPTION);
C -- WHOTIM(i) is true iff TIMES(i) is a whole (versus history) time step
C -- * - return statement if error encountered, message is printed
C --
C --Database must be positioned in front of first time step upon entry;
C --upon exit positioned at end of file.
include 'exodusII.inc'
INTEGER NDB
CHARACTER*(*) OPTION
LOGICAL EXODUS
INTEGER NVARNP, NELBLK, NVAREL
C --NOTE: ISEVOK is doubly-dimensioned array (NELBLK,NVAREL)
LOGICAL ISEVOK(*)
INTEGER NSTEPS, NSTEPW
REAL A(*)
INTEGER KTIMES
INTEGER KWHOLE
CHARACTER*8 CDUM
LOGICAL STOWHO, STOHIS
STOWHO = ((OPTION .EQ. '*') .OR. (INDEX (OPTION, 'W') .GT. 0))
STOHIS = ((OPTION .EQ. '*') .OR. (INDEX (OPTION, 'H') .GT. 0))
IF (.NOT. EXODUS) GOTO 140
call exinq(ndb, EXTIMS, nsteps, rdum, cdum, ierr)
nstepw = nsteps
C --Reserve memory for step times
if (nsteps .le. 0) then
EXODUS = .FALSE.
goto 140
end if
CALL MDRSRV ('TIMES', KTIMES, nsteps)
IF (STOWHO .AND. STOHIS) THEN
CALL MDRSRV ('WHOTIM', KWHOLE, nsteps)
END IF
CALL MDSTAT (NERR, MEM)
IF (NERR .GT. 0) GOTO 150
WRITE (*, 10000) 'Please wait while the step times are read in'
C --Set NRECST = the number of database records in a whole time step
IF (.TRUE.) THEN
C --Read step time
call exgatm(ndb, a(ktimes), ierr)
C --Store step time after time step read correctly
CALL INILOG (nsteps, .TRUE., A(KWHOLE))
END IF
140 CONTINUE
150 CONTINUE
RETURN
10000 FORMAT (/, 1X, A)
END