Skip to content

Commit

Permalink
Merge pull request #2997 from E3SM-Project/bogensch/dp_gsize_fix
Browse files Browse the repository at this point in the history
Bug fix when defining gsize in DP mode
  • Loading branch information
AaronDonahue authored Sep 24, 2024
2 parents 7bbdcb8 + 9eb7a7f commit 42d4c02
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 42d4c02

Please sign in to comment.