Skip to content

Commit

Permalink
add dyamond and amip configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
szy21 committed Sep 18, 2023
1 parent df65d3b commit bbff3d5
Show file tree
Hide file tree
Showing 5 changed files with 95 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .buildkite/longruns/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -222,3 +222,35 @@ steps:
slurm_time: 24:00:00
env:
JOB_NAME: "longrun_compressible_edmf_trmm"

- group: "DYAMOND"

steps:

- label: ":computer: aquaplanet dyamond"
command:
- srun julia --project=examples examples/hybrid/driver.jl --config_file $CONFIG_PATH/$$JOB_NAME.yml
- julia --color=yes --project=examples post_processing/remap/remap_pipeline.jl --data_dir $$JOB_NAME --out_dir $$JOB_NAME
artifact_paths: "$$JOB_NAME/*"
agents:
slurm_ntasks: 64
slurm_mem_per_cpu: 32GB
slurm_time: 24:00:00
env:
JOB_NAME: "longrun_aquaplanet_dyamond"

- group: "AMIP"

steps:

- label: ":computer: aquaplanet amip"
command:
- srun julia --project=examples examples/hybrid/driver.jl --config_file $CONFIG_PATH/$$JOB_NAME.yml
- julia --color=yes --project=examples post_processing/remap/remap_pipeline.jl --data_dir $$JOB_NAME --out_dir $$JOB_NAME
artifact_paths: "$$JOB_NAME/*"
agents:
slurm_ntasks: 64
slurm_mem_per_cpu: 16GB
slurm_time: 24:00:00
env:
JOB_NAME: "longrun_aquaplanet_amip"
25 changes: 25 additions & 0 deletions config/longrun_configs/longrun_aquaplanet_amip.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
h_elem: 16
z_max: 55000.0
z_elem: 63
dz_bottom: 30.0
dz_top: 3000.0
kappa_4: 1e16
moist: "equil"
precip_model: "0M"
rad: "allskywithclear"
idealized_insolation: false
dt_rad: "1hours"
surface_setup: "DefaultMoninObukhov"
turbconv: "diagnostic_edmfx"
prognostic_tke: true
edmfx_upwinding: "first_order"
edmfx_entr_detr: true
edmfx_nh_pressure: true
edmfx_sgs_flux: true
rayleigh_sponge: true
dt_save_to_disk: "3hours"
dt: "10secs"
t_end: "1days"
FLOAT_TYPE: "Float64"
job_id: "longrun_aquaplanet_amip"
toml: [toml/longrun_aquaplanet_amip.toml]
20 changes: 20 additions & 0 deletions config/longrun_configs/longrun_aquaplanet_dyamond.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
h_elem: 60
z_max: 55000.0
z_elem: 63
dz_bottom: 30.0
dz_top: 3000.0
kappa_4: 1e14
moist: "equil"
precip_model: "0M"
rad: "allskywithclear"
idealized_insolation: false
dt_rad: "1hours"
vert_diff: "true"
surface_setup: "DefaultMoninObukhov"
rayleigh_sponge: true
dt_save_to_disk: "3hours"
dt: "50secs"
t_end: "1days"
FLOAT_TYPE: "Float64"
job_id: "longrun_aquaplanet_dyamond"
toml: [toml/longrun_aquaplanet_dyamond.toml]
9 changes: 9 additions & 0 deletions toml/longrun_aquaplanet_amip.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
[alpha_rayleigh_w]
alias = "alpha_rayleigh_w"
value = 1.0
type = "float"

[zd_rayleigh]
alias = "zd_rayleigh"
value = 35000.0
type = "float"
9 changes: 9 additions & 0 deletions toml/longrun_aquaplanet_dyamond.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
[alpha_rayleigh_w]
alias = "alpha_rayleigh_w"
value = 1.0
type = "float"

[zd_rayleigh]
alias = "zd_rayleigh"
value = 35000.0
type = "float"

0 comments on commit bbff3d5

Please sign in to comment.