You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jul 19, 2023. It is now read-only.
Quick and dirty way to allow mixed boundary types on each end of an array - may be cleaner and more versatile to split up left and right boundaries going forward
#implement Neumann and Dirichlet as special cases of RobinBC
172
159
NeumannBC(α::AbstractVector{T}, dx::Union{AbstractVector{T}, T}, order =1) where T =RobinBC([zero(T), one(T), α[1]], [zero(T), one(T), α[2]], dx, order)
@@ -178,7 +165,6 @@ Neumann0BC(dx::Union{AbstractVector{T}, T}, order = 1) where T = NeumannBC([zero
178
165
# other acceptable argument signatures
179
166
#RobinBC(al::T, bl::T, cl::T, dx_l::T, ar::T, br::T, cr::T, dx_r::T, order = 1) where T = RobinBC([al,bl, cl], [ar, br, cr], dx_l, order)
0 commit comments