comparison src/SbpOperators/SbpOperators.jl @ 923:88bf50821cf5 feature/laplace_opset

Move exports to SbpOperators.jl
author Vidar Stiernström <vidar.stiernstrom@it.uu.se>
date Mon, 21 Feb 2022 13:11:17 +0100
parents 86776d06b883
children 66e8faf4bb4b
comparison
equal deleted inserted replaced
922:0bf5952c240d 923:88bf50821cf5
1 module SbpOperators 1 module SbpOperators
2 2
3 using Sbplib.RegionIndices 3 using Sbplib.RegionIndices
4 using Sbplib.LazyTensors 4 using Sbplib.LazyTensors
5 using Sbplib.Grids 5 using Sbplib.Grids
6 using Sbplib.StaticDicts
7 6
8 @enum Parity begin 7 @enum Parity begin
9 odd = -1 8 odd = -1
10 even = 1 9 even = 1
11 end 10 end
21 include("boundaryops/boundary_operator.jl") 20 include("boundaryops/boundary_operator.jl")
22 include("boundaryops/boundary_restriction.jl") 21 include("boundaryops/boundary_restriction.jl")
23 include("boundaryops/normal_derivative.jl") 22 include("boundaryops/normal_derivative.jl")
24 23
25 24
25 export boundary_quadrature
26 export boundary_restriction
26 export inner_product 27 export inner_product
27 export inverse_inner_product 28 export inverse_inner_product
28 export boundary_restriction 29 export Laplace
30 export laplace
29 export normal_derivative 31 export normal_derivative
30 export boundary_quadrature 32 export second_derivative
31 33
32 end # module 34 end # module