-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add internal experimental clima parameters
- Loading branch information
1 parent
7ed6136
commit 617a99f
Showing
7 changed files
with
35 additions
and
7 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 |
---|---|---|
@@ -1,2 +1,9 @@ | ||
# TurbulenceConvection.jl | ||
|
||
```@meta | ||
CurrentModule = TurbulenceConvection | ||
``` | ||
|
||
```@docs | ||
TurbulenceConvection.ClimaParams | ||
``` |
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,21 @@ | ||
""" | ||
ClimaParams | ||
This is a module for staging experimental | ||
clima parameters-- that we are unsure will | ||
be used in the final model. Once they are | ||
no longer experimental, they should be moved | ||
to CLIMAParameters.jl. | ||
TODO: move non-experimental parameters to CLIMAParameters | ||
""" | ||
module ClimaParams | ||
|
||
import CLIMAParameters | ||
const CP = CLIMAParameters | ||
const APS = CP.AbstractEarthParameterSet | ||
|
||
""" divergence factor for bubble case (zero otherwise) """ | ||
entrainment_massflux_div_factor(ps::APS) = ps.nt.c_div | ||
|
||
end |
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