Skip to content

Commit

Permalink
Merge pull request #2947 from CliMA/zs/implicit_trmm
Browse files Browse the repository at this point in the history
change rico and trmm to implicit
  • Loading branch information
szy21 authored Apr 24, 2024
2 parents 2ef14d9 + f48a8a6 commit e3f8fcd
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .buildkite/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -622,11 +622,11 @@ steps:
agents:
slurm_mem: 20GB

- label: ":genie: Prognostic EDMFX TRMM in a column"
- label: ":genie: Prognostic EDMFX TRMM with 0-moment in a column"
command: >
julia --color=yes --project=examples examples/hybrid/driver.jl
--config_file $CONFIG_PATH/prognostic_edmfx_trmm_column_0M.yml
artifact_paths: "prognostic_edmfx_trmm_column_0M/*"
artifact_paths: "prognostic_edmfx_trmm_column_0M/output_active/*"
agents:
slurm_mem: 20GB

Expand Down
6 changes: 5 additions & 1 deletion config/model_configs/prognostic_edmfx_rico_column.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ subsidence: "Rico"
ls_adv: "Rico"
surface_setup: "Rico"
turbconv: "prognostic_edmfx"
implicit_diffusion: true
implicit_sgs_advection: true
approximate_linear_solve_iters: 2
max_newton_iters_ode: 3
edmfx_upwinding: first_order
edmfx_entr_model: "Generalized"
edmfx_detr_model: "Generalized"
Expand All @@ -21,7 +25,7 @@ y_elem: 2
z_elem: 100
z_stretch: false
perturb_initstate: false
dt: "5secs"
dt: "50secs"
t_end: "6hours"
dt_save_state_to_disk: "10mins"
toml: [toml/prognostic_edmfx.toml]
Expand Down
6 changes: 5 additions & 1 deletion config/model_configs/prognostic_edmfx_trmm_column.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ initial_condition: TRMM_LBA
rad: TRMM_LBA
surface_setup: TRMM_LBA
turbconv: prognostic_edmfx
implicit_diffusion: true
implicit_sgs_advection: true
approximate_linear_solve_iters: 2
max_newton_iters_ode: 3
edmfx_upwinding: first_order
edmfx_entr_model: "Generalized"
edmfx_detr_model: "Generalized"
Expand All @@ -20,7 +24,7 @@ x_elem: 2
y_elem: 2
z_elem: 82
z_stretch: false
dt: 5secs
dt: 50secs
t_end: 6hours
dt_save_state_to_disk: 10mins
FLOAT_TYPE: "Float64"
Expand Down
6 changes: 5 additions & 1 deletion config/model_configs/prognostic_edmfx_trmm_column_0M.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ initial_condition: TRMM_LBA
rad: TRMM_LBA
surface_setup: TRMM_LBA
turbconv: prognostic_edmfx
implicit_diffusion: true
implicit_sgs_advection: true
approximate_linear_solve_iters: 2
max_newton_iters_ode: 3
edmfx_upwinding: first_order
edmfx_entr_model: "Generalized"
edmfx_detr_model: "Generalized"
Expand All @@ -20,7 +24,7 @@ x_elem: 2
y_elem: 2
z_elem: 82
z_stretch: false
dt: 5secs
dt: 50secs
t_end: 6hours
dt_save_state_to_disk: 10mins
FLOAT_TYPE: "Float64"
Expand Down

0 comments on commit e3f8fcd

Please sign in to comment.