Skip to content

Commit 4ced6ca

Browse files
committed
...
1 parent 2f81640 commit 4ced6ca

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/MicrophysicsNonEq.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ function conv_q_vap_to_q_lcl_icl_MM2015(
185185
tendency = ifelse(
186186
sat_excess < 0,
187187
-max(FT(0), q_icl) / timescale,
188-
sat_excess / timescale
188+
sat_excess / timescale,
189189
)
190190
limiter = INP_limiter(tendency, tps, T)
191191
return ifelse(limiter, zero(tendency), tendency)

test/performance_tests.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ function benchmark_test(FT)
176176
bench_press(FT, P3.get_distribution_logλ, (params_P3, L_ice, N_ice, F_rim, ρ_rim), 30_000)
177177
bench_press(FT, P3.ice_terminal_velocity_number_weighted, (ch2022, ρ_air, state, logλ), 120_000)
178178
bench_press(FT, P3.ice_terminal_velocity_mass_weighted, (ch2022, ρ_air, state, logλ), 135_000)
179-
bench_press(FT, P3.integrate, (x -> x^4, FT(0), FT(1)), 3_300)
179+
bench_press(FT, P3.integrate, (x -> x^4, FT(0), FT(1)), 3_700)
180180
bench_press(FT, P3.D_m, (state, logλ), 3_000)
181181

182182
@info "P3 Ice Nucleation"

0 commit comments

Comments
 (0)