Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/cam_development' into atmos_ph…
Browse files Browse the repository at this point in the history
…ys_dirs
  • Loading branch information
nusbaume committed Oct 11, 2024
2 parents a3b6e32 + f0e489e commit 6901eb0
Show file tree
Hide file tree
Showing 38 changed files with 1,283 additions and 462 deletions.
32 changes: 23 additions & 9 deletions .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -51,13 +51,27 @@
path = src/chemistry/geoschem/geoschem_src
url = https://github.com/geoschem/geos-chem.git
fxrequired = AlwaysRequired
fxtag = 14.1.2
fxtag = 14.4.3
fxDONOTUSEurl = https://github.com/geoschem/geos-chem.git

[submodule "cloud_j"]
path = src/chemistry/cloud_j
url = https://github.com/geoschem/cloud-j.git
fxrequired = AlwaysRequired
fxtag = 7.7.3
fxDONOTUSEurl = https://github.com/geoschem/cloud-j.git

[submodule "hetp"]
path = src/chemistry/hetp
url = https://github.com/geoschem/heterogeneous-vectorized-or-parallel.git
fxrequired = AlwaysRequired
fxtag = geoschem_hetp_1.0
fxDONOTUSEurl = https://github.com/geoschem/heterogeneous-vectorized-or-parallel.git

[submodule "hemco"]
path = src/hemco
url = https://github.com/ESCOMP/HEMCO_CESM.git
fxtag = hemco-cesm1_2_1_hemco3_6_3_cesm_rme01
fxtag = hemco-cesm2_0_hemco3_9_0
fxrequired = AlwaysRequired
fxDONOTUSEurl = https://github.com/ESCOMP/HEMCO_CESM.git

Expand Down Expand Up @@ -130,28 +144,28 @@ fxDONOTUSEurl = https://github.com/ESCOMP/mizuRoute
[submodule "ccs_config"]
path = ccs_config
url = https://github.com/ESMCI/ccs_config_cesm.git
fxtag = ccs_config_cesm1.0.0
fxtag = ccs_config_cesm1.0.7
fxrequired = ToplevelRequired
fxDONOTUSEurl = https://github.com/ESMCI/ccs_config_cesm.git

[submodule "cime"]
path = cime
url = https://github.com/ESMCI/cime
fxtag = cime6.1.0
fxtag = cime6.1.29
fxrequired = ToplevelRequired
fxDONOTUSEurl = https://github.com/ESMCI/cime

[submodule "cmeps"]
path = components/cmeps
url = https://github.com/ESCOMP/CMEPS.git
fxtag = cmeps1.0.2
fxtag = cmeps1.0.16
fxrequired = ToplevelRequired
fxDONOTUSEurl = https://github.com/ESCOMP/CMEPS.git

[submodule "cdeps"]
path = components/cdeps
url = https://github.com/ESCOMP/CDEPS.git
fxtag = cdeps1.0.48
fxtag = cdeps1.0.53
fxrequired = ToplevelRequired
fxDONOTUSEurl = https://github.com/ESCOMP/CDEPS.git

Expand All @@ -165,7 +179,7 @@ fxDONOTUSEurl = https://github.com/ESCOMP/CESM_share
[submodule "parallelio"]
path = libraries/parallelio
url = https://github.com/NCAR/ParallelIO
fxtag = pio2_6_2
fxtag = pio2_6_3
fxrequired = ToplevelRequired
fxDONOTUSEurl = https://github.com/NCAR/ParallelIO

Expand All @@ -179,13 +193,13 @@ fxDONOTUSEurl = https://github.com/ESCOMP/CESM_CICE
[submodule "clm"]
path = components/clm
url = https://github.com/ESCOMP/CTSM
fxtag = ctsm5.2.027
fxtag = ctsm5.3.002
fxrequired = ToplevelRequired
fxDONOTUSEurl = https://github.com/ESCOMP/CTSM

