Skip to content

Commit

Permalink
fixed log output encountered in ctsm
Browse files Browse the repository at this point in the history
  • Loading branch information
Mariana Vertenstein committed Jun 22, 2021
1 parent b977da1 commit 4179ba4
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions streams/dshr_strdata_mod.F90
Original file line number Diff line number Diff line change
Expand Up @@ -1155,19 +1155,16 @@ subroutine shr_strdata_print(sdat, name)
write(sdat%logunit,F01) "pio_iotype = ",sdat%io_type

write(sdat%logunit,F01) "nstreams = ",shr_strdata_get_stream_count(sdat)
write(sdat%logunit,F01) "nvectors = ",sdat%nvectors
do ns = 1, shr_strdata_get_stream_count(sdat)
write(sdat%logunit,F04) " taxMode (",ns,") = ",trim(sdat%stream(ns)%taxmode)
write(sdat%logunit,F07) " dtlimit (",ns,") = ",sdat%stream(ns)%dtlimit
write(sdat%logunit,F04) " mapalgo (",ns,") = ",trim(sdat%stream(ns)%mapalgo)
write(sdat%logunit,F04) " tintalgo(",ns,") = ",trim(sdat%stream(ns)%tinterpalgo)
write(sdat%logunit,F04) " readmode(",ns,") = ",trim(sdat%stream(ns)%readmode)
write(sdat%logunit,F04) " vectors (",ns,") = ",trim(sdat%stream(ns)%stream_vectors)
write(sdat%logunit,F01) " "
end do

write(sdat%logunit,F01) "nvectors = ",sdat%nvectors
do n=1, sdat%nvectors
write(sdat%logunit,F04) " vectors (",n,") = ",trim(sdat%stream(n)%stream_vectors)
end do
write(sdat%logunit,F90)

end subroutine shr_strdata_print
Expand Down

0 comments on commit 4179ba4

Please sign in to comment.