Mercurial > repos > public > sbplib_julia
comparison src/Grids/Grids.jl @ 1954:b0915f43b122 feature/sbp_operators/laplace_curvilinear
Merge feature/grids/geometry_functions
author | Jonatan Werpers <jonatan@werpers.com> |
---|---|
date | Sat, 08 Feb 2025 09:38:58 +0100 |
parents | b8cb38fd67ff 6c1bb9bdb092 |
children | 496b8d3903c6 |
comparison
equal
deleted
inserted
replaced
1953:835b1dcee38e | 1954:b0915f43b122 |
---|---|
23 export unittriangle | 23 export unittriangle |
24 export unittetrahedron | 24 export unittetrahedron |
25 export unitsimplex | 25 export unitsimplex |
26 | 26 |
27 export Chart | 27 export Chart |
28 export ConcreteChart | 28 |
29 export Atlas | |
30 export charts | |
31 export connections | |
32 export CartesianAtlas | |
33 export UnstructuredAtlas | |
34 | |
29 export parameterspace | 35 export parameterspace |
30 | 36 |
31 # Grid | 37 # Grid |
32 export Grid | 38 export Grid |
33 export coordinate_size | 39 export coordinate_size |
57 export EquidistantGrid | 63 export EquidistantGrid |
58 export inverse_spacing | 64 export inverse_spacing |
59 export spacing | 65 export spacing |
60 export equidistant_grid | 66 export equidistant_grid |
61 | 67 |
68 export MultiBlockBoundary | |
62 | 69 |
63 # MappedGrid | 70 # MappedGrid |
64 export MappedGrid | 71 export MappedGrid |
65 export jacobian | 72 export jacobian |
66 export logical_grid | 73 export logical_grid |
67 export mapped_grid | 74 export mapped_grid |
68 export metric_tensor | 75 export metric_tensor |
69 | 76 |
70 abstract type BoundaryIdentifier end | 77 include("parameter_space.jl") |
71 | 78 include("grid.jl") |
79 include("multiblockgrids.jl") | |
72 include("manifolds.jl") | 80 include("manifolds.jl") |
73 include("grid.jl") | |
74 include("tensor_grid.jl") | 81 include("tensor_grid.jl") |
75 include("equidistant_grid.jl") | 82 include("equidistant_grid.jl") |
76 include("zero_dim_grid.jl") | 83 include("zero_dim_grid.jl") |
77 include("mapped_grid.jl") | 84 include("mapped_grid.jl") |
85 include("geometry.jl") | |
78 | 86 |
79 end # module | 87 end # module |