Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add stretched grid bomex and aquaplanet with prognostic edmf #2362

Merged
merged 1 commit into from
Nov 14, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 18 additions & 6 deletions .buildkite/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -588,8 +588,8 @@ steps:
- label: ":genie: Diagnostic EDMFX aquaplanet with TKE"
command: >
julia --color=yes --project=examples examples/hybrid/driver.jl
--config_file $CONFIG_PATH/diagnostic_edmfx_aquaplanet_tke.yml
artifact_paths: "diagnostic_edmfx_aquaplanet_tke/*"
--config_file $CONFIG_PATH/diagnostic_edmfx_aquaplanet.yml
artifact_paths: "diagnostic_edmfx_aquaplanet/*"
agents:
slurm_mem: 20GB

Expand Down Expand Up @@ -617,7 +617,6 @@ steps:
julia --color=yes --project=examples examples/hybrid/driver.jl
--config_file $CONFIG_PATH/prognostic_edmfx_bomex_fixtke_box.yml
artifact_paths: "prognostic_edmfx_bomex_fixtke_box/*"
soft_fail: true
agents:
slurm_mem: 20GB

Expand All @@ -626,7 +625,14 @@ steps:
julia --color=yes --project=examples examples/hybrid/driver.jl
--config_file $CONFIG_PATH/prognostic_edmfx_bomex_box.yml
artifact_paths: "prognostic_edmfx_bomex_box/*"
soft_fail: true
agents:
slurm_mem: 20GB

- label: ":genie: Prognostic EDMFX Bomex stretched grid in a box"
command: >
julia --color=yes --project=examples examples/hybrid/driver.jl
--config_file $CONFIG_PATH/prognostic_edmfx_bomex_stretched_box.yml
artifact_paths: "prognostic_edmfx_bomex_stretched_box/*"
agents:
slurm_mem: 20GB

Expand All @@ -643,7 +649,6 @@ steps:
julia --color=yes --project=examples examples/hybrid/driver.jl
--config_file $CONFIG_PATH/prognostic_edmfx_rico_column.yml
artifact_paths: "prognostic_edmfx_rico_column/*"
soft_fail: true
agents:
slurm_mem: 20GB

Expand All @@ -652,7 +657,14 @@ steps:
julia --color=yes --project=examples examples/hybrid/driver.jl
--config_file $CONFIG_PATH/prognostic_edmfx_trmm_column.yml
artifact_paths: "prognostic_edmfx_trmm_column/*"
soft_fail: true
agents:
slurm_mem: 20GB

- label: ":genie: Prognostic EDMFX aquaplanet"
command: >
julia --color=yes --project=examples examples/hybrid/driver.jl
--config_file $CONFIG_PATH/prognostic_edmfx_aquaplanet.yml
artifact_paths: "prognostic_edmfx_aquaplanet/*"
agents:
slurm_mem: 20GB

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
job_id: diagnostic_edmfx_aquaplanet_tke
job_id: diagnostic_edmfx_aquaplanet
vert_diff: "true"
surface_setup: DefaultExchangeCoefficients
rad: gray
Expand Down
18 changes: 18 additions & 0 deletions config/model_configs/prognostic_edmfx_aquaplanet.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
job_id: prognostic_edmfx_aquaplanet
vert_diff: "true"
surface_setup: DefaultExchangeCoefficients
rad: gray
turbconv: prognostic_edmfx
prognostic_tke: true
edmfx_upwinding: first_order
edmfx_entr_model: "Generalized"
edmfx_detr_model: "ConstantArea"
edmfx_nh_pressure: true
edmfx_sgs_mass_flux: true
edmfx_sgs_diffusive_flux: true
moist: equil
precip_model: 0M
dt: 10secs
t_end: 1hours
dt_save_to_disk: 600secs
toml: [toml/prognostic_edmfx_box.toml]
31 changes: 31 additions & 0 deletions config/model_configs/prognostic_edmfx_bomex_stretched_box.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
job_id: "prognostic_edmfx_bomex_stretched_box"
initial_condition: "Bomex"
subsidence: "Bomex"
edmf_coriolis: "Bomex"
ls_adv: "Bomex"
surface_setup: "Bomex"
turbconv: "prognostic_edmfx"
edmfx_upwinding: first_order
edmfx_entr_model: "Generalized"
edmfx_detr_model: "Generalized"
edmfx_sgs_mass_flux: true
edmfx_sgs_diffusive_flux: true
edmfx_nh_pressure: true
prognostic_tke: true
moist: "equil"
config: "box"
hyperdiff: "true"
kappa_4: 1.0e21
x_max: 1e8
y_max: 1e8
z_max: 3e3
x_elem: 2
y_elem: 2
z_elem: 30
dz_bottom: 50.0
dz_top: 200.0
perturb_initstate: false
dt: "10secs"
t_end: "6hours"
dt_save_to_disk: "10mins"
toml: [toml/prognostic_edmfx_bomex_box.toml]
Loading