[submodule "fms"]
path = libraries/FMS
url = https://github.com/ESCOMP/FMS_interface
fxtag = fi_240516
fxtag = fi_240828
fxrequired = ToplevelRequired
fxDONOTUSEurl = https://github.com/ESCOMP/FMS_interface
7 changes: 5 additions & 2 deletions bld/build-namelist
Original file line number Diff line number Diff line change
Expand Up @@ -2038,10 +2038,13 @@ if (($chem =~ /trop_mozart/ or $chem =~ /trop_strat/ or $chem =~ /waccm_tsmlt/)

if ($chem =~ /geoschem/) {

my $val;
# Input directories
add_default($nl, 'geoschem_chem_inputs');
add_default($nl, 'geoschem_aeropt_inputs');
add_default($nl, 'geoschem_photol_inputs');

# Species with fixed lower boundary
$val = "'CCL4','CH4','N2O','CO2','CFC11','CFC12','CH3BR','CH3CCL3','CH3CL'"
my $val = "'CCL4','CH4','N2O','CO2','CFC11','CFC12','CH3BR','CH3CCL3','CH3CL'"
.",'HCFC22','CFC114','CFC115','HCFC141B','HCFC142B','CH2BR2','CHBR3','H2402'";

if ($chem_has_ocs) {
Expand Down
8 changes: 5 additions & 3 deletions bld/configure
Original file line number Diff line number Diff line change
Expand Up @@ -1450,9 +1450,9 @@ if ($chem_pkg =~ '_mam3') {

# Customize GEOS-Chem advected species and chemistry CPP definitions
if ($chem_pkg =~ 'geoschem') {
$chem_cppdefs .= ' -DEXTERNAL_GRID -DEXTERNAL_FORCING ';
$chem_cppdefs .= ' -DEXTERNAL_GRID -DEXTERNAL_FORCING -DMODEL_CESM -DMODEL_GEOSCHEM';
if ($chem_pkg =~ '_mam4') {
$chem_nadv = 267; # includes GC advected species (233), CO2 (1), and MAM aerosols (33)
$chem_nadv = 269; # includes all GEOS-Chem advected species, CO2, and MAM aerosols
}
}
# CARMA sectional microphysics
Expand Down Expand Up @@ -2219,8 +2219,10 @@ sub write_filepath
print $fh "$chem_src_dir\n";
}

# GEOS-Chem must be prior to Mozart
# GEOS-Chem and dependencies; GEOS-Chem must be prior to Mozart
if ($chem_pkg =~ 'geoschem') {
print $fh "$camsrcdir/src/chemistry/cloud_j/src/Core\n";
print $fh "$camsrcdir/src/chemistry/hetp/src/Core\n";
print $fh "$chem_src_dir/geoschem_src/GeosCore\n";
print $fh "$chem_src_dir/geoschem_src/GeosUtil\n";
print $fh "$chem_src_dir/geoschem_src/Headers\n";
Expand Down
1 change: 1 addition & 0 deletions bld/namelist_files/geoschem_master_gas_drydep_list.xml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
ETHP
ETNO3
ETP
FURA
GLYC
GLYX
H2O2
Expand Down
1 change: 1 addition & 0 deletions bld/namelist_files/geoschem_master_gas_wetdep_list.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
ETHN
ETHP
ETP
FURA
GLYC
GLYX
H2O2
Expand Down
7 changes: 6 additions & 1 deletion bld/namelist_files/namelist_defaults_cam.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2026,7 +2026,7 @@

<!-- effective Henry's coef data for wet and dry deposition -->
<dep_data_file>atm/cam/chem/trop_mozart/dvel/dep_data_c20221208.nc</dep_data_file>
<dep_data_file chem="geoschem_mam4">atm/cam/chem/geoschem/dvel/dep_data_file_geoschem_c230417.nc</dep_data_file>
<dep_data_file chem="geoschem_mam4">atm/cam/chem/geoschem/dvel/dep_data_file_geoschem_v14.3_2023Jan08.nc</dep_data_file>

<!-- photolysis inputs -->
<xs_coef_file>atm/waccm/phot/effxstex.txt</xs_coef_file>
Expand Down Expand Up @@ -3700,4 +3700,9 @@
<hemco_grid_xdim hgrid="1.9x2.5">144</hemco_grid_xdim>
<hemco_grid_ydim hgrid="1.9x2.5">91</hemco_grid_ydim>

<!-- GEOS-Chem chemistry -->
<geoschem_chem_inputs chem="geoschem_mam4">atm/cam/geoschem/emis/ExtData/CHEM_INPUTS</geoschem_chem_inputs>
<geoschem_aeropt_inputs chem="geoschem_mam4">atm/cam/geoschem/emis/ExtData/CHEM_INPUTS/FAST_JX/v2024-05/</geoschem_aeropt_inputs>
<geoschem_photol_inputs chem="geoschem_mam4">atm/cam/geoschem/emis/ExtData/CHEM_INPUTS/CLOUD_J/v2023-05/</geoschem_photol_inputs>

</namelist_defaults>
15 changes: 13 additions & 2 deletions bld/namelist_files/namelist_definition.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5241,12 +5241,23 @@ Default: set by build-namelist for climo cases, otherwise -1 to use model clock.

<!-- GEOS-Chem model -->

<entry id="geoschem_cheminputs" type="char*256" input_pathname="abs" category="geoschem"
<entry id="geoschem_chem_inputs" type="char*256" input_pathname="abs" category="geoschem"
group="geoschem_nl" valid_values="" >
Full pathname to GEOS-Chem chemistry inputs directory
Full pathname of the GEOS-Chem chemistry inputs directory.
Default: set by build-namelist.
</entry>

<entry id="geoschem_aeropt_inputs" type="char*256" input_pathname="abs" category="geoschem"
group="geoschem_nl" valid_values="" >
Full pathname of the aerosols optical property inputs directory used in GEOS-Chem outside of Cloud-J.
Default: set by build-namelist.
</entry>

<entry id="geoschem_photol_inputs" type="char*256" input_pathname="abs" category="geoschem"
group="geoschem_nl" valid_values="" >
Full pathname of the Cloud-J photolysis inputs directory used in GEOS-Chem.
Default: set by build-namelist.
</entry>

<!-- Reference Pressures -->

Expand Down
2 changes: 0 additions & 2 deletions bld/namelist_files/use_cases/2000_geoschem.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@

<!-- Settings for using GEOS-Chem specifically -->

<geoschem_cheminputs>atm/cam/geoschem/ExtData/CHEM_INPUTS/</geoschem_cheminputs>

<ncdata dyn="fv" hgrid="0.9x1.25">atm/cam/geoschem/initial_conditions/f.e20.FC2010.f09_f09.144.GC_vbsext.001.cam.i.0007-01-01-00000.nc</ncdata>

<ncdata dyn="fv" hgrid="1.9x2.5">atm/cam/geoschem/initial_conditions/f.e20.FC2010.f19_f19.144.GC_vbsext.001.cam.i.0007-01-01-00000.nc</ncdata>
Expand Down
2 changes: 0 additions & 2 deletions bld/namelist_files/use_cases/2010_geoschem.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@

<!-- Settings in this file were adapted from 2010_trop_strat_vbs_cam6.xml -->

<geoschem_cheminputs>atm/cam/geoschem/ExtData/CHEM_INPUTS/</geoschem_cheminputs>

<ncdata dyn="fv" hgrid="0.9x1.25">atm/cam/geoschem/initial_conditions/f.e20.FC2010.f09_f09.144.GC_vbsext.001.cam.i.0007-01-01-00000.nc</ncdata>

<ncdata dyn="fv" hgrid="1.9x2.5">atm/cam/geoschem/initial_conditions/f.e20.FC2010.f19_f19.144.GC_vbsext.001.cam.i.0007-01-01-00000.nc</ncdata>
Expand Down
4 changes: 1 addition & 3 deletions bld/namelist_files/use_cases/hist_geoschem.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@

<!-- Settings for using GEOS-Chem -->

<geoschem_cheminputs>atm/cam/geoschem/ExtData/CHEM_INPUTS/</geoschem_cheminputs>

<ncdata dyn="fv" hgrid="0.9x1.25">atm/cam/geoschem/initial_conditions/f.e20.FC2010.f09_f09.144.GC_vbsext.001.cam.i.0007-01-01-00000.nc</ncdata>

<ncdata dyn="fv" hgrid="1.9x2.5">atm/cam/geoschem/initial_conditions/f.e20.FC2010.f19_f19.144.GC_vbsext.001.cam.i.0007-01-01-00000.nc</ncdata>
Expand All @@ -29,7 +27,7 @@
<gw_qbo_hdepth_scaling>0.25D0</gw_qbo_hdepth_scaling>

<flbc_type>SERIAL</flbc_type>
<flbc_file>atm/waccm/lb/LBC_1750-2014_CMIP6_0p5degLat_c170126.nc</flbc_file>
<flbc_file>atm/waccm/lb/LBC_17500116-25001216_CMIP6_SSP585_0p5degLat_c20200824.nc</flbc_file>

<prescribed_strataero_type>SERIAL</prescribed_strataero_type>

Expand Down
4 changes: 1 addition & 3 deletions bld/namelist_files/use_cases/hist_geoschem_nudged.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@

<!-- Settings for using GEOS-Chem -->

<geoschem_cheminputs>atm/cam/geoschem/ExtData/CHEM_INPUTS/</geoschem_cheminputs>

<ncdata dyn="fv" hgrid="0.9x1.25">atm/cam/geoschem/initial_conditions/f.e20.FC2010.f09_f09.144.GC_vbsext.001.cam.i.0007-01-01-00000.nc</ncdata>

<ncdata dyn="fv" hgrid="1.9x2.5">atm/cam/geoschem/initial_conditions//f.e20.FC2010.f19_f19.144.GC_vbsext.001.cam.i.0007-01-01-00000.nc</ncdata>
Expand All @@ -29,7 +27,7 @@
<gw_qbo_hdepth_scaling>0.25D0</gw_qbo_hdepth_scaling>

<flbc_type>SERIAL</flbc_type>
<flbc_file>atm/waccm/lb/LBC_1750-2014_CMIP6_0p5degLat_c170126.nc</flbc_file>
<flbc_file>atm/waccm/lb/LBC_17500116-25001216_CMIP6_SSP585_0p5degLat_c20200824.nc</flbc_file>

<prescribed_strataero_type>SERIAL</prescribed_strataero_type>

Expand Down
2 changes: 1 addition & 1 deletion ccs_config
Submodule ccs_config updated 116 files
2 changes: 1 addition & 1 deletion cime
Submodule cime updated 55 files
+3 −2 .github/workflows/testing.yml
+7 −1 CIME/BuildTools/configure.py
+26 −54 CIME/ParamGen/paramgen.py
+4 −4 CIME/Servers/__init__.py
+3 −14 CIME/SystemTests/ers.py
+2 −1 CIME/SystemTests/funit.py
+3 −4 CIME/SystemTests/hommebaseclass.py
+4 −4 CIME/SystemTests/mvk.py
+5 −5 CIME/SystemTests/pgn.py
+1 −1 CIME/SystemTests/restart_tests.py
+71 −2 CIME/SystemTests/system_tests_common.py
+4 −4 CIME/SystemTests/tsc.py
+5 −4 CIME/Tools/Makefile
+94 −60 CIME/Tools/list_e3sm_tests
+52 −9 CIME/Tools/xmlchange
+10 −0 CIME/XML/batch.py
+1 −1 CIME/XML/component.py
+22 −0 CIME/XML/compsets.py
+1 −1 CIME/XML/entry_id.py
+65 −21 CIME/XML/env_batch.py
+12 −0 CIME/XML/env_workflow.py
+47 −21 CIME/XML/grids.py
+30 −7 CIME/XML/pes.py
+8 −3 CIME/build.py
+29 −9 CIME/case/case.py
+8 −4 CIME/case/case_cmpgen_namelists.py
+6 −2 CIME/case/case_run.py
+48 −4 CIME/case/case_setup.py
+6 −5 CIME/case/case_st_archive.py
+5 −1 CIME/case/case_submit.py
+2 −1 CIME/case/case_test.py
+9 −15 CIME/code_checker.py
+2 −1 CIME/compare_test_results.py
+0 −3 CIME/data/config/config_tests.xml
+2 −0 CIME/data/config/xml_schemas/config_workflow.xsd
+77 −0 CIME/data/templates/gitignore.template
+100 −0 CIME/gitinterface.py
+66 −47 CIME/hist_utils.py
+1 −1 CIME/non_py/cprnc
+10 −0 CIME/scripts/create_test.py
+270 −365 CIME/scripts/query_config.py
+132 −0 CIME/status.py
+30 −17 CIME/test_scheduler.py
+8 −1 CIME/test_status.py
+2 −1 CIME/tests/test_sys_cime_case.py
+1 −1 CIME/tests/test_sys_create_newcase.py
+25 −3 CIME/tests/test_sys_unittest.py
+1 −1 CIME/tests/test_unit_utils.py
+164 −0 CIME/tests/test_unit_xml_grids.py
+13 −98 CIME/utils.py
+12 −50 docker/Dockerfile
+29 −0 docker/cime.yaml
+9 −0 docker/entrypoint.sh
+3 −3 tools/mapping/gen_mapping_files/runoff_to_ocn/INSTALL
+1 −1 tools/mapping/gen_mapping_files/runoff_to_ocn/tools/makdep.c
2 changes: 1 addition & 1 deletion cime_config/SystemTests/plb.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
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
from CIME.utils import append_testlog
from CIME.status import append_testlog

logger = logging.getLogger(__name__)

Expand Down
2 changes: 1 addition & 1 deletion cime_config/SystemTests/sct.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
from CIME.XML.standard_module_setup import *
from CIME.SystemTests.test_utils.user_nl_utils import append_to_user_nl_files
from CIME.test_status import *
from CIME.utils import append_testlog
from CIME.status import append_testlog


logger = logging.getLogger(__name__)
Expand Down
2 changes: 1 addition & 1 deletion cime_config/SystemTests/sub.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
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
from CIME.utils import append_testlog
from CIME.status import append_testlog


logger = logging.getLogger(__name__)
Expand Down
2 changes: 1 addition & 1 deletion cime_config/SystemTests/tmc.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from CIME.XML.standard_module_setup import *
from CIME.SystemTests.system_tests_common import SystemTestsCommon
from CIME.test_status import *
from CIME.utils import append_testlog
from CIME.status import append_testlog
from CIME.baselines.performance import get_latest_cpl_logs
import glob, gzip

Expand Down
4 changes: 2 additions & 2 deletions cime_config/config_component.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
-->
<desc atm="CAM70[%LT][%MT][%CCTS1][%CCTS4]" >CAM cam7 physics:</desc>
<desc atm="CAM60[%1PCT][%4xCO2][%CCTS1][%CCTS2][%CFIRE][%CVBSX][%NUDG][%PORT][%RCO2][%SCAM][%SDYN][%WCCM][%WCMD][%WCSC][%WCTS][%WXIE][%WXIED][%HEMCO][%GEOSCHEM][%SCAMARM95][%SCAMARM97][%SCAMATEX][%SCAMBOMEX][%SCAMCGILSS11][%SCAMCGILSS12][%SCAMCGILSS6][%SCAMDYCOMSRF01][%SCAMDYCOMSRF02][%SCAMGATE3][%SCAMMPACE][%SCAMRICO][%SCAMSPARTICUS][%SCAMTOGA2][%SCAMTWP06][%SCAMCAMFRC]" >CAM cam6 physics:</desc>
<desc atm="CAM50[%CCTS1][%CLB][%PORT][%RCO2][%MAM7][%SCAM][%SDYN][%WCSC][%WCTS][%GEOSCHEM][%SCAMARM95][%SCAMARM97][%SCAMATEX][%SCAMBOMEX][%SCAMCGILSS11][%SCAMCGILSS12][%SCAMCGILSS6][%SCAMDYCOMSRF01][%SCAMDYCOMSRF02][%SCAMGATE3][%SCAMMPACE][%SCAMRICO][%SCAMSPARTICUS][%SCAMTOGA2][%SCAMTWP06][%SCAMCAMFRC]" >CAM cam5 physics:</desc>
<desc atm="CAM40[%PORT][%RCO2][%SCAM][%SDYN][%TMOZ][%WX][%WXIE][%WXIED][%WCCM][%WCMD][%GEOSCHEM][%SCAMARM95][%SCAMARM97][%SCAMATEX][%SCAMBOMEX][%SCAMCGILSS11][%SCAMCGILSS12][%SCAMCGILSS6][%SCAMDYCOMSRF01][%SCAMDYCOMSRF02][%SCAMGATE3][%SCAMMPACE][%SCAMRICO][%SCAMSPARTICUS][%SCAMTOGA2][%SCAMTWP06][%SCAMCAMFRC]" >CAM cam4 physics:</desc>
<desc atm="CAM50[%CCTS1][%CLB][%PORT][%RCO2][%MAM7][%SCAM][%SDYN][%WCSC][%WCTS][%SCAMARM95][%SCAMARM97][%SCAMATEX][%SCAMBOMEX][%SCAMCGILSS11][%SCAMCGILSS12][%SCAMCGILSS6][%SCAMDYCOMSRF01][%SCAMDYCOMSRF02][%SCAMGATE3][%SCAMMPACE][%SCAMRICO][%SCAMSPARTICUS][%SCAMTOGA2][%SCAMTWP06][%SCAMCAMFRC]" >CAM cam5 physics:</desc>
<desc atm="CAM40[%PORT][%RCO2][%SCAM][%SDYN][%TMOZ][%WX][%WXIE][%WXIED][%WCCM][%WCMD][%SCAMARM95][%SCAMARM97][%SCAMATEX][%SCAMBOMEX][%SCAMCGILSS11][%SCAMCGILSS12][%SCAMCGILSS6][%SCAMDYCOMSRF01][%SCAMDYCOMSRF02][%SCAMGATE3][%SCAMMPACE][%SCAMRICO][%SCAMSPARTICUS][%SCAMTOGA2][%SCAMTWP06][%SCAMCAMFRC]" >CAM cam4 physics:</desc>
<desc atm="CAM[%ADIAB][%DABIP04][%TJ16][%GRAYRAD][%HS94][%KESSLER][%RCO2][%SPCAMS][%SPCAMCLBS][%SPCAMM][%SPCAMCLBM]" >CAM simplified and non-versioned physics :</desc>

<!--
Expand Down
38 changes: 18 additions & 20 deletions cime_config/config_compsets.xml
Original file line number Diff line number Diff line change
Expand Up @@ -413,6 +413,10 @@
<alias>FC2000climo_HCO</alias>
<lname>2000_CAM60%CCTS1%HEMCO_CLM50%SP_CICE%PRES_DOCN%DOM_MOSART_SGLC_SWAV</lname>
</compset>
<compset>
<alias>FC2000climo_GC</alias>
<lname>2000_CAM60%GEOSCHEM%HEMCO_CLM50%SP_CICE%PRES_DOCN%DOM_MOSART_SGLC_SWAV</lname>
</compset>

<compset>
<alias>FC2010climo</alias>
Expand All @@ -422,11 +426,20 @@
<alias>FC2010climo_HCO</alias>
<lname>2010_CAM60%CCTS1%HEMCO_CLM50%SP_CICE%PRES_DOCN%DOM_MOSART_SGLC_SWAV</lname>
</compset>
<compset>
<alias>FC2010climo_GC</alias>
<lname>2010_CAM60%GEOSCHEM%HEMCO_CLM50%SP_CICE%PRES_DOCN%DOM_MOSART_SGLC_SWAV</lname>
</compset>

<compset>
<alias>FCHIST</alias>
<lname>HIST_CAM60%CCTS1_CLM50%SP_CICE%PRES_DOCN%DOM_MOSART_SGLC_SWAV</lname>
</compset>
<compset>
<alias>FCHIST_GC</alias>
<lname>HIST_CAM60%GEOSCHEM%HEMCO_CLM50%SP_CICE%PRES_DOCN%DOM_MOSART_CISM2%NOEVOLVE_SWAV</lname>
</compset>

<compset>
<alias>FCLTHIST</alias>
<lname>HIST_CAM70%LT%CCTS1_CLM60%SP_CICE%PRES_DOCN%DOM_MOSART_SGLC_SWAV</lname>
Expand Down Expand Up @@ -456,6 +469,11 @@
<alias>FCnudged</alias>
<lname>HIST_CAM60%CCTS1%NUDG_CLM50%SP_CICE%PRES_DOCN%DOM_MOSART_SGLC_SWAV</lname>
</compset>
<compset>
<alias>FCnudged_GC</alias>
<lname>HIST_CAM60%GEOSCHEM%NUDG%HEMCO_CLM50%SP_CICE%PRES_DOCN%DOM_MOSART_SGLC_SWAV</lname>
</compset>

<compset>
<alias>FCts2nudged</alias>
<lname>HIST_CAM60%CCTS2%NUDG_CLM50%SP_CICE%PRES_DOCN%DOM_MOSART_SGLC_SWAV</lname>
Expand Down Expand Up @@ -644,26 +662,6 @@
<lname>HIST_CAM60%WXIED%SDYN_CLM50%SP_CICE%PRES_DOCN%DOM_MOSART_SGLC_SWAV</lname>
</compset>

<compset>
<alias>FC2000climo_GC</alias>
<lname>2000_CAM60%GEOSCHEM%HEMCO_CLM50%SP_CICE%PRES_DOCN%DOM_MOSART_CISM2%NOEVOLVE_SWAV</lname>
</compset>

<compset>
<alias>FC2010climo_GC</alias>
<lname>2010_CAM60%GEOSCHEM%HEMCO_CLM50%SP_CICE%PRES_DOCN%DOM_MOSART_CISM2%NOEVOLVE_SWAV</lname>
</compset>

<compset>
<alias>FCHIST_GC</alias>
<lname>HIST_CAM60%GEOSCHEM%HEMCO_CLM50%SP_CICE%PRES_DOCN%DOM_MOSART_CISM2%NOEVOLVE_SWAV</lname>
</compset>

<compset>
<alias>FCnudged_GC</alias>
<lname>HIST_CAM60%GEOSCHEM%HEMCO%NUDG_CLM50%SP_CICE%PRES_DOCN%DOM_MOSART_SGLC_SWAV</lname>
</compset>

<!-- ENTRIES -->

<entries>
Expand Down
Loading

0 comments on commit 6901eb0

Please sign in to comment.