Mercurial > repos > public > sbplib_julia
view src/SbpOperators/SbpOperators.jl @ 638:08b2c7a2d063 feature/volume_and_boundary_operators
Implement the Quadrature operator as a VolumeOperator. Make DiagonalQuadrature a special case of the general Quadrature operator. Update tests.
author | Vidar Stiernström <vidar.stiernstrom@it.uu.se> |
---|---|
date | Mon, 04 Jan 2021 09:32:11 +0100 |
parents | a1dfaf305f41 |
children | bfb1adb2cd7e |
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("volumeops/volume_operator.jl") include("volumeops/derivatives/secondderivative.jl") include("volumeops/laplace/laplace.jl") include("volumeops/quadratures/diagonal_quadrature.jl") include("volumeops/quadratures/inverse_diagonal_quadrature.jl") include("boundaryops/boundary_operator.jl") include("boundaryops/boundary_restriction.jl") include("boundaryops/normal_derivative.jl") end # module