Skip to content

Commit

Permalink
bug fix when defining gsize in dp mode
Browse files Browse the repository at this point in the history
  • Loading branch information
Peter Bogenschutz committed Sep 16, 2024
1 parent 25120ff commit 9eb7a7f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion share/streams/shr_dmodel_mod.F90
Original file line number Diff line number Diff line change
Expand Up @@ -383,7 +383,7 @@ subroutine shr_dmodel_readgrid( gGrid, gsMap, nxgo, nygo, nzgo, filename, compid
nxgo = scm_nx
nygo = scm_ny
nzgo = -1
gsize = abs(scm_nx*scm_nx*nzgo)
gsize = abs(scm_nx*scm_ny*nzgo)
else
nxgo = nxg
nygo = nyg
Expand Down

0 comments on commit 9eb7a7f

Please sign in to comment.