Skip to content

Commit 8cd5268

Browse files
committed
Merge branch 'cbegeman/ocn/fix-variable-descriptions' into next (PR #7472)
Clarify registry descriptions for avgSurface* variables Surface values sent to the coupler are not actually extrapolated from zMid to zTop as described. This PR changes the description of these variables in the registry to make that more clear. [BFB]
2 parents af4c1d8 + be96654 commit 8cd5268

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

components/mpas-ocean/src/Registry.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3991,18 +3991,18 @@
39913991
/>
39923992
<var_array name="avgTracersSurfaceValue" type="real" dimensions="nCells Time" packages="forwardMode;analysisMode">
39933993
<var name="avgTemperatureSurfaceValue" array_group="surfaceValues" units="C"
3994-
description="Time averaged potential temperature extrapolated to ocean surface"
3994+
description="Time averaged potential temperature in the uppermost active level as determined by minLevelCell"
39953995
/>
39963996
<var name="avgSalinitySurfaceValue" array_group="surfaceValues" units="1.e-3"
3997-
description="Time averaged salinity extrapolated to ocean surface"
3997+
description="Time averaged salinity in the uppermost active level as determined by minLevelCell"
39983998
/>
39993999
</var_array>
40004000
<var_array name="avgSurfaceVelocity" type="real" dimensions="nCells Time" packages="forwardMode;analysisMode">
40014001
<var name="avgSurfaceVelocityZonal" array_group="vel_zonal" units="m s^-1"
4002-
description="Time averaged zonal surface velocity"
4002+
description="Time averaged zonal surface velocity located in minLevelCell"
40034003
/>
40044004
<var name="avgSurfaceVelocityMeridional" array_group="vel_meridional" units="m s^-1"
4005-
description="Time averaged meridional surface velocity"
4005+
description="Time averaged meridional surface velocity located in minLevelCell"
40064006
/>
40074007
</var_array>
40084008
<var_array name="avgSSHGradient" type="real" dimensions="nCells Time" packages="forwardMode;analysisMode">

components/mpas-ocean/src/shared/mpas_ocn_diagnostics.F

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -401,9 +401,9 @@ subroutine ocn_diagnostic_solve(dt, statePool, forcingPool, meshPool, verticalMe
401401

402402
!
403403
! extrapolate tracer values to ocean surface
404-
! this eventually be a modelled process
405-
! at present, just copy k=1 tracer values onto surface values
406-
! field will be updated below is better approximations are available
404+
! this eventually could be a modelled process
405+
! at present, just copy minLevelCell tracer values onto surface values
406+
! field will be updated below as better approximations are available
407407

408408
!TDR need to consider how to handle tracersSurfaceValues
409409
#ifdef MPAS_OPENACC

0 commit comments

Comments
 (0)