You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Snow thermal conductivity changes: Sturm1997 and Jordan1991 (#101)
This PR implements @AdrienDams snow thermal conductivity fixes in CLM5.
> Damseaux, A., Matthes, H., Dutch, V. R., Wake, L., and Rutter, N.: **Impact of snow thermal conductivity schemes on pan-Arctic permafrost dynamics in the Community Land Model version 5.0**, The Cryosphere, 19, 1539–1558, https://doi.org/10.5194/tc-19-1539-2025, 2025.
## New namelist parameters in `lnd_in`
These fixes allow changing the snow thermal conductivity per land unit type. New namelist switches must be added in the `lnd_in` with defaults set to [CLM6 defaults](https://github.com/ESCOMP/CTSM/blob/9f5c3602f9efea2ade07a8f5dcf9eb2b0425d540/bld/namelist_files/namelist_defaults_ctsm.xml#L576-L583).
```fortran
&clm_inparm
snow_thermal_cond_method = 'Sturm1997'
snow_thermal_cond_glc_method = 'Sturm1997'
snow_thermal_cond_lake_method = 'Jordan1991'
```
For reference the namelist parameters reproducing the **old defaults**
```fortran
&clm_inparm
snow_thermal_cond_method = 'Jordan1991'
snow_thermal_cond_glc_method = 'Jordan1991'
snow_thermal_cond_lake_method = 'Jordan1991'
```
## Code changes
Changes were based from these upstream PRs:
- ESCOMP/CTSM#2148
- ESCOMP/CTSM#3072
0 commit comments