Skip to content

Commit 9d5c5e7

Browse files
committed
Merge branch 'wlin/v3hr_cmip7_2' (PR #7834)
Make default the customized parameter values and input files for v3HR This includes the tuning parameters and input files that have been specified via user_nl during development. Necessary changes are made in build-namelist to avoid creating new namelist diffs for existing tests. CMIP7 historical volcanic emission files for standard and high resolution and population density file are also updated. The new defaults values for v3HR ocean and seaice will also be used by standalone ocean/seaice case with RRSwISC6to18E3r5 mesh used by coupled v3HR. [BFB] For existing CMIP6 and CMIP7 based cases.
2 parents 2f8b1fb + 3cbe643 commit 9d5c5e7

18 files changed

+302
-227
lines changed

cime_config/config_grids.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6098,8 +6098,8 @@
60986098
</gridmap>
60996099

61006100
<gridmap ocn_grid="RRSwISC6to18E3r5" rof_grid="r025">
6101-
<map name="ROF2OCN_ICE_RMAPNAME">cpl/cpl6/map_r025_to_RRSwISC6to18E3r5.cstmnn.r250e1250_58NS.20240328.nc</map>
6102-
<map name="ROF2OCN_LIQ_RMAPNAME">cpl/cpl6/map_r025_to_RRSwISC6to18E3r5_cstmnn.r50e100.20250325.nc</map>
6101+
<map name="ROF2OCN_ICE_RMAPNAME">cpl/cpl6/map_r025_to_RRSwISC6to18E3r5.cstmnn.r250e1250_EastGreenland_r125.maskFjords.250707.nc</map>
6102+
<map name="ROF2OCN_LIQ_RMAPNAME">cpl/cpl6/map_r025_to_RRSwISC6to18E3r5_r50e100.cstmnn.r025_domain_masked.250702.nc</map>
61036103
</gridmap>
61046104

61056105
<gridmap ocn_grid="ARRM10to60E2r1" rof_grid="r025">

components/eam/bld/build-namelist

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4094,19 +4094,21 @@ if ($chem =~ /_mam/ or $chem =~ /_bam/ or $chem =~ /trop_/) {
40944094
else {
40954095
add_default($nl, 'dust_emis_fact');
40964096
}
4097+
#dstemislimitswitch hardwired to false in the code. Add below only if its value is set
4098+
add_default($nl,'dstemislimitswitch') if (get_default_value('dstemislimitswitch'));
40974099
}
40984100

40994101
# Gravity wave drag settings
41004102
if ($waccm_phys or $cfg->get('nlev') >= 60) {
41014103
# Spectral gravity waves are part of WACCM physics, and also drive the
41024104
# QBO in the high vertical resolution configuration.
4103-
add_default($nl, 'use_gw_oro' , 'val'=>'.true.');
4105+
add_default($nl, 'use_gw_oro');
41044106
add_default($nl, 'use_gw_front' , 'val'=>'.true.');
41054107
add_default($nl, 'use_gw_convect', 'val'=>'.true.');
4106-
add_default($nl, 'use_od_ls', 'val'=>'.false.');
4107-
add_default($nl, 'use_od_bl', 'val'=>'.false.');
4108-
add_default($nl, 'use_od_ss', 'val'=>'.false.');
4109-
add_default($nl, 'use_od_fd', 'val'=>'.false.');
4108+
add_default($nl, 'use_od_ls');
4109+
add_default($nl, 'use_od_bl');
4110+
add_default($nl, 'use_od_ss');
4111+
add_default($nl, 'use_od_fd');
41104112
} else {
41114113
add_default($nl, 'use_gw_oro' , 'val'=>'.true.');
41124114
add_default($nl, 'use_gw_front' , 'val'=>'.false.');
@@ -4239,6 +4241,7 @@ if ($cfg->get('dyn') =~ /se/) {
42394241
foreach my $var (@vars) {
42404242
add_default($nl, $var);
42414243
}
4244+
add_default($nl,'tom_sponge_start') if (get_default_value('tom_sponge_start'));
42424245
}
42434246

42444247
# Defaults for history output

components/eam/bld/namelist_files/namelist_defaults_eam.xml

Lines changed: 27 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@
143143
<bnd_topo hgrid="ne45np4" npg="2">atm/cam/topo/USGS-gtopo30_ne45np4pg2_16xdel2.c20200615.nc</bnd_topo>
144144
<bnd_topo hgrid="ne60np4" npg="0">atm/cam/topo/USGS-gtopo30_ne60np4_16xconsistentSGH.c20140517.nc</bnd_topo>
145145
<bnd_topo hgrid="ne120np4" npg="0">atm/cam/topo/USGS-gtopo30_ne120np4_16xdel2-PFC-consistentSGH.nc</bnd_topo>
146-
<bnd_topo hgrid="ne120np4" npg="2">atm/cam/topo/USGS-gtopo30_ne120np4pg2_x6t_20230404.nc</bnd_topo>
146+
<bnd_topo hgrid="ne120np4" npg="2">atm/cam/topo/USGS-gtopo30_ne120np4pg2_x6t_forOroDrag.c20241019.nc</bnd_topo>
147147
<bnd_topo hgrid="ne240np4" npg="0">atm/cam/topo/USGS-gtopo30_ne240np4_16xconsistentSGH.c20130724.nc</bnd_topo>
148148
<bnd_topo hgrid="ne512np4" npg="0">atm/cam/topo/USGS-gtopo30_ne512np4_16xconsistentSGH_20190212.nc</bnd_topo>
149149
<bnd_topo hgrid="ne1024np4" npg="0">atm/cam/topo/USGS-gtopo30_ne1024np4_16xconsistentSGH_20190528.nc</bnd_topo>
@@ -528,6 +528,7 @@
528528
<effgw_cm>1.D0</effgw_cm>
529529
<frontgfc >1.25D-15</frontgfc>
530530
<frontgfc hgrid="4x5">7.5D-16</frontgfc>
531+
<frontgfc hgrid="ne120np4">2D-14</frontgfc>
531532
<taubgnd >1.5D-3</taubgnd>
532533
<taubgnd hgrid="4x5">1.0D-3</taubgnd>
533534

@@ -945,6 +946,7 @@
945946
<p3_wbf_coeff clubb_sgs="1" microphys="p3"> 0.7D0 </p3_wbf_coeff>
946947
<p3_max_mean_rain_size clubb_sgs="1" microphys="p3"> 0.005D0 </p3_max_mean_rain_size>
947948
<p3_embryonic_rain_size clubb_sgs="1" microphys="p3"> 0.000025D0 </p3_embryonic_rain_size>
949+
<p3_embryonic_rain_size clubb_sgs="1" microphys="p3" hgrid="ne120np4"> 0.000020D0 </p3_embryonic_rain_size>
948950
<do_Cooper_inP3 clubb_sgs="1" microphys="p3"> .false. </do_Cooper_inP3>
949951

950952
<!-- P3 specific namelist variables (for SCREAM version of P3) -->
@@ -975,6 +977,7 @@
975977
<cld_macmic_num_steps microphys="mg2" clubb_sgs="1"> 6 </cld_macmic_num_steps>
976978
<cld_macmic_num_steps microphys="mg2" shoc_sgs="1"> 6 </cld_macmic_num_steps>
977979
<cld_macmic_num_steps microphys="p3" clubb_sgs="1"> 6 </cld_macmic_num_steps>
980+
<cld_macmic_num_steps microphys="p3" clubb_sgs="1" hgrid="ne120np4"> 3 </cld_macmic_num_steps>
978981
<cld_macmic_num_steps microphys="p3" shoc_sgs="1"> 6 </cld_macmic_num_steps>
979982

980983
<microp_uniform>.false.</microp_uniform>
@@ -1052,7 +1055,7 @@
10521055
<dust_emis_fact dyn="fv" phys="cam5" clubb_sgs="1" >0.13D0</dust_emis_fact>
10531056
<!-- Dust emission cap (avoid the model crash by extremely high AOD)-->
10541057
<dstemislimit phys="default"> 1.D-4 </dstemislimit>
1055-
<dstemislimitswitch phys="default"> .false. </dstemislimitswitch>
1058+
<dstemislimitswitch phys="default" hgrid="ne120np4"> .true. </dstemislimitswitch>
10561059

10571060
<!-- Sea Salt tuning option for scavenging mods by PNNL -->
10581061
<ssalt_tuning>.false.</ssalt_tuning>
@@ -1453,7 +1456,8 @@
14531456

14541457
<!-- viscosity -->
14551458

1456-
<tom_sponge_start> 0d0 </tom_sponge_start>
1459+
<!-- default value tom_sponge_start=0 is hardwired in code. Not defined here to avoid nml diff -->
1460+
<tom_sponge_start hgrid="ne120np4"> 3d0 </tom_sponge_start>
14571461
<nu_top> 2.5e5 </nu_top>
14581462
<nu_top dyn_target="theta-l" hgrid="ne0np4_CAx32v1"> 1e4 </nu_top>
14591463
<nu_top dyn_target="theta-l" hgrid="ne120np4"> 1e5 </nu_top>
@@ -1902,23 +1906,39 @@ with se_tstep, dt_remap_factor, dt_tracer_factor set to -1
19021906
<gw_convect_plev_src_wind phys="default">70000</gw_convect_plev_src_wind>
19031907
<effgw_oro phys="default"> 0.375 </effgw_oro>
19041908
<use_gw_energy_fix phys="default"> .true. </use_gw_energy_fix>
1909+
<use_gw_oro>.true.</use_gw_oro>
1910+
<use_od_ls>.false.</use_od_ls>
1911+
<use_od_bl>.false.</use_od_bl>
1912+
<use_od_ss>.false.</use_od_ss>
1913+
<use_od_fd>.false.</use_od_fd>
1914+
<use_gw_oro hgrid="ne120np4">.false.</use_gw_oro>
1915+
<use_od_ls hgrid="ne120np4">.true.</use_od_ls>
1916+
<use_od_bl hgrid="ne120np4">.true.</use_od_bl>
1917+
<use_od_ss hgrid="ne120np4">.true.</use_od_ss>
1918+
<use_od_fd hgrid="ne120np4">.true.</use_od_fd>
19051919
<od_ls_ncleff phys="default"> 3.D0 </od_ls_ncleff>
19061920
<od_bl_ncd phys="default"> 3.D0 </od_bl_ncd>
19071921
<od_ss_sncleff phys="default"> 1.D0 </od_ss_sncleff>
19081922
<clubb_C14 phys="default"> 2.5D0 </clubb_C14>
19091923
<clubb_tk1 phys="default"> 268.15D0 </clubb_tk1>
19101924
<dust_emis_fact phys="default"> 13.8D0 </dust_emis_fact>
1925+
<dust_emis_fact phys="default" hgrid="ne120np4"> 9.2D0 </dust_emis_fact>
19111926
<linoz_psc_T > 198.0D0 </linoz_psc_T>
1927+
<linoz_psc_T hgrid="ne120np4"> 195.0D0 </linoz_psc_T>
19121928
<lght_no_prd_factor > 5.0D0 </lght_no_prd_factor>
1929+
<lght_no_prd_factor hgrid="ne120np4"> 0.325D0 </lght_no_prd_factor>
19131930
<micro_mincdnc phys="default" microphys="mg2"> 10.D6 </micro_mincdnc>
19141931
<nucleate_ice_subgrid phys="default" clubb_sgs="1" microphys="p3" >1.35D0</nucleate_ice_subgrid>
1932+
<nucleate_ice_subgrid phys="default" clubb_sgs="1" microphys="p3" hgrid="ne120np4">1.45D0</nucleate_ice_subgrid>
19151933
<sscav_tuning phys="default" microphys="p3">.false.</sscav_tuning>
19161934
<p3_mincdnc phys="default" microphys="p3"> 20.D6 </p3_mincdnc>
19171935
<p3_wbf_coeff phys="default" clubb_sgs="1" microphys="p3"> 1.0 </p3_wbf_coeff>
19181936
<p3_nc_autocon_expon phys="default" clubb_sgs="1" microphys="p3"> -1.10D0 </p3_nc_autocon_expon>
19191937
<n_so4_monolayers_pcage phys="default" clubb_sgs="1" microphys="p3"> 3.0D0 </n_so4_monolayers_pcage>
19201938
<dp_cut_accum_rename phys="default"> 4.0D-7 </dp_cut_accum_rename>
19211939
<dp_xferall_thresh_accum_rename phys="default"> 4.0D-7 </dp_xferall_thresh_accum_rename>
1940+
<dp_cut_accum_rename phys="default" hgrid="ne120np4"> 1.0D-6 </dp_cut_accum_rename>
1941+
<dp_xferall_thresh_accum_rename phys="default" hgrid="ne120np4"> 1.0D-6 </dp_xferall_thresh_accum_rename>
19221942
<clubb_C1 phys="default"> 2.4 </clubb_C1>
19231943
<clubb_C11 phys="default"> 0.70 </clubb_C11>
19241944
<clubb_C11b phys="default"> 0.20 </clubb_C11b>
@@ -1930,6 +1950,7 @@ with se_tstep, dt_remap_factor, dt_tracer_factor set to -1
19301950
<clubb_C6thlb phys="default"> 7.50 </clubb_C6thlb>
19311951
<clubb_C6thlc phys="default"> 0.50 </clubb_C6thlc>
19321952
<clubb_C8 phys="default"> 5.2 </clubb_C8>
1953+
<clubb_C8 phys="default" hgrid="ne120np4"> 5.0 </clubb_C8>
19331954
<clubb_c_K10 phys="default"> 0.35 </clubb_c_K10>
19341955
<clubb_c_K10h phys="default"> 0.35 </clubb_c_K10h>
19351956
<clubb_gamma_coef phys="default"> 0.12D0 </clubb_gamma_coef>
@@ -1942,6 +1963,7 @@ with se_tstep, dt_remap_factor, dt_tracer_factor set to -1
19421963
<seasalt_emis_scale phys="default" chem="linoz_mam4_resus_mom_soag"> 0.6D0 </seasalt_emis_scale>
19431964
<seasalt_emis_scale phys="default" chem="superfast_mam4_resus_mom_soag"> 0.6D0 </seasalt_emis_scale>
19441965
<seasalt_emis_scale phys="default" chem="chemuci_linozv3_mam5_vbs"> 0.55D0 </seasalt_emis_scale>
1966+
<seasalt_emis_scale phys="default" chem="chemuci_linozv3_mam5_vbs" hgrid="ne120np4"> 0.72D0 </seasalt_emis_scale>
19451967
<dms_emis_scale phys="default"> 2.0D0 </dms_emis_scale>
19461968
<zmconv_trig_dcape phys="default"> .true. </zmconv_trig_dcape>
19471969
<zmconv_trig_ull phys="default"> .true. </zmconv_trig_ull>
@@ -1952,13 +1974,15 @@ with se_tstep, dt_remap_factor, dt_tracer_factor set to -1
19521974
<zmconv_mx_bot_lyr_adj phys="default"> 1 </zmconv_mx_bot_lyr_adj>
19531975
<zmconv_microp phys="default"> .true. </zmconv_microp>
19541976
<zmconv_clos_dyn_adj phys="default"> .true. </zmconv_clos_dyn_adj>
1977+
<zmconv_clos_dyn_adj phys="default" hgrid="ne120np4"> .false. </zmconv_clos_dyn_adj>
19551978
<zmconv_tpert_fix phys="default"> .true. </zmconv_tpert_fix>
19561979
<zmconv_MCSP_heat_coeff phys="default"> 0.3 </zmconv_MCSP_heat_coeff>
19571980
<zmconv_ke phys="default" dyn="se" microphys="p3"> 2.5E-6 </zmconv_ke>
19581981
<prc_exp1 phys="default" microphys="mg2"> -1.40D0 </prc_exp1>
19591982
<micro_mg_accre_enhan_fac phys="default" microphys="mg2"> 1.75D0 </micro_mg_accre_enhan_fac>
19601983
<microp_aero_wsubmin > 0.001D0 </microp_aero_wsubmin>
19611984
<so4_sz_thresh_icenuc phys="default"> 0.080e-6 </so4_sz_thresh_icenuc>
1985+
<so4_sz_thresh_icenuc phys="default" hgrid="ne120np4"> 0.065e-6 </so4_sz_thresh_icenuc>
19621986
<micro_mg_berg_eff_factor phys="default" clubb_sgs="1"> 0.7D0 </micro_mg_berg_eff_factor>
19631987
<cldfrc_dp1 phys="default"> 0.018D0 </cldfrc_dp1>
19641988
<cosp_ncolumns phys="default"> 10 </cosp_ncolumns>

components/eam/bld/namelist_files/use_cases/1850_eam_CMIP7-HR_chemUCI-Linoz-mam5-vbs-1pctCO2.xml

Lines changed: 30 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -30,42 +30,42 @@
3030
<!-- External forcing for BAM or MAM. CMIP7 input4mips data -->
3131
<ext_frc_type >CYCLICAL</ext_frc_type>
3232
<ext_frc_cycle_yr >1850</ext_frc_cycle_yr>
33-
<no2_ext_file >atm/cam/chem/emis/CMIP7_1850_2023_0p5deg/cmip7_NO2_elev_1850-2023_0.5x0.63_c20250506.nc </no2_ext_file>
33+
<no2_ext_file >atm/cam/chem/trop_mozart_aero/emis/CMIP7_0.5deg/cmip7_NO2_elev_1850-2023_0.5x0.63_c20250506.nc </no2_ext_file>
3434
<!-- Use 1850-2014 averaged volcanic SO2 emission for 1850 -->
35-
<so2_ext_file >atm/cam/chem/emis/CMIP7_1850_2023_0p5deg/cmip7_so2_elev_1850_0.5x0.63_c20250721_volc_2.2.1.nc </so2_ext_file>
36-
<soag0_ext_file >atm/cam/chem/emis/CMIP7_1850_2023_0p5deg/cmip7_SOAG0_elev_1850-2023_0.5x0.63_c20250506.nc </soag0_ext_file>
37-
<bc_a4_ext_file >atm/cam/chem/emis/CMIP7_1850_2023_0p5deg/cmip7_mam5_bc_a4_elev_1850-2023_0.5x0.63_c20250506.nc </bc_a4_ext_file>
38-
<mam7_num_a1_ext_file >atm/cam/chem/emis/CMIP7_1850_2023_0p5deg/cmip7_mam5_num_a1_elev_1850-2023_0.5x0.63_c20250506.nc </mam7_num_a1_ext_file>
39-
<num_a2_ext_file >atm/cam/chem/emis/CMIP7_1850_2023_0p5deg/cmip7_mam5_num_a2_elev_1850-2023_0.5x0.63_c20250506.nc </num_a2_ext_file>
40-
<mam7_num_a3_ext_file >atm/cam/chem/emis/CMIP7_1850_2023_0p5deg/cmip7_mam5_num_a4_elev_1850-2023_0.5x0.63_c20250506.nc </mam7_num_a3_ext_file> <!-- This is to set num_a4 emissions -->
41-
<pom_a4_ext_file >atm/cam/chem/emis/CMIP7_1850_2023_0p5deg/cmip7_mam5_pom_a4_elev_1850-2023_0.5x0.63_c20250506.nc </pom_a4_ext_file>
42-
<so4_a1_ext_file >atm/cam/chem/emis/CMIP7_1850_2023_0p5deg/cmip7_mam5_so4_a1_elev_1850-2023_0.5x0.63_c20250506.nc </so4_a1_ext_file>
43-
<so4_a2_ext_file >atm/cam/chem/emis/CMIP7_1850_2023_0p5deg/cmip7_mam5_so4_a2_elev_1850-2023_0.5x0.63_c20250506.nc </so4_a2_ext_file>
35+
<so2_ext_file >atm/cam/chem/trop_mozart_aero/emis/CMIP7_0.5deg/cmip7_so2_elev_1850_0.5x0.63_c20250721_volc_2.2.1.nc </so2_ext_file>
36+
<soag0_ext_file >atm/cam/chem/trop_mozart_aero/emis/CMIP7_0.5deg/cmip7_SOAG0_elev_1850-2023_0.5x0.63_c20250506.nc </soag0_ext_file>
37+
<bc_a4_ext_file >atm/cam/chem/trop_mozart_aero/emis/CMIP7_0.5deg/cmip7_mam5_bc_a4_elev_1850-2023_0.5x0.63_c20250506.nc </bc_a4_ext_file>
38+
<mam7_num_a1_ext_file >atm/cam/chem/trop_mozart_aero/emis/CMIP7_0.5deg/cmip7_mam5_num_a1_elev_1850-2023_0.5x0.63_c20250506.nc </mam7_num_a1_ext_file>
39+
<num_a2_ext_file >atm/cam/chem/trop_mozart_aero/emis/CMIP7_0.5deg/cmip7_mam5_num_a2_elev_1850-2023_0.5x0.63_c20250506.nc </num_a2_ext_file>
40+
<mam7_num_a3_ext_file >atm/cam/chem/trop_mozart_aero/emis/CMIP7_0.5deg/cmip7_mam5_num_a4_elev_1850-2023_0.5x0.63_c20250506.nc </mam7_num_a3_ext_file> <!-- This is to set num_a4 emissions -->
41+
<pom_a4_ext_file >atm/cam/chem/trop_mozart_aero/emis/CMIP7_0.5deg/cmip7_mam5_pom_a4_elev_1850-2023_0.5x0.63_c20250506.nc </pom_a4_ext_file>
42+
<so4_a1_ext_file >atm/cam/chem/trop_mozart_aero/emis/CMIP7_0.5deg/cmip7_mam5_so4_a1_elev_1850-2023_0.5x0.63_c20250506.nc </so4_a1_ext_file>
43+
<so4_a2_ext_file >atm/cam/chem/trop_mozart_aero/emis/CMIP7_0.5deg/cmip7_mam5_so4_a2_elev_1850-2023_0.5x0.63_c20250506.nc </so4_a2_ext_file>
4444

4545
<!-- Surface emissions for chemUCI-Linoz, MAM5, VBS SOA. CMIP7 input4mips data -->
4646
<srf_emis_type >CYCLICAL</srf_emis_type>
4747
<srf_emis_cycle_yr >1850</srf_emis_cycle_yr>
48-
<c10h16_emis_file >atm/cam/chem/emis/CMIP7_1850_2023_0p5deg/cmip7_MTERP_surf_1850-2023_0.5x0.63_c20250506.nc </c10h16_emis_file>
49-
<c2h4_emis_file >atm/cam/chem/emis/CMIP7_1850_2023_0p5deg/cmip7_C2H4_surf_1850-2023_0.5x0.63_c20250506.nc </c2h4_emis_file>
50-
<c2h6_emis_file >atm/cam/chem/emis/CMIP7_1850_2023_0p5deg/cmip7_C2H6_surf_1850-2023_0.5x0.63_c20250506.nc </c2h6_emis_file>
51-
<c3h8_emis_file >atm/cam/chem/emis/CMIP7_1850_2023_0p5deg/cmip7_C3H8_surf_1850-2023_0.5x0.63_c20250506.nc </c3h8_emis_file>
52-
<ch2o_emis_file >atm/cam/chem/emis/CMIP7_1850_2023_0p5deg//cmip7_CH2O_surf_1850-2023_0.5x0.63_c20250506.nc </ch2o_emis_file>
53-
<ch3cho_emis_file >atm/cam/chem/emis/CMIP7_1850_2023_0p5deg/cmip7_CH3CHO_surf_1850-2023_0.5x0.63_c20250506.nc </ch3cho_emis_file>
54-
<ch3coch3_emis_file >atm/cam/chem/emis/CMIP7_1850_2023_0p5deg/cmip7_CH3COCH3_surf_1850-2023_0.5x0.63_c20250506.nc </ch3coch3_emis_file>
55-
<co_emis_file >atm/cam/chem/emis/CMIP7_1850_2023_0p5deg/cmip7_CO_surf_1850-2023_0.5x0.63_c20250506.nc </co_emis_file>
56-
<isop_emis_file >atm/cam/chem/emis/CMIP7_1850_2023_0p5deg/cmip7_ISOP_surf_1850-2023_0.5x0.63_c20250506.nc </isop_emis_file>
57-
<isop_vbs_emis_file >atm/cam/chem/emis/CMIP7_1850_2023_0p5deg/cmip7_ISOP_surf_1850-2023_0.5x0.63_c20250506.nc </isop_vbs_emis_file>
58-
<nox_emis_file >atm/cam/chem/emis/CMIP7_1850_2023_0p5deg/cmip7_NO_surf_1850-2023_0.5x0.63_c20250506.nc </nox_emis_file>
48+
<c10h16_emis_file >atm/cam/chem/trop_mozart_aero/emis/CMIP7_0.5deg/cmip7_MTERP_surf_1850-2023_0.5x0.63_c20250506.nc </c10h16_emis_file>
49+
<c2h4_emis_file >atm/cam/chem/trop_mozart_aero/emis/CMIP7_0.5deg/cmip7_C2H4_surf_1850-2023_0.5x0.63_c20250506.nc </c2h4_emis_file>
50+
<c2h6_emis_file >atm/cam/chem/trop_mozart_aero/emis/CMIP7_0.5deg/cmip7_C2H6_surf_1850-2023_0.5x0.63_c20250506.nc </c2h6_emis_file>
51+
<c3h8_emis_file >atm/cam/chem/trop_mozart_aero/emis/CMIP7_0.5deg/cmip7_C3H8_surf_1850-2023_0.5x0.63_c20250506.nc </c3h8_emis_file>
52+
<ch2o_emis_file >atm/cam/chem/trop_mozart_aero/emis/CMIP7_0.5deg//cmip7_CH2O_surf_1850-2023_0.5x0.63_c20250506.nc </ch2o_emis_file>
53+
<ch3cho_emis_file >atm/cam/chem/trop_mozart_aero/emis/CMIP7_0.5deg/cmip7_CH3CHO_surf_1850-2023_0.5x0.63_c20250506.nc </ch3cho_emis_file>
54+
<ch3coch3_emis_file >atm/cam/chem/trop_mozart_aero/emis/CMIP7_0.5deg/cmip7_CH3COCH3_surf_1850-2023_0.5x0.63_c20250506.nc </ch3coch3_emis_file>
55+
<co_emis_file >atm/cam/chem/trop_mozart_aero/emis/CMIP7_0.5deg/cmip7_CO_surf_1850-2023_0.5x0.63_c20250506.nc </co_emis_file>
56+
<isop_emis_file >atm/cam/chem/trop_mozart_aero/emis/CMIP7_0.5deg/cmip7_ISOP_surf_1850-2023_0.5x0.63_c20250506.nc </isop_emis_file>
57+
<isop_vbs_emis_file >atm/cam/chem/trop_mozart_aero/emis/CMIP7_0.5deg/cmip7_ISOP_surf_1850-2023_0.5x0.63_c20250506.nc </isop_vbs_emis_file>
58+
<nox_emis_file >atm/cam/chem/trop_mozart_aero/emis/CMIP7_0.5deg/cmip7_NO_surf_1850-2023_0.5x0.63_c20250506.nc </nox_emis_file>
5959
<dms_emis_file >atm/cam/chem/trop_mozart_aero/emis/DMSflux.1850.1deg_latlon_conserv.POPmonthlyClimFromACES4BGC_c20160416.nc </dms_emis_file>
60-
<soag0_emis_file >atm/cam/chem/emis/CMIP7_1850_2023_0p5deg/cmip7_SOAG0_surf_1850-2023_0.5x0.63_c20250506.nc </soag0_emis_file>
61-
<so2_emis_file >atm/cam/chem/emis/CMIP7_1850_2023_0p5deg/cmip7_so2_surf_1850-2023_0.5x0.63_c20250506.nc </so2_emis_file>
62-
<bc_a4_emis_file >atm/cam/chem/emis/CMIP7_1850_2023_0p5deg/cmip7_mam5_bc_a4_surf_1850-2023_0.5x0.63_c20250506.nc </bc_a4_emis_file>
63-
<mam7_num_a1_emis_file>atm/cam/chem/emis/CMIP7_1850_2023_0p5deg/cmip7_mam5_num_a1_surf_1850-2023_0.5x0.63_c20250506.nc </mam7_num_a1_emis_file>
64-
<num_a2_emis_file >atm/cam/chem/emis/CMIP7_1850_2023_0p5deg/cmip7_mam5_num_a2_surf_1850-2023_0.5x0.63_c20250506.nc </num_a2_emis_file>
65-
<mam7_num_a3_emis_file>atm/cam/chem/emis/CMIP7_1850_2023_0p5deg/cmip7_mam5_num_a4_surf_1850-2023_0.5x0.63_c20250506.nc </mam7_num_a3_emis_file> <!-- This is to set num_a4 emissions -->
66-
<pom_a4_emis_file >atm/cam/chem/emis/CMIP7_1850_2023_0p5deg/cmip7_mam5_pom_a4_surf_1850-2023_0.5x0.63_c20250506.nc </pom_a4_emis_file>
67-
<so4_a1_emis_file >atm/cam/chem/emis/CMIP7_1850_2023_0p5deg/cmip7_mam5_so4_a1_surf_1850-2023_0.5x0.63_c20250506.nc </so4_a1_emis_file>
68-
<so4_a2_emis_file >atm/cam/chem/emis/CMIP7_1850_2023_0p5deg/cmip7_mam5_so4_a2_surf_1850-2023_0.5x0.63_c20250506.nc </so4_a2_emis_file>
60+
<soag0_emis_file >atm/cam/chem/trop_mozart_aero/emis/CMIP7_0.5deg/cmip7_SOAG0_surf_1850-2023_0.5x0.63_c20250506.nc </soag0_emis_file>
61+
<so2_emis_file >atm/cam/chem/trop_mozart_aero/emis/CMIP7_0.5deg/cmip7_so2_surf_1850-2023_0.5x0.63_c20250506.nc </so2_emis_file>
62+
<bc_a4_emis_file >atm/cam/chem/trop_mozart_aero/emis/CMIP7_0.5deg/cmip7_mam5_bc_a4_surf_1850-2023_0.5x0.63_c20250506.nc </bc_a4_emis_file>
63+
<mam7_num_a1_emis_file>atm/cam/chem/trop_mozart_aero/emis/CMIP7_0.5deg/cmip7_mam5_num_a1_surf_1850-2023_0.5x0.63_c20250506.nc </mam7_num_a1_emis_file>
64+
<num_a2_emis_file >atm/cam/chem/trop_mozart_aero/emis/CMIP7_0.5deg/cmip7_mam5_num_a2_surf_1850-2023_0.5x0.63_c20250506.nc </num_a2_emis_file>
65+
<mam7_num_a3_emis_file>atm/cam/chem/trop_mozart_aero/emis/CMIP7_0.5deg/cmip7_mam5_num_a4_surf_1850-2023_0.5x0.63_c20250506.nc </mam7_num_a3_emis_file> <!-- This is to set num_a4 emissions -->
66+
<pom_a4_emis_file >atm/cam/chem/trop_mozart_aero/emis/CMIP7_0.5deg/cmip7_mam5_pom_a4_surf_1850-2023_0.5x0.63_c20250506.nc </pom_a4_emis_file>
67+
<so4_a1_emis_file >atm/cam/chem/trop_mozart_aero/emis/CMIP7_0.5deg/cmip7_mam5_so4_a1_surf_1850-2023_0.5x0.63_c20250506.nc </so4_a1_emis_file>
68+
<so4_a2_emis_file >atm/cam/chem/trop_mozart_aero/emis/CMIP7_0.5deg/cmip7_mam5_so4_a2_surf_1850-2023_0.5x0.63_c20250506.nc </so4_a2_emis_file>
6969
<e90_emis_file >atm/cam/chem/trop_mozart/ub/emissions_E90_surface_1750-2101_1.9x2.5_c20231222.nc </e90_emis_file>
7070

7171
<airpl_emis_file></airpl_emis_file> <!-- need to be empty, but if specifying empty here, the value would be root of input_data_path -->

0 commit comments

Comments
 (0)