Skip to content

Commit

Permalink
Merge CliMA#1868
Browse files Browse the repository at this point in the history
1868: fixes to squall line experiment for QA-Microphysics r=trontrytel a=trontrytel

### Description



Co-authored-by: Anna Jaruga <[email protected]>
  • Loading branch information
bors[bot] and trontrytel authored Dec 16, 2020
2 parents 6979716 + 0797ba9 commit 11c28e6
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion experiments/AtmosLES/squall_line.jl
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ function config_squall_line(

# moisture model and its sources
if moisture_model == "equilibrium"
moisture = EquilMoist{FT}(; maxiter = 4, tolerance = FT(1))
moisture = EquilMoist{FT}(; maxiter = 20, tolerance = FT(1))
elseif moisture_model == "nonequilibrium"
source = (source..., CreateClouds()...)
moisture = NonEquilMoist()
Expand Down Expand Up @@ -333,10 +333,17 @@ function config_diagnostics(driver_config, boundaries, resolution)
driver_config.name,
interpol = interpol,
)
dgngrp_aux = setup_dump_aux_diagnostics(
AtmosLESConfigType(),
interval,
driver_config.name,
interpol = interpol,
)

return ClimateMachine.DiagnosticsConfiguration([
dgngrp_profiles,
dgngrp_state,
dgngrp_aux,
])
end

Expand Down

0 comments on commit 11c28e6

Please sign in to comment.