Skip to content

Commit

Permalink
Merge pull request #183 from GEOS-ESM/hotfix/mathomp4/units-fix
Browse files Browse the repository at this point in the history
Fix incorrect mass flux units
  • Loading branch information
mathomp4 authored Sep 29, 2022
2 parents aa5c416 + 5ee4722 commit d9d4036
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions DynCore_GridCompMod.F90
Original file line number Diff line number Diff line change
Expand Up @@ -993,25 +993,25 @@ Subroutine SetServices ( gc, rc )
VERIFY_(STATUS)

call MAPL_AddExportSpec ( gc, &
SHORT_NAME = 'MX', &
SHORT_NAME = 'MX', &
LONG_NAME = 'pressure_weighted_accumulated_eastward_mass_flux', &
UNITS = 'Pa m+2 s-1', &
UNITS = 'Pa m+2', &
DIMS = MAPL_DimsHorzVert, &
VLOCATION = MAPL_VLocationCenter, RC=STATUS )
VERIFY_(STATUS)

call MAPL_AddExportSpec ( gc, &
SHORT_NAME = 'MY', &
SHORT_NAME = 'MY', &
LONG_NAME = 'pressure_weighted_accumulated_northward_mass_flux', &
UNITS = 'Pa m+2 s-1', &
UNITS = 'Pa m+2', &
DIMS = MAPL_DimsHorzVert, &
VLOCATION = MAPL_VLocationCenter, RC=STATUS )
VERIFY_(STATUS)

call MAPL_AddExportSpec ( gc, &
SHORT_NAME = 'MFX', &
LONG_NAME = 'pressure_weighted_accumulated_eastward_mass_flux', &
UNITS = 'Pa m+2 s-1', &
UNITS = 'Pa m+2', &
PRECISION = ESMF_KIND_R8, &
DIMS = MAPL_DimsHorzVert, &
VLOCATION = MAPL_VLocationCenter, RC=STATUS )
Expand All @@ -1020,7 +1020,7 @@ Subroutine SetServices ( gc, rc )
call MAPL_AddExportSpec ( gc, &
SHORT_NAME = 'MFY', &
LONG_NAME = 'pressure_weighted_accumulated_northward_mass_flux', &
UNITS = 'Pa m+2 s-1', &
UNITS = 'Pa m+2', &
PRECISION = ESMF_KIND_R8, &
DIMS = MAPL_DimsHorzVert, &
VLOCATION = MAPL_VLocationCenter, RC=STATUS )
Expand Down

0 comments on commit d9d4036

Please sign in to comment.