Mercurial > repos > public > sbplib_julia
comparison src/SbpOperators/SbpOperators.jl @ 1049:3bb94ce74697 feature/variable_derivatives
Merge default
author | Jonatan Werpers <jonatan@werpers.com> |
---|---|
date | Wed, 23 Mar 2022 12:54:45 +0100 |
parents | 2a4f36aca2ea 3031ce7a4999 |
children | 5a3281429a48 |
comparison
equal
deleted
inserted
replaced
1048:86aa69ad3304 | 1049:3bb94ce74697 |
---|---|
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_nested_stencil | |
9 export parse_scalar | |
10 export parse_tuple | |
11 export sbp_operators_path | |
12 | |
13 # Operators | |
3 export boundary_quadrature | 14 export boundary_quadrature |
4 export boundary_restriction | 15 export boundary_restriction |
5 export inner_product | 16 export inner_product |
6 export inverse_inner_product | 17 export inverse_inner_product |
7 export Laplace | 18 export Laplace |
20 end | 31 end |
21 | 32 |
22 export closure_size | 33 export closure_size |
23 | 34 |
24 include("stencil.jl") | 35 include("stencil.jl") |
25 include("readoperator.jl") | 36 include("stencil_set.jl") |
26 include("volumeops/volume_operator.jl") | 37 include("volumeops/volume_operator.jl") |
27 include("volumeops/constant_interior_scaling_operator.jl") | 38 include("volumeops/constant_interior_scaling_operator.jl") |
28 include("volumeops/derivatives/first_derivative.jl") | 39 include("volumeops/derivatives/first_derivative.jl") |
29 include("volumeops/derivatives/second_derivative.jl") | 40 include("volumeops/derivatives/second_derivative.jl") |
30 include("volumeops/derivatives/second_derivative_variable.jl") | 41 include("volumeops/derivatives/second_derivative_variable.jl") |