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

set vert_diff to false in edmf jobs #2403

Merged
merged 1 commit into from
Dec 1, 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
1 change: 1 addition & 0 deletions config/longrun_configs/longrun_aquaplanet_amip.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ dz_top: 3000.0
kappa_4: 1e16
moist: "equil"
precip_model: "0M"
override_τ_precip: false
rad: "allskywithclear"
idealized_insolation: false
dt_rad: "1hours"
Expand Down
4 changes: 2 additions & 2 deletions config/model_configs/diagnostic_edmfx_aquaplanet.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
job_id: diagnostic_edmfx_aquaplanet
vert_diff: "true"
surface_setup: DefaultExchangeCoefficients
rad: gray
turbconv: diagnostic_edmfx
Expand All @@ -12,7 +11,8 @@ edmfx_sgs_mass_flux: true
edmfx_sgs_diffusive_flux: true
moist: equil
precip_model: 0M
override_τ_precip: false
dt: 10secs
t_end: 1hours
dt_save_to_disk: 600secs
toml: [toml/diagnostic_edmfx_box.toml]
toml: [toml/diagnostic_edmfx_trmm_box.toml]
1 change: 0 additions & 1 deletion config/model_configs/prognostic_edmfx_aquaplanet.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
job_id: prognostic_edmfx_aquaplanet
vert_diff: "true"
surface_setup: DefaultExchangeCoefficients
rad: gray
turbconv: prognostic_edmfx
Expand Down
4 changes: 2 additions & 2 deletions perf/flame.jl
Original file line number Diff line number Diff line change
Expand Up @@ -63,13 +63,13 @@ allocs_limit["flame_perf_target"] = 4656
allocs_limit["flame_perf_target_tracers"] = 204288
allocs_limit["flame_perf_target_edmfx"] = 253440
allocs_limit["flame_perf_diagnostics"] = 3016328
allocs_limit["flame_perf_target_diagnostic_edmfx"] = 920960
allocs_limit["flame_perf_target_diagnostic_edmfx"] = 893504
allocs_limit["flame_sphere_baroclinic_wave_rhoe_equilmoist_expvdiff"] =
67443909648
allocs_limit["flame_perf_target_threaded"] = 5857808
allocs_limit["flame_perf_target_callbacks"] = 46407936
allocs_limit["flame_perf_gw"] = 4868951088
allocs_limit["flame_perf_target_prognostic_edmfx_aquaplanet"] = 942928
allocs_limit["flame_perf_target_prognostic_edmfx_aquaplanet"] = 898768

if allocs < allocs_limit[job_id] * buffer
@info "TODO: lower `allocs_limit[$job_id]` to: $(allocs)"
Expand Down
5 changes: 5 additions & 0 deletions toml/longrun_aquaplanet_amip.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@ alias = "zd_rayleigh"
value = 35000.0
type = "float"

[precipitation_timescale]
alias = "τ_precip"
value = 100
type = "float"

[entr_tau]
alias = "entr_tau"
value = 0.001
Expand Down
Loading