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.
@@ -93,8 +93,7 @@ DirichletBC(α::AbstractVector{T}, dx::AbstractVector{T}, order) where T = Robin
93
93
DirichletBC(α::AbstractVector{T}, dx::AbstractVector{T}) where T =RobinBC([one(T), zero(T), α[1]], [one(T), zero(T), α[2]], dx)
94
94
95
95
# other acceptable argument signatures
96
-
RobinBC(al::T, bl::T, cl::T, dx_l::T, ar::T, br::T, cr::T, dx_r::T) where T =RobinBC([al,bl,cl], [ar, br, cr], [dx_l, dx_r])
97
-
RobinBC(al::T, bl::T, cl::T, dx_l::T, ar::T, br::T, cr::T, dx_r::T, order::T) where T =RobinBC([al,bl,cl], [ar, br, cr], [dx_l, dx_r], order)
96
+
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, dx_r], order)
98
97
99
98
# this is 'boundary padded vector' as opposed to 'boundary padded array' to distinguish it from the n dimensional implementation that will eventually be neeeded
0 commit comments