Mercurial > repos > public > sbplib_julia
comparison src/Grids/Grids.jl @ 1531:9da4ab4fb85e bugfix/sbp_operators/stencil_return_type
Merge default
author | Jonatan Werpers <jonatan@werpers.com> |
---|---|
date | Thu, 11 Apr 2024 22:50:42 +0200 |
parents | 62f9d0387a2a |
children | ae2dbfb984a9 81e97d3bec8c 611ae2308aa1 |
comparison
equal
deleted
inserted
replaced
1456:f13857f37b8f | 1531:9da4ab4fb85e |
---|---|
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 coarsen | |
17 export refine | |
18 export eval_on | |
19 export componentview | |
20 export ArrayComponentView | |
21 | |
22 export BoundaryIdentifier | |
23 export TensorGridBoundary | |
24 export CartesianBoundary | |
11 | 25 |
12 export TensorGrid | 26 export TensorGrid |
13 export ZeroDimGrid | 27 export ZeroDimGrid |
14 | 28 |
15 export TensorGridBoundary | 29 export EquidistantGrid |
30 export inverse_spacing | |
31 export spacing | |
32 export equidistant_grid | |
16 | 33 |
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 | 34 |
38 abstract type BoundaryIdentifier end | 35 abstract type BoundaryIdentifier end |
39 | 36 |
40 include("grid.jl") | 37 include("grid.jl") |
41 include("tensor_grid.jl") | 38 include("tensor_grid.jl") |