Mercurial > repos > public > sbplib_julia
comparison src/Grids/Grids.jl @ 1679:529b533a1dbb feature/sbp_operators/laplace_curvilinear
Merge feature/sbp_operators/laplace_curvilinear
author | Jonatan Werpers <jonatan@werpers.com> |
---|---|
date | Sun, 30 Jun 2024 10:57:05 +0200 |
parents | 6d196fb85133 13a7a4ff49e3 |
children | 29b96fc75bee |
comparison
equal
deleted
inserted
replaced
1663:de6300bd36cc | 1679:529b533a1dbb |
---|---|
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 | |
8 | 32 |
9 export ParameterSpace | 33 export ParameterSpace |
10 export HyperBox | 34 export HyperBox |
11 export Simplex | 35 export Simplex |
12 export Interval | 36 export Interval |
37 export grid_id | 61 export grid_id |
38 export boundary_id | 62 export boundary_id |
39 export boundary_indices | 63 export boundary_indices |
40 export boundary_identifiers | 64 export boundary_identifiers |
41 export boundary_grid | 65 export boundary_grid |
66 export min_spacing | |
42 export coarsen | 67 export coarsen |
43 export refine | 68 export refine |
44 export eval_on | 69 export eval_on |
45 export componentview | 70 export componentview |
46 export ArrayComponentView | 71 export ArrayComponentView |