Skip to content

Commit

Permalink
Added one more thresholding
Browse files Browse the repository at this point in the history
  • Loading branch information
kmdeck committed Oct 16, 2024
1 parent 7531f35 commit d544c00
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ which is related to the total soil porosity (`ν`) and
volumetric soil water content (`θ_w = θ_l+θ_i`).
"""
function volumetric_air_content(θ_w::FT, ν::FT) where {FT}
θ_a = ν - θ_w
θ_a = max(ν - θ_w, eps(FT))
return θ_a
end

Expand Down

0 comments on commit d544c00

Please sign in to comment.