Skip to content

Commit

Permalink
fix for a few multi tests to run
Browse files Browse the repository at this point in the history
  • Loading branch information
JessicaMeixner-NOAA committed Apr 18, 2024
1 parent 2e7105f commit fa4509b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions model/src/w3iopomd.F90
Original file line number Diff line number Diff line change
Expand Up @@ -1542,11 +1542,11 @@ SUBROUTINE W3IOPON_WRITE(timestep_only, IMOD, filename, ncerr)

! Write the data with NOPTS as a dimension. (no time dimension)
if (associated(PTLOC)) then
ncerr = nf90_put_var(fh, v_ptloc, PTLOC)
ncerr = nf90_put_var(fh, v_ptloc, PTLOC(:,1:NOPTS))
if (nf90_err(ncerr) .ne. 0) return
endif
if (associated(PTNME)) then
ncerr = nf90_put_var(fh, v_ptnme, PTNME)
ncerr = nf90_put_var(fh, v_ptnme, PTNME(1:NOPTS))
if (nf90_err(ncerr) .ne. 0) return
endif

Expand Down

0 comments on commit fa4509b

Please sign in to comment.