Mercurial > repos > public > sbplib_julia
comparison src/Grids/Grids.jl @ 1902:f93ba5832146 feature/grids/parameter_spaces
Copy changes related to ParameterSpace from feature/grids/manifolds
author | Jonatan Werpers <jonatan@werpers.com> |
---|---|
date | Sat, 01 Feb 2025 22:12:53 +0100 |
parents | a6deaf70862b |
children | 04c251bccbd4 b0fcb29e3620 |
comparison
equal
deleted
inserted
replaced
1900:418566cdd689 | 1902:f93ba5832146 |
---|---|
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 |
41 export jacobian | 61 export jacobian |
42 export logical_grid | 62 export logical_grid |
43 export mapped_grid | 63 export mapped_grid |
44 export metric_tensor | 64 export metric_tensor |
45 | 65 |
66 include("parameter_space.jl") | |
46 include("grid.jl") | 67 include("grid.jl") |
47 include("tensor_grid.jl") | 68 include("tensor_grid.jl") |
48 include("equidistant_grid.jl") | 69 include("equidistant_grid.jl") |
49 include("zero_dim_grid.jl") | 70 include("zero_dim_grid.jl") |
50 include("mapped_grid.jl") | 71 include("mapped_grid.jl") |