-
Notifications
You must be signed in to change notification settings - Fork 702
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
check eta levels in ideal case #955
Conversation
dyn_em/module_initialize_ideal.F
Outdated
@@ -631,6 +631,19 @@ SUBROUTINE init_domain_rk ( grid & | |||
DO k=1, kde | |||
grid%znw(k) = model_config_rec%eta_levels(k) | |||
ENDDO | |||
!Check the value of the first and last eta level for our domain, |
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.
@dudhia
Jimy,
Would you indent this so that it lines up with the rest of the code.
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.
done
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.
I am OK with this PR now.
Just for conventional look to comments in the module_initialize_ideal.F file.
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.
Approved
Modify description for GWD input fields TYPE: text only KEYWORDS: field description, registry, gwdo SOURCE: internal DESCRIPTION OF CHANGES: Problem: Descriptions for GWDO input fields are not clear, and some is even wrong in the registry. Solution: This PR modifies the descriptions for all 10 GWDO input variables: VAR,CON,OA[1-4],OL[1-4], and made them consistent with MPAS PR[#955](MPAS-Dev/MPAS-Model#955). LIST OF MODIFIED FILES: M Registry/Registry.EM_COMMON TESTS CONDUCTED: 1. Descriptions changed. 2. Are the Jenkins tests all passing? RELEASE NOTE: Description for the 10 orographic gravity wave drag variables (gwd_opt=1 only) are updated.
Modify description for GWD input fields TYPE: text only KEYWORDS: field description, registry, gwdo SOURCE: internal DESCRIPTION OF CHANGES: Problem: Descriptions for GWDO input fields are not clear, and some is even wrong in the registry. Solution: This PR modifies the descriptions for all 10 GWDO input variables: VAR,CON,OA[1-4],OL[1-4], and made them consistent with MPAS PR[wrf-model#955](MPAS-Dev/MPAS-Model#955). LIST OF MODIFIED FILES: M Registry/Registry.EM_COMMON TESTS CONDUCTED: 1. Descriptions changed. 2. Are the Jenkins tests all passing? RELEASE NOTE: Description for the 10 orographic gravity wave drag variables (gwd_opt=1 only) are updated.
TYPE: enhancement
KEYWORDS: ideal, eta
SOURCE: internal
DESCRIPTION OF CHANGES:
CPreviously, no check existed to detect invalid eta levels that a user specified in the
namelist.input
file for an idealized case. A couple loops of code were copied from the file
dyn_em/module_initialize-real.F
, which is used in the real program.LIST OF MODIFIED FILES:
M dyn_em/module_initialize_ideal.F
TESTS CONDUCTED:
RELEASE NOTE:
If a user chooses to explicitly list the eta levels for an idealized case, a check has been added to verify that valid eta levels are supplied for idealized cases in the namelist.input file.