Mercurial > repos > public > sbplib_julia
view src/SbpOperators/SbpOperators.jl @ 1354:150313ed2cae
Merge refactor/grids (missed delete of a note)
Changes from previous merge:
* `EquidistantGrid` is now only a 1D thing.
* Higher dimensions are supported through `TensorGrid`.
* The old behavior of `EquidistantGrid` has been moved to the function `equidistant_grid`.
* Grids embedded in higher dimensions are now supported through tensor products with `ZeroDimGrid`s.
* Vector valued grid functions are now supported and the default element type is `SVector`.
* Grids are now expected to support Julia's indexing and iteration interface.
* `eval_on` can be called with both `f(x,y,...)` and `f(x̄)`.
author | Jonatan Werpers <jonatan@werpers.com> |
---|---|
date | Sat, 20 May 2023 14:19:20 +0200 |
parents | 254934aac3f8 |
children | 102ebdaf7c11 |
line wrap: on
line source
module SbpOperators # Stencil set export StencilSet export read_stencil_set export get_stencil_set export parse_stencil export parse_scalar export parse_tuple export sbp_operators_path # Operators 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 export undivided_skewed04 using Sbplib.RegionIndices using Sbplib.LazyTensors using Sbplib.Grids @enum Parity begin odd = -1 even = 1 end include("stencil.jl") include("stencil_set.jl") include("volumeops/volume_operator.jl") include("volumeops/stencil_operator_distinct_closures.jl") include("volumeops/constant_interior_scaling_operator.jl") include("volumeops/derivatives/first_derivative.jl") include("volumeops/derivatives/second_derivative.jl") include("volumeops/derivatives/dissipation.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