Mercurial > repos > public > sbplib_julia
comparison src/Grids/Grids.jl @ 1696:29b96fc75bee feature/sbp_operators/laplace_curvilinear
Merge feature/grids/manifolds
author | Jonatan Werpers <jonatan@werpers.com> |
---|---|
date | Wed, 28 Aug 2024 10:50:15 +0200 |
parents | 529b533a1dbb a4c52ae93b11 |
children | f3d7e2d7a43f |
comparison
equal
deleted
inserted
replaced
1693:c7eee3952dcd | 1696:29b96fc75bee |
---|---|
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 using LinearAlgebra | 7 using LinearAlgebra |
8 | |
9 export ParameterSpace | |
10 export HyperBox | |
11 export Simplex | |
12 export Interval | |
13 export Rectangle | |
14 export Box | |
15 export Triangle | |
16 export Tetrahedron | |
17 | |
18 export limits | |
19 export unitinterval | |
20 export unitsquare | |
21 export unitcube | |
22 export unithyperbox | |
23 | |
24 export verticies | |
25 export unittriangle | |
26 export unittetrahedron | |
27 export unitsimplex | |
28 | |
29 export Chart | |
30 export ConcreteChart | |
31 export parameterspace | |
32 | 8 |
33 export ParameterSpace | 9 export ParameterSpace |
34 export HyperBox | 10 export HyperBox |
35 export Simplex | 11 export Simplex |
36 export Interval | 12 export Interval |
88 export MappedGrid | 64 export MappedGrid |
89 export jacobian | 65 export jacobian |
90 export logicalgrid | 66 export logicalgrid |
91 export mapped_grid | 67 export mapped_grid |
92 export jacobian_determinant | 68 export jacobian_determinant |
93 export geometric_tensor | 69 export metric_tensor |
94 export geometric_tensor_inverse | 70 export metric_tensor_inverse |
95 | 71 |
96 abstract type BoundaryIdentifier end | 72 abstract type BoundaryIdentifier end |
97 | 73 |
98 include("manifolds.jl") | 74 include("manifolds.jl") |
99 include("grid.jl") | 75 include("grid.jl") |