comparison src/Grids/Grids.jl @ 1802:b8cb38fd67ff feature/sbp_operators/laplace_curvilinear

Merge feature/grids/manifolds
author Jonatan Werpers <jonatan@werpers.com>
date Wed, 02 Oct 2024 08:53:01 +0200
parents 96f8cad255b4 2b5f81e288f1
children b0915f43b122
comparison
equal deleted inserted replaced
1790:602104ac0e41 1802:b8cb38fd67ff
1 # TODO: Double check that the interfaces for indexing and iterating are fully implemented and tested for all grids.
2 # Review: Address this todo?
3 module Grids 1 module Grids
4 2
5 using Diffinitive.LazyTensors 3 using Diffinitive.LazyTensors
6 using StaticArrays 4 using StaticArrays
7 using LinearAlgebra 5 using LinearAlgebra
66 export MappedGrid 64 export MappedGrid
67 export jacobian 65 export jacobian
68 export logical_grid 66 export logical_grid
69 export mapped_grid 67 export mapped_grid
70 export metric_tensor 68 export metric_tensor
71 export metric_tensor_inverse
72 69
73 abstract type BoundaryIdentifier end 70 abstract type BoundaryIdentifier end
74 71
75 include("manifolds.jl") 72 include("manifolds.jl")
76 include("grid.jl") 73 include("grid.jl")