Mercurial > repos > public > sbplib_julia
changeset 153:754c36796ac8 boundary_conditions
Add missing where statement
author | Jonatan Werpers <jonatan@werpers.com> |
---|---|
date | Wed, 17 Apr 2019 09:43:56 +0200 |
parents | f54dd4408fa7 |
children | 3193bac1c086 |
files | diffOp.jl |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/diffOp.jl Mon Apr 15 16:15:04 2019 +0200 +++ b/diffOp.jl Wed Apr 17 09:43:56 2019 +0200 @@ -180,7 +180,7 @@ # e, d, H_gamma applied based on bc.boundaryId end -function sat(L::Laplace{2}, bc::Dirichlet{CartesianBoundary{1,R}}, v::AbstractArray{T,2} where T, g::AbstractVector{T}, i::CartesianIndex{2}) +function sat(L::Laplace{2}, bc::Dirichlet{CartesianBoundary{1,R}}, v::AbstractArray{T,2} where T, g::AbstractVector{T}, i::CartesianIndex{2}) where R # Hi * (tau/h*e + sig*d) * H_gamma * (e'*v - g) # e, d, H_gamma applied based on bc.boundaryId end