Skip to content
Merged
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
2 changes: 2 additions & 0 deletions ndsl/namelist.py
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,7 @@ class NamelistDefaults:
do_dk_hb19 = False # flag for using hb19 background diff formula in satmedmfdiff
cap_k0_land = True # flag for applying limter on background diff in inversion layer over land in satmedmfdiff
lsoil = 4 # Number of soil levels in land surface model
sw_dynamics = False # flag for turning on shallow water conditions in dyn core
Comment thread
jjuyeonkim marked this conversation as resolved.

@classmethod
def as_dict(cls):
Expand Down Expand Up @@ -503,6 +504,7 @@ class Namelist:
n_sponge: int = NamelistDefaults.n_sponge
lsoil: int = NamelistDefaults.lsoil
daily_mean: bool = False
sw_dynamics: bool = NamelistDefaults.sw_dynamics
"""Flag to replace cosz with daily mean value in physics"""

@classmethod
Expand Down