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.

41 lines
1.4 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 wrprop(ndbi, ndbo, flag, nump, nval, names, values,
* namlen)
C************************************************************************
C This subroutine with read properties from an input file and
C write properties to an output text file
C ndbi - IN - file id to read from
C ndbo - IN - file id to write to
C flag - IN - flag indicating what type of properties to read/write
C nump - IN - number of properties
C nval - IN - number of values
C names - IN - names of the properties
C values - IN - values of the properties
integer ndbi, ndbo, flag, nump, nval
character*(namlen) names(*)
integer values(*)
if (nump .eq. 0) return
call exgpn (ndbi, flag, names, ierr)
do 100 i = 1, nump
call exgpa (ndbi, flag, names(i), values, ierr)
write (ndbo,1000) '! Property Name: '
write (ndbo,1000) names(i)
write (ndbo,1000) '! Property Value(s): '
write (ndbo,1010) (values(j), j = 1, nval)
100 continue
1000 format (A)
1010 format (7(I10, 1X))
return
end