Mercurial > repos > public > sbplib_julia
view src/SbpOperators/SbpOperators.jl @ 504:21fba50cb5b0 feature/quadrature_as_outer_product
Use LazyOuterProduct to construct multi-dimensional quadratures. This change allwed to:
- Replace the types Quadrature and InverseQuadrature by functions returning outer products of the 1D operators.
- Avoid convoluted naming of types. DiagonalInnerProduct is now renamed to DiagonalQuadrature, similarly for InverseDiagonalInnerProduct.
author | Vidar Stiernström <vidar.stiernstrom@it.uu.se> |
---|---|
date | Sat, 07 Nov 2020 13:07:31 +0100 |
parents | f36866ba97e6 |
children | a78bda7084f6 |
line wrap: on
line source
module SbpOperators using Sbplib.RegionIndices using Sbplib.LazyTensors using Sbplib.Grids include("stencil.jl") include("constantstenciloperator.jl") include("d2.jl") include("readoperator.jl") include("laplace/secondderivative.jl") include("laplace/laplace.jl") include("quadrature/diagonal_quadrature.jl") include("quadrature/inverse_diagonal_quadrature.jl") end # module