forked from MPAS-Dev/MPAS-Model
-
Notifications
You must be signed in to change notification settings - Fork 23
Prognostic cloud fraction for TEMPO microphysics #146
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
AndersJensen-NOAA
wants to merge
24
commits into
ufs-community:gsl/develop
Choose a base branch
from
AndersJensen-NOAA:feature/sgs
base: gsl/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
24 commits
Select commit
Hold shift + click to select a range
38b48a9
Adds TEMPO cloud fraction control flag and initial variables -- sgs c…
AndersJensen-NOAA aa36d4a
Adds SGS prognostic cloud fraction and water to MPAS interface, micro…
AndersJensen-NOAA a41b88f
Adds cloud fraction module to TEMPO
AndersJensen-NOAA 531dc29
Fix cloud fraction scalar index names
AndersJensen-NOAA c24a709
Intial version of cloud fraction scheme for testing: creates sgs clou…
AndersJensen-NOAA 609d1d3
Cloud fraction module with large-scale evolution and erosion
AndersJensen-NOAA b2b0550
Cloud fraction tuning and addition of in-cloud calculations for qr
AndersJensen-NOAA d44d9f1
Adds qi_sgs, sgs cloud ice
AndersJensen-NOAA ce48a4f
Adds full hookup of sgs cloud water, ice, rain, snow
AndersJensen-NOAA ae12a47
Adds connection between TEMPO cloud fraction and radiation
AndersJensen-NOAA 84e925e
refactored cloud fraction / separate liquid and ice
AndersJensen-NOAA 92beb51
Final refactor
AndersJensen-NOAA b9a19d3
Complete hookup to TEMPO
AndersJensen-NOAA e46f1f2
Addss prognostic cloud fraction to PBL driver
AndersJensen-NOAA 7c6f49f
Pull in gsl/develop
AndersJensen-NOAA d2398f6
Correct pointer to MYNN
AndersJensen-NOAA 8c8f91c
Roll back MYNN to pre-smoke changes
AndersJensen-NOAA 8401b9c
Merge branch 'gsl/develop' into feature/sgs
AndersJensen-NOAA 73a282f
Tuning cloud fraction scheme to reduce clouds and precipitation
AndersJensen-NOAA 5099110
Update pointer to TEMPO with bugfix changes
AndersJensen-NOAA e58c070
Cloud fraction v3 tuning
AndersJensen-NOAA 7850397
Add snow to cloud ice for radiation if significant amount of cloud ice
AndersJensen-NOAA 917c9d5
Update TEMPO pointer
AndersJensen-NOAA 79bc0ef
mods to radiation coupling based on suggestions from Dustin
AndersJensen-NOAA 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
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 |
|---|---|---|
|
|
@@ -424,6 +424,7 @@ | |
| <package name="mp_tempo_in" description="parameterization of TEMPO cloud microphysics."/> | ||
| <package name="tempo_aerosolaware_in" description="variables for TEMPO with aerosol-aware microphysics."/> | ||
| <package name="tempo_hailaware_in" description="variables for TEMPO hail-aware microphysics."/> | ||
| <package name="tempo_cldfra_in" description="variables for TEMPO prognostic cloud fraction microphysics."/> | ||
| <package name="mp_wsm6_in" description="parameterization of WSM6 cloud microphysics."/> | ||
| <package name="mp_nssl2m_in" description="parameterization of NSSL 2-moment microphysics."/> | ||
| <package name="nssl3m_in" description="variables for NSSL 3-moment microphysics."/> | ||
|
|
@@ -2113,6 +2114,14 @@ | |
| <var name="nwfa" array_group="number" units="nb kg^{-1}" | ||
| description="Water-friendly aerosol number concentration" | ||
| packages="mp_thompson_aers_in;tempo_aerosolaware_in"/> | ||
|
|
||
| <var name="qal" array_group="passive" units="" | ||
| description="Prognostic loud liquid fraction" | ||
|
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. loud --> cloud?
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. that is kind of a loud typo |
||
| packages="tempo_cldfra_in"/> | ||
|
|
||
| <var name="qai" array_group="passive" units="" | ||
| description="Prognostic cloud ice fraction" | ||
| packages="tempo_cldfra_in"/> | ||
| </var_array> | ||
| #endif | ||
|
|
||
|
|
@@ -2504,6 +2513,14 @@ | |
| <var name="tend_nwfa" name_in_code="nwfa" array_group="number" units="nb m^{-3} s^{-1}" | ||
| description="Tendency of water-friendly aerosol number concentration multiplied by dry air density divided by d(zeta)/dz" | ||
| packages="mp_thompson_aers_in;tempo_aerosolaware_in"/> | ||
|
|
||
| <var name="tend_qal" name_in_code="qal" array_group="passive" units="" | ||
| description="Tendency of prognostic cloud liquid fraction multiplied by dry air density divided by d(zeta)/dz" | ||
| packages="tempo_cldfra_in"/> | ||
|
|
||
| <var name="tend_qai" name_in_code="qai" array_group="passive" units="" | ||
| description="Tendency of prognostic cloud ice fraction multiplied by dry air density divided by d(zeta)/dz" | ||
| packages="tempo_cldfra_in"/> | ||
| </var_array> | ||
| #endif | ||
| </var_struct> | ||
|
|
@@ -2603,6 +2620,14 @@ | |
| <var name="lbc_nwfa" name_in_code="nwfa" array_group="number" packages="mp_thompson_aers_in;tempo_aerosolaware_in" | ||
| units="m^{-3} s^{-1}" | ||
| description="Lateral boundary tendency of water-friendly aerosol number concentration"/> | ||
|
|
||
| <var name="lbc_qal" name_in_code="qal" array_group="passive" packages="tempo_cldfra_in" | ||
| units="" | ||
| description="Lateral boundary tendency of prognostic cloud liquid fraction"/> | ||
|
|
||
| <var name="lbc_qai" name_in_code="qai" array_group="passive" packages="tempo_cldfra_in" | ||
| units="" | ||
| description="Lateral boundary tendency of prognostic cloud ice fraction"/> | ||
| </var_array> | ||
| </var_struct> | ||
|
|
||
|
|
@@ -2775,7 +2800,10 @@ | |
| units="-" | ||
| description="Logical flag to turn on/off prognostic cloud fraction" | ||
| possible_values=".true. or .false."/> | ||
|
|
||
| <nml_option name="config_tempo_incld" type="logical" default_value="false" in_defaults="false" | ||
| units="-" | ||
| description="Logical flag to turn on/off in-cloud microphysics when config_tempo_cldfra is true" | ||
| possible_values=".true. or .false."/> | ||
| <nml_option name="config_tempo_ml_nc_pbl" type="logical" default_value="false" in_defaults="false" | ||
| units="-" | ||
| description="Logical flag to turn on/off ML prediction of boundary layer cloud number concentrations" | ||
|
|
@@ -2844,7 +2872,7 @@ | |
| <nml_option name="config_radt_cld_scheme" type="character" default_value="suite" in_defaults="false" | ||
| units="-" | ||
| description="configuration for calculation of horizontal cloud fraction" | ||
| possible_values="`suite',`cld_fraction',`cld_incidence',`cld_fraction_thompson',`cld_fraction_mynn'"/> | ||
| possible_values="`suite',`cld_fraction',`cld_incidence',`cld_fraction_thompson',`cld_fraction_mynn',`cld_tempo'"/> | ||
|
|
||
| <nml_option name="config_radt_lw_scheme" type="character" default_value="suite" in_defaults="false" | ||
| units="-" | ||
|
|
@@ -3168,6 +3196,9 @@ | |
| <var name="precipw" type="real" dimensions="nCells Time" units="kg m^{-2}" | ||
| description="precipitable water"/> | ||
|
|
||
| <var name="precipfrac" type="real" dimensions="nVertLevels nCells Time" units="" | ||
| description="rain/snow precipitation fraction" | ||
| packages="tempo_cldfra_in"/> | ||
|
|
||
| <!-- ================================================================================================== --> | ||
| <!-- ... PARAMETERIZATION OF CONVECTION: --> | ||
|
|
||
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.
Annoying comment: there are two spaces between "fraction" and "microphysics."