comparison src/Grids/Grids.jl @ 1785:96f8cad255b4 feature/sbp_operators/laplace_curvilinear

Merge feature/grids/manifolds
author Jonatan Werpers <jonatan@werpers.com>
date Mon, 16 Sep 2024 10:33:47 +0200
parents f3d7e2d7a43f 819ab806960f
children b8cb38fd67ff
comparison
equal deleted inserted replaced
1751:f3d7e2d7a43f 1785:96f8cad255b4
1 # TODO: Double check that the interfaces for indexing and iterating are fully implemented and tested for all grids. 1 # TODO: Double check that the interfaces for indexing and iterating are fully implemented and tested for all grids.
2 # Review: Address this todo?
2 module Grids 3 module Grids
3 4
4 using Diffinitive.LazyTensors 5 using Diffinitive.LazyTensors
5 using StaticArrays 6 using StaticArrays
6 using LinearAlgebra 7 using LinearAlgebra
62 63
63 64
64 # MappedGrid 65 # MappedGrid
65 export MappedGrid 66 export MappedGrid
66 export jacobian 67 export jacobian
67 export logicalgrid 68 export logical_grid
68 export mapped_grid 69 export mapped_grid
69 export jacobian_determinant
70 export metric_tensor 70 export metric_tensor
71 export metric_tensor_inverse 71 export metric_tensor_inverse
72 72
73 abstract type BoundaryIdentifier end 73 abstract type BoundaryIdentifier end
74 74