Slight modification in orographic gravity wave drag (OGWD) scheme#972
Merged
Conversation
13 tasks
Collaborator
|
Please update PR description to specify which ccpp-physics PR this PR depends on. Use provided PR template. |
Contributor
Author
@DusanJovic-NOAA Updated, thanks! |
RuiyuSun
approved these changes
Jun 3, 2025
Collaborator
|
@rhaesung ufs-community/ccpp-physics#287 was merged. Please revert .gitmodules and update the ccpp-physics pointer to ufs-community/ccpp-physics@8a5f4f5 |
Contributor
Author
Done! |
jkbk2004
approved these changes
Jun 24, 2025
BrianCurtis-NOAA
approved these changes
Jun 25, 2025
This was referenced Jun 30, 2025
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This modification is from @JongilHan66
Description
The reference height (href) in the OGWD (Orographic Gravity Wave Drag) scheme is a critical parameter that significantly influences the strength of OGWD. Currently, href is defined as the maximum of the maximum subgrid orographic elevation (Omax) and twice the standard deviation of subgrid orography (sigma), i.e.,
href = max(Omax, 2*sigma).
In the proposed modification, this is changed to:
href = max(Omax, 2*sigma, hpbl),
where hpbl is the planetary boundary layer height.
The inclusion of hpbl in determining href is informed by prior studies on the OGWD scheme:
href = hpbl (Kim and Arakawa, 1995)
href = 2* sigma (Kim and Doyle, 2005)
href = max(2*sigma, hpbl) (Hong et al., 2005)
This updated formulation of href not only improves the 500 hPa height anomaly correlation, but also helps to reduce too strong wintertime polar vortex in the upper stratosphere, where hr4a11 is the control run and hr5c01 is same as the control run but with the modified href.
Testing
UFS-RTs on Hera
Dependencies
ufs-community/ccpp-physics#287