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

clean up conservation test #3193

Merged
merged 1 commit into from
Jul 15, 2024
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
27 changes: 21 additions & 6 deletions .buildkite/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -209,6 +209,27 @@ steps:
artifact_paths: "plane_density_current_test/output_active/*"


- group: "Conservation check"
steps:

- label: ":computer: baroclinic wave check conservation"
command: >
julia --color=yes --project=examples examples/hybrid/driver.jl --config_file $CONFIG_PATH/sphere_baroclinic_wave_conservation.yml
--job_id sphere_baroclinic_wave_conservation
artifact_paths: "sphere_baroclinic_wave_conservation/output_active/*"

- label: ":computer: baroclinic wave check conservation float64"
command: >
julia --color=yes --project=examples examples/hybrid/driver.jl --config_file $CONFIG_PATH/sphere_baroclinic_wave_conservation_ft64.yml
--job_id sphere_baroclinic_wave_conservation_ft64
artifact_paths: "sphere_baroclinic_wave_conservation_ft64/output_active/*"

- label: ":computer: baroclinic wave check conservation with sources"
command: >
julia --color=yes --project=examples examples/hybrid/driver.jl --config_file $CONFIG_PATH/sphere_baroclinic_wave_conservation_source.yml
--job_id sphere_baroclinic_wave_conservation_source
artifact_paths: "sphere_baroclinic_wave_conservation_source/output_active/*"

- group: "Sphere Examples (Dycore)"
steps:

Expand Down Expand Up @@ -267,12 +288,6 @@ steps:
# env:
# JOB_NAME: "sphere_zalesak_upwind_tracer_energy_ssp_baroclinic_wave_rhoe_equilmoist"

- label: ":computer: no lim ARS baroclinic wave (ρe) equilmoist check conservation float64"
command: >
julia --color=yes --project=examples examples/hybrid/driver.jl --config_file $CONFIG_PATH/sphere_baroclinic_wave_rhoe_equilmoist_conservation_ft64.yml
--job_id sphere_baroclinic_wave_rhoe_equilmoist_conservation_ft64
artifact_paths: "sphere_baroclinic_wave_rhoe_equilmoist_conservation_ft64/output_active/*"

- label: ":computer: held suarez (ρe) hightop"
key: sphere_held_suarez_rhoe_hightop
command: >
Expand Down
6 changes: 6 additions & 0 deletions config/model_configs/sphere_baroclinic_wave_conservation.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
initial_condition: "MoistBaroclinicWave"
dt: "400secs"
t_end: "5days"
moist: "equil"
dt_save_state_to_disk: "5days"
check_conservation: true
Original file line number Diff line number Diff line change
@@ -1,11 +1,7 @@
FLOAT_TYPE: "Float64"
initial_condition: "MoistBaroclinicWave"
dt: "400secs"
t_end: "5days"
moist: "equil"
dt_save_state_to_disk: "5days"
check_conservation: true
initial_condition: "MoistBaroclinicWave"
t_end: "5days"
dt: "450secs"
FLOAT_TYPE: "Float64"
rad: "clearsky"
diagnostics:
- short_name: [pfull, wa, va, rv, hus]
period: 1days
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
initial_condition: "MoistBaroclinicWave"
dt: "400secs"
t_end: "10days"
moist: "equil"
surface_setup: DefaultMoninObukhov
prognostic_surface: "PrognosticSurfaceTemperature"
rad: "clearsky"
precip_model: "0M"
vert_diff: "true"
dt_save_state_to_disk: "5days"
check_conservation: true
Loading