Skip to content

correct units for a few static fields #1248

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions src/core_atmosphere/Registry.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3440,10 +3440,10 @@
<var name="landmask" type="integer" dimensions="nCells" units="unitless"
description="land-ocean mask (1=land ; 0=ocean)"/>

<var name="shdmin" type="real" dimensions="nCells" units="unitless"
<var name="shdmin" type="real" dimensions="nCells" units="percent"
description="minimum fractional coverage of annual green vegetation fraction"/>

<var name="shdmax" type="real" dimensions="nCells" units="unitless"
<var name="shdmax" type="real" dimensions="nCells" units="percent"
description="maximum fractional coverage of annual green vegetation fraction"/>

<var name="snoalb" type="real" dimensions="nCells" units="unitless"
Expand All @@ -3452,11 +3452,11 @@
<var name="ter" type="real" dimensions="nCells" units="m"
description="terrain height"/>

<var name="albedo12m" type="real" dimensions="nMonths nCells" units="unitless"
<var name="albedo12m" type="real" dimensions="nMonths nCells" units="percent"
description="monthly-mean climatological surface albedo"/>

<var name="greenfrac" type="real" dimensions="nMonths nCells" units="unitless"
description="monthly-mean climatological greeness fraction"/>
<var name="greenfrac" type="real" dimensions="nMonths nCells" units="percent"
description="monthly-mean climatological greenness fraction"/>

<var name="dzs" type="real" dimensions="nSoilLevels nCells Time" units="m"
description="soil layer thickness"/>
Expand All @@ -3482,7 +3482,7 @@
<var name="tmn" type="real" dimensions="nCells Time" units="K"
description="deep soil temperature"/>

<var name="vegfra" type="real" dimensions="nCells Time" units="unitless"
<var name="vegfra" type="real" dimensions="nCells Time" units="percent"
description="vegetation fraction"/>

<var name="seaice" type="real" dimensions="nCells Time" units="unitless"
Expand Down
12 changes: 6 additions & 6 deletions src/core_init_atmosphere/Registry.xml
Original file line number Diff line number Diff line change
Expand Up @@ -802,16 +802,16 @@
<var name="soiltemp" type="real" dimensions="nCells" units="K"
description="annual mean deep soil temperature"/>

<var name="greenfrac" type="real" dimensions="nMonths nCells" units="unitless"
description="monthly-mean climatological greeness fraction"/>
<var name="greenfrac" type="real" dimensions="nMonths nCells" units="percent"
description="monthly-mean climatological greenness fraction"/>

<var name="shdmin" type="real" dimensions="nCells" units="unitless"
<var name="shdmin" type="real" dimensions="nCells" units="percent"
description="minimum fractional coverage of annual green vegetation fraction"/>

<var name="shdmax" type="real" dimensions="nCells" units="unitless"
<var name="shdmax" type="real" dimensions="nCells" units="percent"
description="maximum fractional coverage of annual green vegetation fraction"/>

<var name="albedo12m" type="real" dimensions="nMonths nCells" units="unitless"
<var name="albedo12m" type="real" dimensions="nMonths nCells" units="percent"
description="monthly-mean climatological surface albedo"/>

<var name="isice_lu" type="integer" dimensions="" units="unitless" default_value="24"
Expand Down Expand Up @@ -1207,7 +1207,7 @@
description="geopotential height vertically interpolated from first guess"
packages="met_stage_out"/>

<var name="vegfra" type="real" dimensions="nCells Time" units="unitless"
<var name="vegfra" type="real" dimensions="nCells Time" units="percent"
description="vegetation fraction"
packages="met_stage_out"/>

Expand Down
2 changes: 1 addition & 1 deletion src/core_init_atmosphere/mpas_init_atm_cases.F
Original file line number Diff line number Diff line change
Expand Up @@ -6699,7 +6699,7 @@ subroutine physics_idealized_init(mesh, fg)
dzs(iSoil,iCell) = 0.0
end do

!monthly climatological surface albedo and greeness fraction:
!monthly climatological surface albedo and greenness fraction:
do iMonth = 1, nMonths
albedo12m(iMonth,iCell) = 0.08
greenfrac(iMonth,iCell) = 0.0
Expand Down