forked from MPAS-Dev/MPAS-Model
-
Notifications
You must be signed in to change notification settings - Fork 27
Add prate_max and other related precip variables to MPAS output #151
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
Open
Jeff-Duda
wants to merge
17
commits into
ufs-community:noaa/develop
Choose a base branch
from
Jeff-Duda:prate_max
base: noaa/develop
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
958210a
Add 5 diagnostics variables to output. All are time-maxima (since las…
Jeff-Duda c8e3e3d
Fix to correct 1-/5-/10-minute average prate calculation.
Jeff-Duda 6a09de4
Merge branch 'gsl/develop' into prate_max
Jeff-Duda 2d1b7d4
Fix error in character string length in warning message.
Jeff-Duda fefdcba
Merge branch 'ufs-community:gsl/develop' into prate_max
Jeff-Duda 976a44a
Merge branch 'prate_max' of github.com:Jeff-Duda/MPAS-Model into prat…
Jeff-Duda da0243e
Merge branch 'gsl/develop' into prate_max
clark-evans b2189ad
Requested changes to code to contract loopaple code.
Jeff-Duda 1b132f3
Merge branch 'prate_max' of github.com:Jeff-Duda/MPAS-Model into prat…
Jeff-Duda cb5a1a6
Add IF statements to control when maximum precipitation rate calculat…
Jeff-Duda def3905
Corrected bug for sub-hourly max prate calculation
Jeff-Duda 354d8c7
max_prate code cleanup. Includes removal of pseudo-SPPT temporarily a…
Jeff-Duda e1a7494
Update to prepare for PR of prate_max
Jeff-Duda 6c57ee5
Merge branch 'gsl/develop' into prate_max
clark-evans 961de55
Merge branch 'noaa/develop' into prate_max
dustinswales 17501fc
Correct max composite reflectivity logic for select MP schemes.
Jeff-Duda 3d4a20c
Merge pull request #1 from ufs-community/noaa/develop
Jeff-Duda File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Some comments aren't visible on the classic Files Changed page.
There are no files selected for viewing
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -705,6 +705,7 @@ | |
| <var name="max_hail_diameter_column"/> | ||
| <var name="max_hail_diameter_column_acc"/> | ||
| <var name="refl10cm_max"/> | ||
| <var name="refl10cm_compref_max"/> | ||
| <var name="i_rainnc"/> | ||
| <var name="rainncv"/> | ||
| <var name="rainnc"/> | ||
|
|
@@ -1165,13 +1166,15 @@ | |
| <var name="swupt"/> | ||
| <var name="rainc"/> | ||
| <var name="rainnc"/> | ||
| <var name="prate_max"/> | ||
|
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. fix spacing |
||
| <var name="vcpool"/> | ||
| <var name="refl10cm"/> | ||
| <var name="max_hail_diameter_sfc"/> | ||
| <var name="max_hail_diameter_sfc_acc"/> | ||
| <var name="max_hail_diameter_column"/> | ||
| <var name="max_hail_diameter_column_acc"/> | ||
| <var name="refl10cm_max"/> | ||
| <var name="refl10cm_compref_max"/> | ||
|
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. fix spacing |
||
| <var name="refl10cm_1km"/> | ||
| <var name="refl10cm_1km_max"/> | ||
| <var name="precipw"/> | ||
|
|
@@ -3027,6 +3030,10 @@ | |
| units="s" | ||
| description="Relaxation time to initial values in 1-d OML" | ||
| possible_values="Non-negative real values"/> | ||
|
|
||
| <nml_option name="calc_prate_max" type="logical" default_value="false" in_defaults="false" units="-" | ||
| description="switch for calculating time-maximum precipitation rate for instantaneous, 1-minute, 5-minute, and 10-minute periods" | ||
| possible_values=".true. or .false."/> | ||
| </nml_record> | ||
|
|
||
| <var_struct name="diag_physics" time_levs="1"> | ||
|
|
@@ -3082,6 +3089,10 @@ | |
| description="10 cm maximum radar reflectivity" | ||
| packages="mp_thompson_in;mp_thompson_aers_in;mp_wsm6_in;mp_nssl2m_in;mp_tempo_in"/> | ||
|
|
||
| <var name="refl10cm_compref_max" type="real" dimensions="nCells Time" units="dBZ" | ||
| description="maximum composite 10 cm radar reflectivity since last output time" | ||
| packages="mp_thompson_in;mp_thompson_aers_in;mp_nssl2m_in;mp_tempo_in"/> | ||
|
|
||
| <var name="refl10cm_1km" type="real" dimensions="nCells Time" units="dBZ" | ||
| description="diagnosed 10 cm radar reflectivity at 1 km AGL" | ||
| packages="mp_thompson_in;mp_thompson_aers_in;mp_wsm6_in;mp_nssl2m_in;mp_tempo_in"/> | ||
|
|
@@ -3114,6 +3125,18 @@ | |
| description="accumulated total grid-scale precipitation" | ||
| packages="mp_kessler_in;mp_thompson_in;mp_thompson_aers_in;mp_wsm6_in;mp_nssl2m_in;mp_tempo_in"/> | ||
|
|
||
| <var name="ave_prate_1min" type="real" dimensions="nCells Time" units="mm s^{-1}" | ||
| description="maximum 1-minute precipitation rate since last output time" | ||
| packages="mp_kessler_in;mp_thompson_in;mp_thompson_aers_in;mp_wsm6_in;mp_nssl2m_in;mp_tempo_in"/> | ||
|
|
||
| <var name="ave_prate_5min" type="real" dimensions="nCells Time" units="mm s^{-1}" | ||
| description="maximum 5-minute precipitation rate since last output time" | ||
| packages="mp_kessler_in;mp_thompson_in;mp_thompson_aers_in;mp_wsm6_in;mp_nssl2m_in;mp_tempo_in"/> | ||
|
|
||
| <var name="ave_prate_10min" type="real" dimensions="nCells Time" units="mm s^{-1}" | ||
| description="maximum 10-minute precipitation rate since last output time" | ||
| packages="mp_kessler_in;mp_thompson_in;mp_thompson_aers_in;mp_wsm6_in;mp_nssl2m_in;mp_tempo_in"/> | ||
|
|
||
| <var name="frainnc" type="real" dimensions="nCells Time" units="mm" | ||
| description="accumulated total grid-scale freezing rain" | ||
| packages="mp_tempo_in"/> | ||
|
|
@@ -3126,6 +3149,10 @@ | |
| description="accumulated grid-scale precipitation of graupel" | ||
| packages="mp_thompson_in;mp_thompson_aers_in;mp_wsm6_in;mp_nssl2m_in;mp_tempo_in"/> | ||
|
|
||
| <var name="prate_max" type="real" dimensions="nCells Time" units="mm s^{-1}" | ||
| description="maximum instantaneous precipitation rate since last output time" | ||
| packages="mp_thompson_in;mp_thompson_aers_in;mp_nssl2m_in;mp_tempo_in"/> | ||
|
|
||
| <var name="rainprod" type="real" dimensions="nVertLevels nCells Time" units="s^{-1}" | ||
| description="rain production rate" | ||
| packages="mp_thompson_in;mp_thompson_aers_in;mp_wsm6_in;mp_nssl2m_in;mp_tempo_in"/> | ||
|
|
||
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
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
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
Oops, something went wrong.
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.
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.
fix spacing
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.
@Jeff-Duda could you address this comment from Anders? It won't show up in the terminal, but it does here because of how Github handles tabs vs. spaces. Could you please match whichever mechanism of creating the spacing is used in the lines above?