Skip to content

Commit d98fa26

Browse files
committed
* In ./src/core_init_atmosphere:
-> in Registry.xml, corrected the units of static fields greenfrac, shdmin, shdmax, and albedo12m from "unitless" to "percent". -> in mpas_init_atm_cases.F, corrected spelling of "greeness" to "greenness" (line 6702). * In ./src/core_atmosphere/Registry.xml, corrected the units of static fields greenfrac, shdmin, shdmax, and albedo12m from "unitless" to "percent". corrected unit of variable vegfra (derived from greenfrac) from "unitless" to "percent".
1 parent 942d402 commit d98fa26

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

src/core_atmosphere/Registry.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3440,10 +3440,10 @@
34403440
<var name="landmask" type="integer" dimensions="nCells" units="unitless"
34413441
description="land-ocean mask (1=land ; 0=ocean)"/>
34423442

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

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

34493449
<var name="snoalb" type="real" dimensions="nCells" units="unitless"
@@ -3452,10 +3452,10 @@
34523452
<var name="ter" type="real" dimensions="nCells" units="m"
34533453
description="terrain height"/>
34543454

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

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

34613461
<var name="dzs" type="real" dimensions="nSoilLevels nCells Time" units="m"
@@ -3482,7 +3482,7 @@
34823482
<var name="tmn" type="real" dimensions="nCells Time" units="K"
34833483
description="deep soil temperature"/>
34843484

3485-
<var name="vegfra" type="real" dimensions="nCells Time" units="unitless"
3485+
<var name="vegfra" type="real" dimensions="nCells Time" units="percent"
34863486
description="vegetation fraction"/>
34873487

34883488
<var name="seaice" type="real" dimensions="nCells Time" units="unitless"

src/core_init_atmosphere/Registry.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -802,16 +802,16 @@
802802
<var name="soiltemp" type="real" dimensions="nCells" units="K"
803803
description="annual mean deep soil temperature"/>
804804

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

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

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

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

817817
<var name="isice_lu" type="integer" dimensions="" units="unitless" default_value="24"

src/core_init_atmosphere/mpas_init_atm_cases.F

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6699,7 +6699,7 @@ subroutine physics_idealized_init(mesh, fg)
66996699
dzs(iSoil,iCell) = 0.0
67006700
end do
67016701

6702-
!monthly climatological surface albedo and greeness fraction:
6702+
!monthly climatological surface albedo and greenness fraction:
67036703
do iMonth = 1, nMonths
67046704
albedo12m(iMonth,iCell) = 0.08
67056705
greenfrac(iMonth,iCell) = 0.0

0 commit comments

Comments
 (0)