Mercurial > repos > public > sbplib_julia
comparison src/Grids/Grids.jl @ 1426:9c689a627244 feature/grids/curvilinear
Add src and test file for curvilinear grid type
| author | Jonatan Werpers <jonatan@werpers.com> |
|---|---|
| date | Tue, 27 Jun 2023 09:36:32 +0200 |
| parents | c0c1189c5f2e |
| children | 6adf31ba6cfd |
comparison
equal
deleted
inserted
replaced
| 1384:851d1e4ab3de | 1426:9c689a627244 |
|---|---|
| 33 export refine | 33 export refine |
| 34 export coarsen | 34 export coarsen |
| 35 export equidistant_grid | 35 export equidistant_grid |
| 36 export CartesianBoundary | 36 export CartesianBoundary |
| 37 | 37 |
| 38 export CurvilinearGrid | |
| 39 | |
| 38 abstract type BoundaryIdentifier end | 40 abstract type BoundaryIdentifier end |
| 39 | 41 |
| 40 include("grid.jl") | 42 include("grid.jl") |
| 41 include("tensor_grid.jl") | 43 include("tensor_grid.jl") |
| 42 include("equidistant_grid.jl") | 44 include("equidistant_grid.jl") |
| 43 include("zero_dim_grid.jl") | 45 include("zero_dim_grid.jl") |
| 46 include("curvilinear_grid.jl") | |
| 44 | 47 |
| 45 end # module | 48 end # module |
