42 lines
1.4 KiB
Python
42 lines
1.4 KiB
Python
"""
|
|
Implementation of the CIME LCISO (Land Carbon Isotope) test.
|
|
|
|
This is a CTSM specific test:
|
|
Verifies turning on carbon isotopes doesn't change answers
|
|
(1) do a run with Carbon isotopes off (suffix base)
|
|
(2) add C13 and C14 carbon isotopes on with their time-series (suffix cisoallon)
|
|
|
|
"""
|
|
|
|
from CIME.SystemTests.system_tests_compare_two import SystemTestsCompareTwo
|
|
from CIME.XML.standard_module_setup import *
|
|
from CIME.SystemTests.test_utils.user_nl_utils import append_to_user_nl_files
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
class LCISO(SystemTestsCompareTwo):
|
|
def __init__(self, case):
|
|
self.comp = case.get_value("COMP_LND")
|
|
SystemTestsCompareTwo.__init__(
|
|
self,
|
|
case,
|
|
separate_builds=False,
|
|
run_two_suffix="cisoallon",
|
|
run_one_description="carbon isotopes off",
|
|
run_two_description="c13 and c14 isotopes on as well as C isotope time series",
|
|
ignore_fieldlist_diffs=True,
|
|
)
|
|
|
|
def _case_one_setup(self):
|
|
append_to_user_nl_files(
|
|
caseroot=self._get_caseroot(), component=self.comp, contents="use_c13=F, use_c14=F"
|
|
)
|
|
|
|
def _case_two_setup(self):
|
|
append_to_user_nl_files(
|
|
caseroot=self._get_caseroot(),
|
|
component=self.comp,
|
|
contents="use_c13=.true.,use_c14=.true.,use_c13_timeseries=.true.,use_c14_bombspike=.true.",
|
|
)
|