Mercurial > repos > public > sbplib_julia
changeset 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 | 851d1e4ab3de |
| children | 26e168924cf1 |
| files | src/Grids/Grids.jl src/Grids/curvilinear_grid.jl test/Grids/curvilinear_grid_test.jl |
| diffstat | 3 files changed, 10 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/src/Grids/Grids.jl Thu Jun 08 15:52:22 2023 +0200 +++ b/src/Grids/Grids.jl Tue Jun 27 09:36:32 2023 +0200 @@ -35,11 +35,14 @@ export equidistant_grid export CartesianBoundary +export CurvilinearGrid + abstract type BoundaryIdentifier end include("grid.jl") include("tensor_grid.jl") include("equidistant_grid.jl") include("zero_dim_grid.jl") +include("curvilinear_grid.jl") end # module
