Mercurial > repos > public > sbplib_julia
comparison 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 |
comparison
equal
deleted
inserted
replaced
1562:efa994405c38 | 1563:6e910408c51a |
---|---|
2 module Grids | 2 module Grids |
3 | 3 |
4 using Sbplib.RegionIndices | 4 using Sbplib.RegionIndices |
5 using Sbplib.LazyTensors | 5 using Sbplib.LazyTensors |
6 using StaticArrays | 6 using StaticArrays |
7 | |
8 | |
9 export HyperBox | |
10 export Simplex | |
11 export Interval | |
12 export Rectangle | |
13 export Box | |
14 export Triangle | |
15 export Tetrahedron | |
16 | |
17 export limits | |
18 export unitinterval | |
19 export unitsquare | |
20 export unitcube | |
21 export unithyperbox | |
7 | 22 |
8 # Grid | 23 # Grid |
9 export Grid | 24 export Grid |
10 export coordinate_size | 25 export coordinate_size |
11 export component_type | 26 export component_type |
42 export geometric_tensor | 57 export geometric_tensor |
43 export geometric_tensor_inverse | 58 export geometric_tensor_inverse |
44 | 59 |
45 abstract type BoundaryIdentifier end | 60 abstract type BoundaryIdentifier end |
46 | 61 |
62 include("manifolds.jl") | |
47 include("grid.jl") | 63 include("grid.jl") |
48 include("tensor_grid.jl") | 64 include("tensor_grid.jl") |
49 include("equidistant_grid.jl") | 65 include("equidistant_grid.jl") |
50 include("zero_dim_grid.jl") | 66 include("zero_dim_grid.jl") |
51 include("mapped_grid.jl") | 67 include("mapped_grid.jl") |