Mercurial > repos > public > sbplib_julia
diff src/Grids/Grids.jl @ 1563:6e910408c51a feature/sbp_operators/laplace_curvilinear
Merge manifolds
author | Jonatan Werpers <jonatan@werpers.com> |
---|---|
date | Thu, 25 Apr 2024 10:20:43 +0200 |
parents | 5d32ecb98db8 81e97d3bec8c |
children | d7483e8af705 |
line wrap: on
line diff
--- a/src/Grids/Grids.jl Thu Apr 25 09:34:34 2024 +0200 +++ b/src/Grids/Grids.jl Thu Apr 25 10:20:43 2024 +0200 @@ -5,6 +5,21 @@ using Sbplib.LazyTensors using StaticArrays + +export HyperBox +export Simplex +export Interval +export Rectangle +export Box +export Triangle +export Tetrahedron + +export limits +export unitinterval +export unitsquare +export unitcube +export unithyperbox + # Grid export Grid export coordinate_size @@ -44,6 +59,7 @@ abstract type BoundaryIdentifier end +include("manifolds.jl") include("grid.jl") include("tensor_grid.jl") include("equidistant_grid.jl")