Skip to content

Commit 8edd04b

Browse files
committed
Merge branch 'elm/change-snow-shape-default-to-hexagonal' (PR E3SM-Project#7247)
This PR changes the default namelist option for snow grain shape for all configurations to hexagonal_plate, which is used by the SNICAR-ADv3 model to scatter light. Thus, this option has an appreciable impact on albedo in snow-covered regions. The current default is sphere, thus this change increases albedo in snow-covered regions (aspect ratio of snow grains increases from 1 to 2.5). This change is motivated by a significant albedo bias over polar ice sheets and a related summertime warm surface air temperature bias. This change is supported by hexagonal_plate being the default in CLM5. [CC]
2 parents 22b3f9c + 649eebb commit 8edd04b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

components/elm/bld/namelist_files/namelist_defaults.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -665,7 +665,7 @@ this mask will have smb calculated over the entire global land surface
665665
<!-- *********** Resolution independent: *********** -->
666666
<fsnowoptics >lnd/clm2/snicardata/snicar_optics_5bnd_mam_c160322.nc</fsnowoptics>
667667
<fsnowaging >lnd/clm2/snicardata/snicar_drdt_bst_fit_60_c070416.nc</fsnowaging>
668-
<snow_shape>sphere</snow_shape>
668+
<snow_shape>hexagonal_plate</snow_shape>
669669
<snicar_atm_type>default</snicar_atm_type>
670670
<use_dust_snow_internal_mixing>.false.</use_dust_snow_internal_mixing>
671671

components/elm/src/main/elm_varctl.F90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -569,7 +569,7 @@ module elm_varctl
569569
!----------------------------------------------------------
570570
! SNICAR-AD
571571
!----------------------------------------------------------
572-
character(len=256), public :: snow_shape = 'sphere'
572+
character(len=256), public :: snow_shape = 'hexagonal_plate'
573573
character(len=256), public :: snicar_atm_type = 'default'
574574
logical, public :: use_dust_snow_internal_mixing = .false.
575575

0 commit comments

Comments
 (0)