-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This PR adds diagnostics to ClimaLand, as a new module in /src. This module is built on ClimaDiagnostics.jl, which is also used by ClimaAtmos. It contains default diagnostics methods for different ClimaLand models (for now, BucketModel and SoilCanopyModel), those diagnostics contains metadata such as where diagnostics variables are stored in those models, what is there names (short, long, standard) and physical units, with additional comments. It creates a Dict of those variables, and also default Scheduling methods, such as hourly average or monthly maximum. Users can define their own diagnostic variables or scheduling, and developers can add defaults. More information is available in the documentation.
- Loading branch information
1 parent
4bc5337
commit e46d4c9
Showing
31 changed files
with
2,289 additions
and
167 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
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 |
---|---|---|
@@ -1,9 +1,9 @@ | ||
[era5_land_forcing_data2021] | ||
git-tree-sha1 = "ec424296df6b60cfe273ac8f981701fbbed0bd8a" | ||
|
||
[soil_params_Gupta2020_2022] | ||
git-tree-sha1 = "8e28b4274b10020b6cdd54b8e7585221379d9d33" | ||
|
||
[[soil_params_Gupta2020_2022.download]] | ||
sha256 = "97dcf1158cba03b1fd397262bdfaf85a523f57038c337bcce163e32664d3616b" | ||
url = "https://caltech.box.com/shared/static/f2y23qx0lggjskftzgh7ht7fsbh36gmm.gz" | ||
|
||
[era5_land_forcing_data2021] | ||
git-tree-sha1 = "ec424296df6b60cfe273ac8f981701fbbed0bd8a" |
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,5 @@ | ||
diagnostics = [ | ||
"Available diagnostics" => "diagnostics/available_diagnostics.md", | ||
"For developers" => "diagnostics/developers_diagnostics.md", | ||
"For users" => "diagnostics/users_diagnostics.md", | ||
] |
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,6 @@ | ||
# Available diagnostic variables | ||
|
||
Autogenerate table of available diagnostics: | ||
```@example | ||
include("make_diagnostic_table.jl") | ||
``` |
Oops, something went wrong.