Mercurial > repos > public > sbplib_julia
comparison src/SbpOperators/SbpOperators.jl @ 1047:d12ab8120d29 feature/first_derivative
Merge default
author | Jonatan Werpers <jonatan@werpers.com> |
---|---|
date | Wed, 23 Mar 2022 12:43:03 +0100 |
parents | 3031ce7a4999 |
children | 0e31b9901160 3bb94ce74697 b4ee47f2aafb |
comparison
equal
deleted
inserted
replaced
1046:e00eb000346e | 1047:d12ab8120d29 |
---|---|
1 module SbpOperators | 1 module SbpOperators |
2 | 2 |
3 # Stencil set | |
4 export StencilSet | |
5 export read_stencil_set | |
6 export get_stencil_set | |
7 export parse_stencil | |
8 export parse_scalar | |
9 export parse_tuple | |
10 export sbp_operators_path | |
11 | |
12 # Operators | |
3 export boundary_quadrature | 13 export boundary_quadrature |
4 export boundary_restriction | 14 export boundary_restriction |
5 export inner_product | 15 export inner_product |
6 export inverse_inner_product | 16 export inverse_inner_product |
7 export Laplace | 17 export Laplace |
18 odd = -1 | 28 odd = -1 |
19 even = 1 | 29 even = 1 |
20 end | 30 end |
21 | 31 |
22 include("stencil.jl") | 32 include("stencil.jl") |
23 include("readoperator.jl") | 33 include("stencil_set.jl") |
24 include("volumeops/volume_operator.jl") | 34 include("volumeops/volume_operator.jl") |
25 include("volumeops/constant_interior_scaling_operator.jl") | 35 include("volumeops/constant_interior_scaling_operator.jl") |
26 include("volumeops/derivatives/first_derivative.jl") | 36 include("volumeops/derivatives/first_derivative.jl") |
27 include("volumeops/derivatives/second_derivative.jl") | 37 include("volumeops/derivatives/second_derivative.jl") |
28 include("volumeops/laplace/laplace.jl") | 38 include("volumeops/laplace/laplace.jl") |