Mercurial > repos > public > sbplib_julia
diff src/SbpOperators/SbpOperators.jl @ 1623:07e8080c9f1a
Merge feature/boundary_conditions
author | Vidar Stiernström <vidar.stiernstrom@gmail.com> |
---|---|
date | Mon, 10 Jun 2024 22:39:22 -0700 |
parents | 3887f41e1942 |
children | de6300bd36cc 471a948cd2b2 |
line wrap: on
line diff
--- a/src/SbpOperators/SbpOperators.jl Sun Jun 09 23:27:11 2024 +0200 +++ b/src/SbpOperators/SbpOperators.jl Mon Jun 10 22:39:22 2024 -0700 @@ -11,7 +11,6 @@ export sbp_operators_path # Operators -export boundary_quadrature export boundary_restriction export inner_product export inverse_inner_product @@ -22,20 +21,34 @@ export second_derivative export second_derivative_variable export undivided_skewed04 - -using Sbplib.RegionIndices -using Sbplib.LazyTensors -using Sbplib.Grids +export closure_size @enum Parity begin odd = -1 even = 1 end -export closure_size +# Boundary conditions +export BoundaryCondition +export NeumannCondition +export DirichletCondition +export discretize_data +export boundary_data +export boundary +export sat +export sat_tensors + +# Using +using Sbplib.RegionIndices +using Sbplib.LazyTensors +using Sbplib.Grids + +# Includes include("stencil.jl") include("stencil_set.jl") +include("boundary_conditions/boundary_condition.jl") +include("boundary_conditions/sat.jl") include("volumeops/volume_operator.jl") include("volumeops/stencil_operator_distinct_closures.jl") include("volumeops/constant_interior_scaling_operator.jl")