Mercurial > repos > public > sbplib_julia
comparison src/SbpOperators/SbpOperators.jl @ 1635:b62770cec7d0 update/julia_1.10.3
Merge default
author | Jonatan Werpers <jonatan@werpers.com> |
---|---|
date | Tue, 25 Jun 2024 15:32:19 +0200 |
parents | 3887f41e1942 |
children | de6300bd36cc 471a948cd2b2 |
comparison
equal
deleted
inserted
replaced
1593:7f5e4d2a5112 | 1635:b62770cec7d0 |
---|---|
9 export parse_scalar | 9 export parse_scalar |
10 export parse_tuple | 10 export parse_tuple |
11 export sbp_operators_path | 11 export sbp_operators_path |
12 | 12 |
13 # Operators | 13 # Operators |
14 export boundary_quadrature | |
15 export boundary_restriction | 14 export boundary_restriction |
16 export inner_product | 15 export inner_product |
17 export inverse_inner_product | 16 export inverse_inner_product |
18 export Laplace | 17 export Laplace |
19 export laplace | 18 export laplace |
20 export normal_derivative | 19 export normal_derivative |
21 export first_derivative | 20 export first_derivative |
22 export second_derivative | 21 export second_derivative |
23 export second_derivative_variable | 22 export second_derivative_variable |
24 export undivided_skewed04 | 23 export undivided_skewed04 |
25 | 24 export closure_size |
26 using Sbplib.RegionIndices | |
27 using Sbplib.LazyTensors | |
28 using Sbplib.Grids | |
29 | 25 |
30 @enum Parity begin | 26 @enum Parity begin |
31 odd = -1 | 27 odd = -1 |
32 even = 1 | 28 even = 1 |
33 end | 29 end |
34 | 30 |
35 export closure_size | |
36 | 31 |
32 # Boundary conditions | |
33 export BoundaryCondition | |
34 export NeumannCondition | |
35 export DirichletCondition | |
36 export discretize_data | |
37 export boundary_data | |
38 export boundary | |
39 export sat | |
40 export sat_tensors | |
41 | |
42 # Using | |
43 using Sbplib.RegionIndices | |
44 using Sbplib.LazyTensors | |
45 using Sbplib.Grids | |
46 | |
47 # Includes | |
37 include("stencil.jl") | 48 include("stencil.jl") |
38 include("stencil_set.jl") | 49 include("stencil_set.jl") |
50 include("boundary_conditions/boundary_condition.jl") | |
51 include("boundary_conditions/sat.jl") | |
39 include("volumeops/volume_operator.jl") | 52 include("volumeops/volume_operator.jl") |
40 include("volumeops/stencil_operator_distinct_closures.jl") | 53 include("volumeops/stencil_operator_distinct_closures.jl") |
41 include("volumeops/constant_interior_scaling_operator.jl") | 54 include("volumeops/constant_interior_scaling_operator.jl") |
42 include("volumeops/derivatives/first_derivative.jl") | 55 include("volumeops/derivatives/first_derivative.jl") |
43 include("volumeops/derivatives/second_derivative.jl") | 56 include("volumeops/derivatives/second_derivative.jl") |