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.
Adopt progsigma "Add prognostic cumulus closure description in saSAS u…
…fs-community#1187" (#1) https://github.com/ufs-community/ufs-weather-model/pull/1187/files modified: FV3 modified: tests/default_vars.sh modified: tests/opnReqTests/dcp.sh modified: tests/parm/control.nml.IN new file: tests/parm/field_table/field_table_gfsv16_progsigma
- Loading branch information
1 parent
9454ef7
commit 02cce26
Showing
5 changed files
with
53 additions
and
3 deletions.
There are no files selected for viewing
Submodule FV3
updated
5 files
+7 −2 | ccpp/data/CCPP_typedefs.F90 | |
+29 −3 | ccpp/data/GFS_typedefs.F90 | |
+45 −2 | ccpp/data/GFS_typedefs.meta | |
+20 −0 | ccpp/driver/GFS_restart.F90 | |
+0 −5 | stochastic_physics/stochastic_physics_wrapper.F90 |
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
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,47 @@ | ||
# 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" / | ||
# 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" / | ||
# prognotsitc sigmab tracer | ||
"TRACER", "atmos_mod", "sigmab" | ||
"longname", "sigma fraction" | ||
"units", "fraction" | ||
"profile_type", "fixed", "surface_value=0.0" / | ||
# non-prognostic cloud amount | ||
"TRACER", "atmos_mod", "cld_amt" | ||
"longname", "cloud amount" | ||
"units", "1" | ||
"profile_type", "fixed", "surface_value=0.0" / |