-
Notifications
You must be signed in to change notification settings - Fork 405
GWDO2026: Revisions in gravity wave drag scheme (bl_gwdo.F90) #1409
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
base: develop
Are you sure you want to change the base?
Changes from all commits
091b104
7c74580
f51b3cd
18aa12f
fccc7fb
879df95
8b7a88d
5962200
2a95973
0e4db6d
75e7cfb
eb18414
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -521,6 +521,7 @@ | |
| <var name="ol2"/> | ||
| <var name="ol3"/> | ||
| <var name="ol4"/> | ||
| <var name="elvmax"/> | ||
| <var name="soilcomp"/> | ||
| <var name="soilcl1"/> | ||
| <var name="soilcl2"/> | ||
|
|
@@ -2278,7 +2279,7 @@ | |
| <nml_option name="config_gwdo_scheme" type="character" default_value="suite" in_defaults="false" | ||
| units="-" | ||
| description="configuration of gravity wave drag over orography" | ||
| possible_values="`suite',`bl_ysu_gwdo',`bl_ugwp_gwdo',`off'"/> | ||
| possible_values="`suite',`bl_kim_gwdo',`bl_ugwp_gwdo',`off'"/> | ||
|
|
||
| <nml_option name="config_ngw_scheme" type="logical" default_value="false" in_defaults="false" | ||
| units="-" | ||
|
|
@@ -2451,6 +2452,14 @@ | |
| units="s" | ||
| description="Relaxation time to initial values in 1-d OML" | ||
| possible_values="Non-negative real values"/> | ||
| <nml_option name="config_gwdo_factor" type="real" default_value="2.0" in_defaults="false" | ||
| units="-" | ||
| description="Effective grid length ratio in kim_gwdo scheme" | ||
| possible_values="Non-negative real values"/> | ||
| <nml_option name="config_gwdo_nonhyd" type="logical" default_value="true" in_defaults="true" | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Is it okay to set in_defaults="false" so that |
||
| units="-" | ||
| description="Logical index for nonhydrostatic effect in kim_gwdo scheme" | ||
| possible_values="true. or .false."/> | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. For |
||
| </nml_record> | ||
|
|
||
| <var_struct name="diag_physics" time_levs="1"> | ||
|
|
@@ -3782,6 +3791,8 @@ | |
|
|
||
| <var name="ol4" type="real" dimensions="nCells" units="unitless" | ||
| description="effective orographic length for north-westerly flow"/> | ||
| <var name="elvmax" type="real" dimensions="nCells" units="m" | ||
| description="elevation maximum over a grid cell"/> | ||
|
|
||
| <!-- GSL GWDO fields - meso-scale --> | ||
| <var name="var2dls" type="real" dimensions="nCells" units="m" | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -469,7 +469,9 @@ module mpas_atmphys_vars | |
| sina_p !sine of map rotation [-] | ||
|
|
||
| real(kind=RKIND),dimension(:,:),allocatable:: & | ||
| ter_p, &!orographic height [m] | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
| var2d_p, &!orographic variance [m2] | ||
| elvmax_p, &!orographic maximum [m] | ||
| con_p, &!orographic convexity [m2] | ||
| oa1_p, &!orographic direction asymmetry function [-] | ||
| oa2_p, &!orographic direction asymmetry function [-] | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is a private repository rather than the public MMM-physics repository. If possible, I think the branch/tag specified in Externals.cfg should be from https://github.com/NCAR/MMM-physics.git.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@jihyeonjang Since bl_gwdo.F90 in MMM-physics has recently updated, it is now ok to point to that repository. But it may need to update the hash to access the newest code.