-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' of https://github.com/CliMA/CloudMicrophysics.jl …
…into ap/unitlessSolver
- Loading branch information
Showing
21 changed files
with
1,408 additions
and
552 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
Copyright (c) 2022, the California Institute of Technology (Caltech) | ||
|
||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
|
||
http://www.apache.org/licenses/LICENSE-2.0 | ||
|
||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. |
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
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
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
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
## 1-moment scheme | ||
|
||
A scheme that predicts one moment of the particle size distribution (PSD). | ||
Typically it's the 3rd moment of PSD. | ||
The scheme's prognostic variable is the specific humidity (mass fraction) | ||
of water in each category, which is proportional to the 3rd moment of PSD. | ||
|
||
## 2-moment scheme | ||
|
||
A scheme that predicts two moments of the particle size distribution (PSD). | ||
Typically those are the 3rd and the 0th moments of PSD. | ||
The scheme's prognostic variables are the specific humidity (mass fraction) | ||
and number concentration of particles in each category, | ||
which are proportional to the 3rd and 0th moment of (PSD) | ||
|
||
## Aerosol activation scheme | ||
|
||
Aerosol particles serve as condensation nuclei for forming cloud droplets. | ||
An aerosol activation scheme predicts the number concentrations | ||
of newly formed cloud droplets for a given population of aerosol particles. | ||
The scheme is needed when using 2-moment microphysics. | ||
|
||
## Ice nucleation scheme | ||
|
||
Aerosol particles and cloud droplets serve as nuclei for forming ice crystals. | ||
The pathways include water vapor deposition on dust, heterogeneous and | ||
homogeneous freezing of water droplets. | ||
Ice nucleation schemes are needed to predict the number concentrations | ||
of newly formed ice crystals. | ||
The schemes are needed when using 2-moment microphysics scheme. |
Oops, something went wrong.