-
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.
Add calibration framework, perfectmodel experiment
- Loading branch information
1 parent
e1aa08c
commit a1f2c24
Showing
20 changed files
with
3,501 additions
and
1 deletion.
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,31 @@ | ||
name: Calibration | ||
on: | ||
push: | ||
tags: '*' | ||
pull_request: | ||
merge_group: | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
# Needed to allow julia-actions/cache to delete old caches that it has created | ||
permissions: | ||
actions: write | ||
contents: read | ||
|
||
jobs: | ||
test: | ||
name: ClimaCalibrate E2E Test | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 30 | ||
steps: | ||
- uses: julia-actions/cache@v2 | ||
- uses: julia-actions/julia-buildpkg@v1 | ||
- uses: actions/checkout@v4 | ||
- uses: julia-actions/setup-julia@v2 | ||
with: | ||
version: '1.10' | ||
- run: | | ||
julia --project=calibration/test -e 'using Pkg; Pkg.develop(;path="."); Pkg.instantiate(;verbose=true)' | ||
julia --project=calibration/test calibration/test/e2e_test.jl |
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,23 @@ | ||
# ClimaAtmos Calibration Experiments | ||
|
||
This directory contains the model interface (`model_interface.jl`) for ClimaCalibrate and folders (within `experiments/`) for reproducing calibration experiments. | ||
|
||
## Current Experiments | ||
|
||
### sphere_held_suarez_rhoe_equilmoist | ||
|
||
A perfect-model calibration, using ClimaAtmos v0.24.0. | ||
|
||
- Configuration: equilmoist, 0-moment microphysics scheme, spherical with Held-Suarez forcing. | ||
- Observational data: zonal and 60-day time average air temperature at 242m altitude. Provided by [ClimaArtifacts](https://github.com/CliMA/ClimaArtifacts/tree/main/atmos_held_suarez_obs). | ||
- Parameter being calibrated: `equator_pole_temperature_gradient_wet` | ||
|
||
For more details, see the experiment directory. | ||
|
||
To reproduce the results, on the Caltech central cluster run | ||
|
||
```sbatch calibration/experiments/sphere_held_suarez_rhoe_equilmoist/pipeline.sbatch``` | ||
|
||
## New Experiments | ||
|
||
To set up your own experiment, please follow the [setup guide](https://clima.github.io/ClimaCalibrate.jl/dev/atmos_setup_guide/). |
6 changes: 6 additions & 0 deletions
6
calibration/experiments/sphere_held_suarez_rhoe_equilmoist/Artifacts.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
[atmos_held_suarez_obs] | ||
git-tree-sha1 = "d93ff2958e12d6bba6e8343bfa73554390df52e4" | ||
|
||
[[atmos_held_suarez_obs.download]] | ||
sha256 = "f5d63df2bab849632bd2fcd5a4e3165465d1898e1a5fbee6e5fe07f5b3e57fc3" | ||
url = "https://caltech.box.com/shared/static/sbn6afsgn2xzxi5n0ffs928otstshjvi.gz" |
Oops, something went wrong.