ESCOMP / MOSART

Model for Scale Adaptive River Transport, Mosart, part of the Community Earth System Model
http://www.cesm.ucar.edu/
Other
8 stars 27 forks source link

MOSART_SIMYR in config_component.xml not setup correctly #20

Closed ekluzek closed 2 years ago

ekluzek commented 5 years ago

MOSART_SIMYR in config_component.xml isn't setup correctly. The default value uses command line syntax, "-simyr 2000", while the specifc settings us a fixed year.

It looks like as follows...

  <entry id="MOSART_SIMYR">
    <type>char</type>
    <valid_values></valid_values>
    <default_value>-simyr 2000</default_value>
    <values>
      <value compset="1850.*_MOSART">1850</value>
      <value compset="HIST.*_MOSART">1850</value>
      <value compset="PIPD.*_MOSART">1850</value>
      <value compset="2000.*_MOSART">2000</value>
    </values>
    <group>run_component_mosart</group>
    <file>env_run.xml</file>
    <desc>MOSART build-namelist options</desc>
  </entry>

In practice it isn't actually used in the code and hence doesn't matter right now. So it doesn't actually do anything in buildnml nor do the namelist defaults do anything based on it. The intention for it is to be able to set the initial conditions to either present day or pre-industrial. But, since we aren't providing initial conditions it doesn't really matter.

ekluzek commented 5 years ago

Note that Charles Bardeen is the one that noticed this issue.