view src/SbpOperators/SbpOperators.jl @ 922:0bf5952c240d feature/laplace_opset

Review: Add review comment regarding restructuring of Laplace
author Vidar Stiernström <vidar.stiernstrom@it.uu.se>
date Sun, 30 Jan 2022 13:00:18 +0100
parents 86776d06b883
children 88bf50821cf5
line wrap: on
line source

module SbpOperators

using Sbplib.RegionIndices
using Sbplib.LazyTensors
using Sbplib.Grids
using Sbplib.StaticDicts

@enum Parity begin
    odd = -1
    even = 1
end

include("stencil.jl")
include("readoperator.jl")
include("volumeops/volume_operator.jl")
include("volumeops/constant_interior_scaling_operator.jl")
include("volumeops/derivatives/second_derivative.jl")
include("volumeops/laplace/laplace.jl")
include("volumeops/inner_products/inner_product.jl")
include("volumeops/inner_products/inverse_inner_product.jl")
include("boundaryops/boundary_operator.jl")
include("boundaryops/boundary_restriction.jl")
include("boundaryops/normal_derivative.jl")


export inner_product
export inverse_inner_product
export boundary_restriction
export normal_derivative
export boundary_quadrature

end # module