-
Notifications
You must be signed in to change notification settings - Fork 727
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
Revert w_crit_cfl back to 1.0 (from temporary 1.2) #1510
Merged
Merged
Conversation
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
modified: Registry/Registry.EM_COMMON
@weiwangncar @louiswicker |
going to have to pull an all-nighter on this one.
… On May 10, 2021, at 10:52 AM, Dave Gill ***@***.***> wrote:
@weiwangncar <https://github.com/weiwangncar> @louiswicker <https://github.com/louiswicker>
Here is a massive mod. I understand it will take a few days to review this proposed change.
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub <#1510 (comment)>, or unsubscribe <https://github.com/notifications/unsubscribe-auth/AADUKPSAS7GV3HEVKEQBA53TM76KZANCNFSM44RRBSZA>.
----------------------------------------------------------------------------
| Dr. Louis J. Wicker
| NSSL/FRDD Rm 3336
| National Weather Center
| 120 David L. Boren Boulevard, Norman, OK 73072
|
| E-mail: ***@***.*** ***@***.***>
| HTTP: www.nssl.noaa.gov/~lwicker <http://www.nssl.noaa.gov/~lwicker>
| Phone: (405) 325-6340
| Fax: (405) 325-2316
|
I "Yet all is not lost," Francis said. "Human beings, while
| capable of the worst, are also capable of rising above
| themselves, choosing again what is good, and making
| a new start, despite their mental and social conditioning."
|
| Pope Francis
----------------------------------------------------------------------------
|
| "The contents of this message are mine personally and
| do not reflect any position of the Government or NOAA."
|
----------------------------------------------------------------------------
|
@weiwangncar |
weiwangncar
approved these changes
May 10, 2021
jenkins
|
vlakshmanan-scala
pushed a commit
to scala-computing/WRF
that referenced
this pull request
Apr 4, 2024
TYPE: bug fix KEYWORDS: IEVA, cfl SOURCE: internal DESCRIPTION OF CHANGES: This is a clean-up PR to 4412521 wrf-model#1373 "Implicit Explicit Vertical Advection (IEVA)". We are resetting the default critical value to activate the w_damping option to the previous setting. Problem: The new namelist option `w_crit_cfl` replaces `w_beta`, where `w_beta` used to be set in module_model_constants.F and had a value of 1.0. Before this PR, the default value of `w_crit_cfl` was set to 1.2 in the Registry. If one didn't use the new namelist option to manually reset the value of `w_crit_cfl` to 1., that meant that w_damping would behave differently from previous releases. Solution: 1. With consultation with the developer, the value for `w_crit_cfl` is now set to 1.0 in the Registry file. This gives similar and expected behavior for when w_damping kicks in. 2. Also, a bit of column aligning in the neighborhood of this change was done to make the Registry a bit more tidy. "Try and leave this world a little better than you found it.", Robert Stephenson Smyth Baden-Powell. LIST OF MODIFIED FILES: modified: Registry/Registry.EM_COMMON TESTS CONDUCTED: 1. There are no problems to test, just resetting the critical value for activating w_damping (from 1.2 to 1.0). 2. Let us all hope that Jenkins tests are all PASS.
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.
TYPE: bug fix
KEYWORDS: IEVA, cfl
SOURCE: internal
DESCRIPTION OF CHANGES:
This is a clean-up PR to 4412521 #1373 "Implicit Explicit Vertical Advection (IEVA)". We are resetting the default critical value to activate the w_damping option to the previous setting.
Problem:
The new namelist option
w_crit_cfl
replacesw_beta
, wherew_beta
used to be set in module_model_constants.F and had a value of 1.0. Before this PR, the default value ofw_crit_cfl
was set to 1.2 in the Registry. If one didn't use the new namelist option to manually reset the value ofw_crit_cfl
to 1., that meant that w_damping would behavedifferently from previous releases.
Solution:
w_crit_cfl
is now set to 1.0 in the Registry file. This gives similar and expected behavior for when w_damping kicks in.LIST OF MODIFIED FILES:
modified: Registry/Registry.EM_COMMON
TESTS CONDUCTED: