Skip to content
4 changes: 4 additions & 0 deletions cime_config/buildnml
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,8 @@ def buildnml(case, caseroot, compname):
blom_coupling = case.get_value("BLOM_COUPLING")
blom_tracer_modules = case.get_value("BLOM_TRACER_MODULES")
blom_atrc = case.get_value("BLOM_ATRC")
blom_output_size = case.get_value("BLOM_OUTPUT_SIZE")
hamocc_output_size = case.get_value("HAMOCC_OUTPUT_SIZE")
hamocc_ciso = case.get_value("HAMOCC_CISO")
hamocc_extncycle = case.get_value("HAMOCC_EXTNCYCLE")
hamocc_n2oc = case.get_value("HAMOCC_N2OC")
Expand Down Expand Up @@ -230,6 +232,8 @@ def buildnml(case, caseroot, compname):
config["blom_coupling"] = blom_coupling
config["blom_tracer_modules"] = blom_tracer_modules
config["blom_atrc"] = blom_atrc
config["blom_output_size"] = blom_output_size
config["hamocc_output_size"] = hamocc_output_size
config["hamocc_ciso"] = "yes" if hamocc_ciso else "no"
config["hamocc_extncycle"] = "yes" if hamocc_extncycle else "no"
config["hamocc_n2oc"] = "yes" if hamocc_n2oc else "no"
Expand Down
18 changes: 18 additions & 0 deletions cime_config/config_component.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,15 @@

<definitions_variables>

<entry id="BLOM_OUTPUT_SIZE">
<type>char</type>
<valid_values>spinup</valid_values>
<default_value>spinup</default_value>
<group>run_component_blom</group>
<file>env_run.xml</file>
<desc>Namelist option to set BLOM output option.</desc>
</entry>

<entry id="COMP_OCN">
<type>char</type>
<valid_values>blom</valid_values>
Expand Down Expand Up @@ -201,6 +210,15 @@
<desc>Namelist option to set sinking scheme. Requires module ecosys</desc>
</entry>

<entry id="HAMOCC_OUTPUT_SIZE">
<type>char</type>
<valid_values>spinup</valid_values>
<default_value>spinup</default_value>
<group>run_component_blom</group>
<file>env_run.xml</file>
<desc>Namelist option to set iHAMOCC output option. Requires module ecosys</desc>
</entry>

<entry id="HAMOCC_PREF_TRACERS">
<type>logical</type>
<valid_values>TRUE,FALSE</valid_values>
Expand Down
Loading