Mercurial > repos > public > sbplib_julia
comparison src/Grids/Grids.jl @ 1956:b0fcb29e3620 feature/grids/multiblock_boundaries
Merge default
author | Jonatan Werpers <jonatan@werpers.com> |
---|---|
date | Tue, 11 Feb 2025 08:54:18 +0100 |
parents | e68669552ed8 f93ba5832146 |
children | 7da0ce15b3c1 |
comparison
equal
deleted
inserted
replaced
1912:e68669552ed8 | 1956:b0fcb29e3620 |
---|---|
1 module Grids | 1 module Grids |
2 | 2 |
3 using Diffinitive.LazyTensors | 3 using Diffinitive.LazyTensors |
4 using StaticArrays | 4 using StaticArrays |
5 using LinearAlgebra | 5 using LinearAlgebra |
6 | |
7 export ParameterSpace | |
8 export HyperBox | |
9 export Simplex | |
10 export Interval | |
11 export Rectangle | |
12 export Box | |
13 export Triangle | |
14 export Tetrahedron | |
15 | |
16 export limits | |
17 export unitinterval | |
18 export unitsquare | |
19 export unitcube | |
20 export unithyperbox | |
21 | |
22 export verticies | |
23 export unittriangle | |
24 export unittetrahedron | |
25 export unitsimplex | |
6 | 26 |
7 # Grid | 27 # Grid |
8 export Grid | 28 export Grid |
9 export coordinate_size | 29 export coordinate_size |
10 export component_type | 30 export component_type |
43 export jacobian | 63 export jacobian |
44 export logical_grid | 64 export logical_grid |
45 export mapped_grid | 65 export mapped_grid |
46 export metric_tensor | 66 export metric_tensor |
47 | 67 |
68 include("parameter_space.jl") | |
48 include("grid.jl") | 69 include("grid.jl") |
49 include("tensor_grid.jl") | 70 include("tensor_grid.jl") |
50 include("equidistant_grid.jl") | 71 include("equidistant_grid.jl") |
51 include("zero_dim_grid.jl") | 72 include("zero_dim_grid.jl") |
52 include("mapped_grid.jl") | 73 include("mapped_grid.jl") |