Mercurial > repos > public > sbplib_julia
view src/SbpOperators/SbpOperators.jl @ 995:1ba8a398af9c refactor/lazy_tensors
Rename types
author | Jonatan Werpers <jonatan@werpers.com> |
---|---|
date | Fri, 18 Mar 2022 21:14:47 +0100 |
parents | ba023fc09961 |
children | 2a4f36aca2ea 5ec49dd2c7c4 3f5137ce3aa1 |
line wrap: on
line source
module SbpOperators export boundary_quadrature export boundary_restriction export inner_product export inverse_inner_product export Laplace export laplace export normal_derivative export first_derivative export second_derivative using Sbplib.RegionIndices using Sbplib.LazyTensors using Sbplib.Grids @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/first_derivative.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") end # module