forked from ufs-community/ufs-weather-model
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add ATM FBH coupling test to rt.conf
* new test cpld_regional_atm_fbh * new ufs.configure template cpld_atm_fbh * new namelist.fire template (fire_behavior config) * new model_configure template for fire * new input.nml for regional fire * new diag_table, field_table, data_table for fire * new input configure script for regional_fire_run
- Loading branch information
1 parent
78cf495
commit beef326
Showing
12 changed files
with
1,085 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
rm -rf INPUT RESTART | ||
mkdir INPUT RESTART | ||
|
||
rsync -arv @[INPUTDATA_ROOT]/FIRE_BEHAVIOR_input_data/@[FIRE_NAME]/. . | ||
rsync -arv @[INPUTDATA_ROOT]/FV3_fire_input_data/@[FIRE_NAME]/. . | ||
|
||
rsync -arv @[INPUTDATA_ROOT]/FV3_regional_input_data/. . | ||
rsync -arv @[INPUTDATA_ROOT]/FV3_fix . | ||
ln -sf FV3_fix/* . | ||
ln -sf FV3_fix/fix_co2_proj/* . | ||
|
||
touch data_table |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
# added by FRE: sphum must be present in atmos | ||
# specific humidity for moist runs | ||
"TRACER", "atmos_mod", "sphum" | ||
"longname", "specific humidity" | ||
"units", "kg/kg" | ||
"profile_type", "fixed", "surface_value=1.e30" / | ||
# prognostic cloud water mixing ratio | ||
"TRACER", "atmos_mod", "liq_wat" | ||
"longname", "cloud water mixing ratio" | ||
"units", "kg/kg" | ||
"profile_type", "fixed", "surface_value=1.e30" / | ||
# prognostic ice water mixing ratio | ||
"TRACER", "atmos_mod", "ice_wat" | ||
"longname", "cloud ice mixing ratio" | ||
"units", "kg/kg" | ||
"profile_type", "fixed", "surface_value=1.e30" / | ||
# prognostic rain water mixing ratio | ||
"TRACER", "atmos_mod", "rainwat" | ||
"longname", "rain water mixing ratio" | ||
"units", "kg/kg" | ||
"profile_type", "fixed", "surface_value=1.e30" / | ||
# prognostic snow water mixing ratio | ||
"TRACER", "atmos_mod", "snowwat" | ||
"longname", "snow water mixing ratio" | ||
"units", "kg/kg" | ||
"profile_type", "fixed", "surface_value=1.e30" / | ||
# prognostic graupel mixing ratio | ||
"TRACER", "atmos_mod", "graupel" | ||
"longname", "graupel mixing ratio" | ||
"units", "kg/kg" | ||
"profile_type", "fixed", "surface_value=1.e30" / | ||
# prognostic cloud water number concentration | ||
"TRACER", "atmos_mod", "water_nc" | ||
"longname", "cloud liquid water number concentration" | ||
"units", "/kg" | ||
"profile_type", "fixed", "surface_value=0.0" / | ||
# prognostic cloud ice number concentration | ||
"TRACER", "atmos_mod", "ice_nc" | ||
"longname", "cloud ice water number concentration" | ||
"units", "/kg" | ||
"profile_type", "fixed", "surface_value=0.0" / | ||
# prognostic rain number concentration | ||
"TRACER", "atmos_mod", "rain_nc" | ||
"longname", "rain number concentration" | ||
"units", "/kg" | ||
"profile_type", "fixed", "surface_value=0.0" / | ||
# prognostic ozone mixing ratio tracer | ||
"TRACER", "atmos_mod", "o3mr" | ||
"longname", "ozone mixing ratio" | ||
"units", "kg/kg" | ||
"profile_type", "fixed", "surface_value=1.e30" / | ||
# water- and ice-friendly aerosols (Thompson) | ||
"TRACER", "atmos_mod", "liq_aero" | ||
"longname", "water-friendly aerosol number concentration" | ||
"units", "/kg" | ||
"profile_type", "fixed", "surface_value=0.0" / | ||
"TRACER", "atmos_mod", "ice_aero" | ||
"longname", "ice-friendly aerosol number concentration" | ||
"units", "/kg" | ||
"profile_type", "fixed", "surface_value=0.0" / | ||
# prognostic subgrid scale turbulent kinetic energy | ||
"TRACER", "atmos_mod", "sgs_tke" | ||
"longname", "subgrid scale turbulent kinetic energy" | ||
"units", "m2/s2" | ||
"profile_type", "fixed", "surface_value=0.0" / | ||
# smoke tracer for UFS_FIRE | ||
"TRACER", "atmos_mod", "fsmoke" | ||
"longname", "fire smoke" | ||
"units", "kg/kg" | ||
"profile_type", "fixed", "surface_value=0.0" / |
Oops, something went wrong.