Mercurial > repos > public > sbplib_julia
comparison src/Grids/Grids.jl @ 1473:869a40cda18c
Merge feature/grids/boundary_indicies
author | Jonatan Werpers <jonatan@werpers.com> |
---|---|
date | Fri, 01 Dec 2023 11:48:04 +0100 |
parents | 1e8fbe55916e |
children | 276c38a48aac d9d9ab18cdfc |
comparison
equal
deleted
inserted
replaced
1443:f217c6167952 | 1473:869a40cda18c |
---|---|
6 | 6 |
7 # Grid | 7 # Grid |
8 export Grid | 8 export Grid |
9 export coordinate_size | 9 export coordinate_size |
10 export component_type | 10 export component_type |
11 export grid_id | |
12 export boundary_id | |
13 export boundary_indices | |
14 export boundary_identifiers | |
15 export boundary_grid | |
16 export eval_on | |
17 export coarsen | |
18 export getcomponent | |
19 export refine | |
20 | |
21 export BoundaryIdentifier | |
22 export TensorGridBoundary | |
23 export CartesianBoundary | |
11 | 24 |
12 export TensorGrid | 25 export TensorGrid |
13 export ZeroDimGrid | 26 export ZeroDimGrid |
14 | 27 |
15 export TensorGridBoundary | 28 export EquidistantGrid |
29 export inverse_spacing | |
30 export spacing | |
31 export equidistant_grid | |
16 | 32 |
17 export grid_id | |
18 export boundary_id | |
19 | |
20 export eval_on | |
21 export getcomponent | |
22 | |
23 # BoundaryIdentifier | |
24 export BoundaryIdentifier | |
25 | |
26 | |
27 # EquidistantGrid | |
28 export EquidistantGrid | |
29 export spacing | |
30 export inverse_spacing | |
31 export boundary_identifiers | |
32 export boundary_grid | |
33 export refine | |
34 export coarsen | |
35 export equidistant_grid | |
36 export CartesianBoundary | |
37 | 33 |
38 abstract type BoundaryIdentifier end | 34 abstract type BoundaryIdentifier end |
39 | 35 |
40 include("grid.jl") | 36 include("grid.jl") |
41 include("tensor_grid.jl") | 37 include("tensor_grid.jl") |