-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add in field_table for C48_res test (#56)
- Loading branch information
1 parent
4dbfa3b
commit 254672a
Showing
2 changed files
with
100 additions
and
0 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
# 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" / | ||
"TRACER", "atmos_mod", "rainwat" | ||
"longname", "rain mixing ratio" | ||
"units", "kg/kg" | ||
"profile_type", "fixed", "surface_value=1.e30" / | ||
"TRACER", "atmos_mod", "ice_wat" | ||
"longname", "cloud ice mixing ratio" | ||
"units", "kg/kg" | ||
"profile_type", "fixed", "surface_value=1.e30" / | ||
"TRACER", "atmos_mod", "snowwat" | ||
"longname", "snow mixing ratio" | ||
"units", "kg/kg" | ||
"profile_type", "fixed", "surface_value=1.e30" / | ||
"TRACER", "atmos_mod", "graupel" | ||
"longname", "graupel mixing ratio" | ||
"units", "kg/kg" | ||
"profile_type", "fixed", "surface_value=1.e30" / | ||
# prognostic ozone mixing ratio tracer | ||
"TRACER", "atmos_mod", "o3mr" | ||
"longname", "ozone mixing ratio" | ||
"units", "kg/kg" | ||
"profile_type", "fixed", "surface_value=1.e30" / | ||
# non-prognostic cloud amount | ||
"TRACER", "atmos_mod", "cld_amt" | ||
"longname", "cloud amount" | ||
"units", "1" | ||
"profile_type", "fixed", "surface_value=1.e30" / | ||
"TRACER", "atmos_mod", "sgs_tke" | ||
"longname", "TKE" | ||
"units", "m**2/s**2" | ||
"profile_type", "fixed", "surface_value=100." / |
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,59 @@ | ||
field_table: | ||
- field_type: tracer | ||
modlist: | ||
- model_type: atmos_mod | ||
varlist: | ||
- variable: sphum | ||
longname: specific humidity | ||
units: kg/kg | ||
profile_type: | ||
- value: fixed | ||
surface_value: 1.e30 | ||
- variable: liq_wat | ||
longname: cloud water mixing ratio | ||
units: kg/kg | ||
profile_type: | ||
- value: fixed | ||
surface_value: 1.e30 | ||
- variable: rainwat | ||
longname: rain mixing ratio | ||
units: kg/kg | ||
profile_type: | ||
- value: fixed | ||
surface_value: 1.e30 | ||
- variable: ice_wat | ||
longname: cloud ice mixing ratio | ||
units: kg/kg | ||
profile_type: | ||
- value: fixed | ||
surface_value: 1.e30 | ||
- variable: snowwat | ||
longname: snow mixing ratio | ||
units: kg/kg | ||
profile_type: | ||
- value: fixed | ||
surface_value: 1.e30 | ||
- variable: graupel | ||
longname: graupel mixing ratio | ||
units: kg/kg | ||
profile_type: | ||
- value: fixed | ||
surface_value: 1.e30 | ||
- variable: o3mr | ||
longname: ozone mixing ratio | ||
units: kg/kg | ||
profile_type: | ||
- value: fixed | ||
surface_value: 1.e30 | ||
- variable: cld_amt | ||
longname: cloud amount | ||
units: 1 | ||
profile_type: | ||
- value: fixed | ||
surface_value: 1.e30 | ||
- variable: sgs_tke | ||
longname: TKE | ||
units: m**2/s**2 | ||
profile_type: | ||
- value: fixed | ||
surface_value: 100.0 |