Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

lateral flow defaults to false in energy hydrology #728

Merged
merged 1 commit into from
Aug 19, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions src/standalone/Soil/energy_hydrology.jl
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ end
domain::D,
boundary_conditions::NamedTuple,
sources::Tuple,
lateral_flow::Bool = true
lateral_flow::Bool = false
) where {FT, D, PS}

A constructor for a `EnergyHydrology` model, which sets the default value
Expand All @@ -127,8 +127,9 @@ function EnergyHydrology{FT}(;
domain::D,
boundary_conditions::NamedTuple,
sources::Tuple,
lateral_flow::Bool = true,
lateral_flow::Bool = false,
) where {FT, D, PSE}
@assert !lateral_flow
top_bc = boundary_conditions.top
if typeof(top_bc) <: AtmosDrivenFluxBC
# If the top BC indicates atmospheric conditions are driving the model
Expand Down
Loading