-
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 pull request #423 from CliMA/aj/p3_remodel
breakup the P3 scheme file
- Loading branch information
Showing
8 changed files
with
812 additions
and
814 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
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,29 @@ | ||
""" | ||
Predicted particle properties scheme P3 for ice. | ||
Implementation of Morrison and Milbrandt 2015 doi: 10.1175/JAS-D-14-0065.1 | ||
Note: Particle size is defined as its maximum length (i.e. max dimesion). | ||
""" | ||
module P3Scheme | ||
|
||
import SpecialFunctions as SF | ||
import QuadGK as QGK | ||
import RootSolvers as RS | ||
import HCubature as HC | ||
|
||
import ClimaParams as CP | ||
import CloudMicrophysics.Parameters as CMP | ||
import CloudMicrophysics.Common as CO | ||
import CloudMicrophysics.TerminalVelocity as TV | ||
|
||
const PSP3 = CMP.ParametersP3 | ||
|
||
export thresholds, distribution_parameter_solver | ||
|
||
include("P3_helpers.jl") | ||
include("P3_particle_properties.jl") | ||
include("P3_size_distribution.jl") | ||
include("P3_terminal_velocity.jl") | ||
include("P3_processes.jl") | ||
|
||
end |
Oops, something went wrong.