Skip to content

Commit d94fd43

Browse files
authored
Merge pull request #3937 from CliMA/szy21-patch-2
Update longrun_aquaplanet_progedmf.toml
2 parents 7819ddd + c635be6 commit d94fd43

File tree

4 files changed

+7
-10
lines changed

4 files changed

+7
-10
lines changed

src/parameters/Parameters.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,9 @@ Base.@kwdef struct TurbulenceConvectionParameters{FT, VFT1, VFT2} <: ATCP
3737
min_updraft_top::FT
3838
pressure_normalmode_buoy_coeff1::FT
3939
pressure_normalmode_drag_coeff::FT
40-
entr_tau::FT
40+
entr_inv_tau::FT
4141
entr_coeff::FT
42-
detr_tau::FT
42+
detr_inv_tau::FT
4343
detr_coeff::FT
4444
detr_buoy_coeff::FT
4545
detr_vertdiv_coeff::FT

src/parameters/create_parameters.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -262,8 +262,8 @@ function TurbulenceConvectionParameters(
262262
:mixing_length_static_stab_coeff => :static_stab_coeff,
263263
:pressure_normalmode_buoy_coeff1 =>
264264
:pressure_normalmode_buoy_coeff1,
265-
:detr_inv_tau => :detr_tau,
266-
:entr_inv_tau => :entr_tau,
265+
:detr_inv_tau => :detr_inv_tau,
266+
:entr_inv_tau => :entr_inv_tau,
267267
)
268268
parameters = CP.get_parameter_values(toml_dict, name_map, "ClimaAtmos")
269269
parameters = merge(parameters, overrides)

src/prognostic_equations/edmfx_entr_detr.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ function entrainment(
168168
)
169169

170170
entr_param_vec = CAP.entr_param_vec(turbconv_params)
171-
entr_inv_tau = CAP.entr_tau(turbconv_params)
171+
entr_inv_tau = CAP.entr_inv_tau(turbconv_params)
172172
pi_sum =
173173
entr_param_vec[1] * abs(Π₁) +
174174
entr_param_vec[2] * abs(Π₂) +
@@ -206,7 +206,7 @@ function entrainment(
206206
)
207207
FT = eltype(thermo_params)
208208
entr_mult_limiter_coeff = CAP.entr_mult_limiter_coeff(turbconv_params)
209-
entr_inv_tau = CAP.entr_tau(turbconv_params)
209+
entr_inv_tau = CAP.entr_inv_tau(turbconv_params)
210210
entr_coeff = CAP.entr_coeff(turbconv_params)
211211
min_area_limiter_scale = CAP.min_area_limiter_scale(turbconv_params)
212212
min_area_limiter_power = CAP.min_area_limiter_power(turbconv_params)
@@ -456,7 +456,7 @@ function detrainment(
456456
::BuoyancyVelocityDetrainment,
457457
)
458458
FT = eltype(thermo_params)
459-
detr_inv_tau = CAP.detr_tau(turbconv_params)
459+
detr_inv_tau = CAP.detr_inv_tau(turbconv_params)
460460
detr_coeff = CAP.detr_coeff(turbconv_params)
461461
detr_buoy_coeff = CAP.detr_buoy_coeff(turbconv_params)
462462
detr_vertdiv_coeff = CAP.detr_vertdiv_coeff(turbconv_params)

toml/longrun_aquaplanet_progedmf.toml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,6 @@ value = 40000.0
77
[precipitation_timescale]
88
value = 600
99

10-
[EDMF_surface_area]
11-
value = 0
12-
1310
[EDMF_min_area]
1411
value = 1.0e-5
1512

0 commit comments

Comments
 (0)