diff src/Grids/Grids.jl @ 1566:b9c7bab94241 feature/grids/manifolds

Merge feature/grids/curvilinear
author Jonatan Werpers <jonatan@werpers.com>
date Thu, 25 Apr 2024 13:22:18 +0200
parents 35fe4375b35f 5d32ecb98db8
children 157c43966b06
line wrap: on
line diff
--- a/src/Grids/Grids.jl	Thu Apr 25 13:21:12 2024 +0200
+++ b/src/Grids/Grids.jl	Thu Apr 25 13:22:18 2024 +0200
@@ -1,3 +1,4 @@
+# TODO: Double check that the interfaces for indexing and iterating are fully implemented and tested for all grids.
 module Grids
 
 using Sbplib.RegionIndices
@@ -50,6 +51,15 @@
 export equidistant_grid
 
 
+# MappedGrid
+export MappedGrid
+export jacobian
+export logicalgrid
+export mapped_grid
+export jacobian_determinant
+export geometric_tensor
+export geometric_tensor_inverse
+
 abstract type BoundaryIdentifier end
 
 include("manifolds.jl")
@@ -57,5 +67,6 @@
 include("tensor_grid.jl")
 include("equidistant_grid.jl")
 include("zero_dim_grid.jl")
+include("mapped_grid.jl")
 
 end # module