Mercurial > repos > public > sbplib_julia
comparison src/SbpOperators/SbpOperators.jl @ 1045:0e31b9901160 feature/dissipation_operators
Merge refactor/sbpoperators/inflation
author | Jonatan Werpers <jonatan@werpers.com> |
---|---|
date | Tue, 22 Mar 2022 22:11:11 +0100 |
parents | ed19c549c506 3031ce7a4999 |
children | c89c6b63c7f4 |
comparison
equal
deleted
inserted
replaced
1035:ceda69b8f27a | 1045:0e31b9901160 |
---|---|
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 |
19 odd = -1 | 29 odd = -1 |
20 even = 1 | 30 even = 1 |
21 end | 31 end |
22 | 32 |
23 include("stencil.jl") | 33 include("stencil.jl") |
24 include("readoperator.jl") | 34 include("stencil_set.jl") |
25 include("volumeops/volume_operator.jl") | 35 include("volumeops/volume_operator.jl") |
26 include("volumeops/stencil_operator_distinct_closures.jl") | 36 include("volumeops/stencil_operator_distinct_closures.jl") |
27 include("volumeops/constant_interior_scaling_operator.jl") | 37 include("volumeops/constant_interior_scaling_operator.jl") |
28 include("volumeops/derivatives/first_derivative.jl") | 38 include("volumeops/derivatives/first_derivative.jl") |
29 include("volumeops/derivatives/second_derivative.jl") | 39 include("volumeops/derivatives/second_derivative.jl") |