comparison src/SbpOperators/SbpOperators.jl @ 1106:b4ee47f2aafb feature/boundary_conditions

Start implementing functions for boundary conditions associated with Laplace
author Vidar Stiernström <vidar.stiernstrom@it.uu.se>
date Mon, 13 Jun 2022 13:46:24 +0200
parents 3031ce7a4999
children 470a70a6c1e6
comparison
equal deleted inserted replaced
1086:74c54996de6a 1106:b4ee47f2aafb
18 export laplace 18 export laplace
19 export normal_derivative 19 export normal_derivative
20 export first_derivative 20 export first_derivative
21 export second_derivative 21 export second_derivative
22 22
23 export sat
24
23 using Sbplib.RegionIndices 25 using Sbplib.RegionIndices
24 using Sbplib.LazyTensors 26 using Sbplib.LazyTensors
25 using Sbplib.Grids 27 using Sbplib.Grids
28 using Sbplib.BoundaryConditions
26 29
27 @enum Parity begin 30 @enum Parity begin
28 odd = -1 31 odd = -1
29 even = 1 32 even = 1
30 end 33 end