-
Notifications
You must be signed in to change notification settings - Fork 19
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' into sk/add_distributed_gpu_run
- Loading branch information
Showing
46 changed files
with
2,855 additions
and
100 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
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,6 +1,6 @@ | ||
dt_save_to_disk: "2days" | ||
regression_test: true | ||
initial_condition: "DryBaroclinicWave" | ||
dt: "580secs" | ||
dt: "400secs" | ||
t_end: "10days" | ||
job_id: "sphere_baroclinic_wave_rhoe" |
11 changes: 11 additions & 0 deletions
11
config/model_configs/sphere_baroclinic_wave_rhoe_equilmoist_expvdiff.yml
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,11 @@ | ||
precip_model: "0M" | ||
vert_diff: "true" | ||
z_elem: 20 | ||
dz_bottom: 100 | ||
dt_save_to_disk: "12hours" | ||
initial_condition: "MoistBaroclinicWave" | ||
dt: "40secs" | ||
t_end: "12hours" | ||
job_id: "sphere_baroclinic_wave_rhoe_equilmoist_expvdiff" | ||
moist: "equil" | ||
toml: [toml/sphere_baroclinic_wave_rhoe_equilmoist_expvdiff.toml] |
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
2 changes: 1 addition & 1 deletion
2
...model_configs/sphere_zalesak_upwind_tracer_energy_ssp_baroclinic_wave_rhoe_equilmoist.yml
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,11 @@ | ||
job_id: "flame_perf_diagnostics" | ||
diagnostics: | ||
- short_name: ua | ||
period: 1secs | ||
reduction_time: average | ||
- short_name: va | ||
period: 1secs | ||
reduction_time: max | ||
- short_name: ta | ||
period: 1secs | ||
reduction_time: max |
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,32 @@ | ||
import ClimaAtmos as CA | ||
|
||
# Read all the diagnostics we know how to compute, and print them into a | ||
# markdown table that is later compiled into the docs | ||
|
||
# basename(pwd()) if the code is run from inside the docs folder. If we don't | ||
# have that, we will assume that we are running from the project root. If this | ||
# code is run from anywhere but these two places, mkdocs will fail to find | ||
# availbale_diagnostics.md | ||
prefix = basename(pwd()) == "docs" ? "" : "docs/" | ||
|
||
out_path = "$(prefix)src/available_diagnostics.md" | ||
|
||
open(out_path, "w") do file | ||
|
||
write(file, "# Available diagnostic variables\n\n") | ||
|
||
write( | ||
file, | ||
"| Short name | Long name | Standard name | Units | Comments |\n", | ||
) | ||
write(file, "|---|---|---|---|---|\n") | ||
|
||
for d in values(CA.Diagnostics.ALL_DIAGNOSTICS) | ||
write(file, "| `$(d.short_name)` ") | ||
write(file, "| $(d.long_name) ") | ||
write(file, "| `$(d.standard_name)` ") | ||
write(file, "| $(d.units) ") | ||
write(file, "| $(d.comments)|\n") | ||
end | ||
end | ||
@info "Written $out_path" |
Oops, something went wrong.