Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update omega calculation #2751

Merged
merged 12 commits into from
Aug 23, 2024
1 change: 1 addition & 0 deletions parm/ufs/fv3/diag_table
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@
#"gfs_dyn", "pfhy", "preshy", "fv3_history", "all", .false., "none", 2
#"gfs_dyn", "pfnh", "presnh", "fv3_history", "all", .false., "none", 2
"gfs_dyn", "w", "dzdt", "fv3_history", "all", .false., "none", 2
"gfs_dyn", "omga", "omga", "fv3_history", "all", .false., "none", 2
"gfs_dyn", "ps", "pressfc", "fv3_history", "all", .false., "none", 2
"gfs_dyn", "hs", "hgtsfc", "fv3_history", "all", .false., "none", 2
"gfs_phys", "refl_10cm", "refl_10cm", "fv3_history", "all", .false., "none", 2
Expand Down
1 change: 1 addition & 0 deletions parm/ufs/fv3/diag_table_da
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
#"gfs_dyn", "pfhy", "preshy", "fv3_history", "all", .false., "none", 2
#"gfs_dyn", "pfnh", "presnh", "fv3_history", "all", .false., "none", 2
"gfs_dyn", "w", "dzdt", "fv3_history", "all", .false., "none", 2
"gfs_dyn", "omga", "omga", "fv3_history", "all", .false., "none", 2
"gfs_dyn", "ps", "pressfc", "fv3_history", "all", .false., "none", 2
"gfs_dyn", "hs", "hgtsfc", "fv3_history", "all", .false., "none", 2

Expand Down
1 change: 1 addition & 0 deletions ush/forecast_predet.sh
Original file line number Diff line number Diff line change
Expand Up @@ -274,6 +274,7 @@ FV3_predet(){
phys_hydrostatic=".false." # enable heating in hydrostatic balance in non-hydrostatic simulation
use_hydro_pressure=".false." # use hydrostatic pressure for physics
make_nh=".true." # running in non-hydrostatic mode
pass_full_omega_to_physics_in_non_hydrostatic_mode=".true."
else # hydrostatic options
hydrostatic=".true."
phys_hydrostatic=".false." # ignored when hydrostatic = T
Expand Down
1 change: 1 addition & 0 deletions ush/parsing_namelists_FV3.sh
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,7 @@ cat > input.nml <<EOF
hydrostatic = ${hydrostatic}
phys_hydrostatic = ${phys_hydrostatic}
use_hydro_pressure = ${use_hydro_pressure}
pass_full_omega_to_physics_in_non_hydrostatic_mode = ${pass_full_omega_to_physics_in_non_hydrostatic_mode:-".false."}
beta = 0.
a_imp = 1.
p_fac = 0.1
Expand Down
1 change: 1 addition & 0 deletions ush/parsing_namelists_FV3_nest.sh
Original file line number Diff line number Diff line change
Expand Up @@ -160,6 +160,7 @@ cat > "${nml_file}" <<EOF
hydrostatic = ${hydrostatic}
phys_hydrostatic = ${phys_hydrostatic}
use_hydro_pressure = ${use_hydro_pressure}
pass_full_omega_to_physics_in_non_hydrostatic_mode = ${pass_full_omega_to_physics_in_non_hydrostatic_mode:-".false."}
beta = 0.
a_imp = 1.
p_fac = 0.1
Expand Down
Loading