Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
szy21 authored and charleskawczynski committed Apr 4, 2024
1 parent d08fed7 commit 49b3b2e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/cache/precomputed_quantities.jl
Original file line number Diff line number Diff line change
Expand Up @@ -443,7 +443,7 @@ function instead of recomputing the value yourself. Otherwise, it will be
difficult to ensure that the duplicated computations are consistent.
"""
NVTX.@annotate function set_precomputed_quantities!(Y, p, t)
(; moisture_model, turbconv_model, vert_diff, precip_model) = p.atmos
(; moisture_model, turbconv_model, vert_diff, precip_model, cloud_model) = p.atmos
thermo_params = CAP.thermodynamics_params(p.params)
n = n_mass_flux_subdomains(turbconv_model)
thermo_args = (thermo_params, moisture_model)
Expand Down Expand Up @@ -618,7 +618,7 @@ NVTX.@annotate function set_precomputed_quantities!(Y, p, t)
end

# TODO
set_cloud_fraction!(Y, p, atmos.moisture_model, atmos.cloud_model)
set_cloud_fraction!(Y, p, moisture_model, cloud_model)

return nothing
end
Expand Down

0 comments on commit 49b3b2e

Please sign in to comment.