Mercurial > repos > public > sbplib_julia
view src/SbpOperators/SbpOperators.jl @ 793:1a4b3aecf9e5 operator_storage_array_of_table
Add ConstantInteriorScalingOperator which will be used to implement diagonal inner products
author | Jonatan Werpers <jonatan@werpers.com> |
---|---|
date | Thu, 22 Jul 2021 23:33:58 +0200 |
parents | 6fb556b02f7c |
children | f0532b9289b7 |
line wrap: on
line source
module SbpOperators using Sbplib.RegionIndices using Sbplib.LazyTensors using Sbplib.Grids include("stencil.jl") include("d2.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") end # module