Skip to content

Commit

Permalink
fix for grdid
Browse files Browse the repository at this point in the history
  • Loading branch information
JessicaMeixner-NOAA committed Apr 2, 2024
1 parent 15ee016 commit 402d16a
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions model/src/w3iopomd.F90
Original file line number Diff line number Diff line change
Expand Up @@ -1610,9 +1610,8 @@ SUBROUTINE W3IOPON_WRITE(timestep_only, IMOD, filename, ncerr)
ncerr = nf90_inq_varid(fh, VNAME_GRDID, v_grdid)
if (ncerr .ne. 0) return
END IF
!!! TO DO ADD GRIDLENTH?
ncerr = nf90_put_var(fh, v_grdid, GRDID, start = (/ 1, itime/), &
count = (/ d_nopts, 1 /))
ncerr = nf90_put_var(fh, v_grdid, GRDID, start = (/ 1, 1, itime/), &
count = (/ d_grdidlen, d_nopts, 1 /))
if (ncerr .ne. 0) return
write(*,*) 'JDM f 16'
IF ( itime > 1 ) THEN
Expand Down

0 comments on commit 402d16a

Please sign in to comment.