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

Added alpha_fd coefficient for Beljaars TOFD in GSL drag #62

Merged
merged 1 commit into from
Aug 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions INFO
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
07-31-24
========
Added alpha_fd coefficient for Beljaars TOFD in GSL drag

04-15-24
========
temporary fix for Rocky 8
Expand Down
1 change: 1 addition & 0 deletions parm/config/gfs/config.fcst
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,7 @@ if (( gwd_opt == 2 )); then
export do_gsl_drag_ss=".true."
export do_gsl_drag_tofd=".true."
export do_ugwp_v1_orog_only=".false."
export alpha_fd=35.0
launch_level=$(echo "${LEVS}/2.35" |bc)
export launch_level
if [[ ${do_gsl_drag_ls_bl} == ".true." ]]; then
Expand Down
2 changes: 1 addition & 1 deletion sorc/ufs_model.fd
2 changes: 2 additions & 0 deletions ush/parsing_namelists_FV3.sh
Original file line number Diff line number Diff line change
Expand Up @@ -314,6 +314,7 @@ EOF
do_gsl_drag_ss = ${do_gsl_drag_ss:-".true."}
do_gsl_drag_tofd = ${do_gsl_drag_tofd:-".true."}
do_ugwp_v1_orog_only = ${do_ugwp_v1_orog_only:-".false."}
alpha_fd = ${alpha_fd:-"12.0"}
min_lakeice = ${min_lakeice:-"0.15"}
min_seaice = ${min_seaice:-"0.15"}
use_cice_alb = ${use_cice_alb:-".false."}
Expand Down Expand Up @@ -349,6 +350,7 @@ EOF
do_gsl_drag_ss = ${do_gsl_drag_ss:-".true."}
do_gsl_drag_tofd = ${do_gsl_drag_tofd:-".true."}
do_ugwp_v1_orog_only = ${do_ugwp_v1_orog_only:-".false."}
alpha_fd = ${alpha_fd:-"12.0"}
min_lakeice = ${min_lakeice:-"0.15"}
min_seaice = ${min_seaice:-"0.15"}
use_cice_alb = ${use_cice_alb:-".false."}
Expand Down
Loading