comparison src/Grids/Grids.jl @ 1736:863385aae454 feature/grids/curvilinear

Merge default
author Jonatan Werpers <jonatan@werpers.com>
date Tue, 10 Sep 2024 21:59:10 +0200
parents 88021d580320 471a948cd2b2
children e719c6dadba6
comparison
equal deleted inserted replaced
1735:36986b75bf98 1736:863385aae454
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 module Grids 2 module Grids
3 3
4 using Sbplib.RegionIndices 4 using Diffinitive.LazyTensors
5 using Sbplib.LazyTensors
6 using StaticArrays 5 using StaticArrays
7 using LinearAlgebra 6 using LinearAlgebra
8 7
9 # Grid 8 # Grid
10 export Grid 9 export Grid
24 export normal 23 export normal
25 24
26 export BoundaryIdentifier 25 export BoundaryIdentifier
27 export TensorGridBoundary 26 export TensorGridBoundary
28 export CartesianBoundary 27 export CartesianBoundary
28 export LowerBoundary
29 export UpperBoundary
29 30
30 export TensorGrid 31 export TensorGrid
31 export ZeroDimGrid 32 export ZeroDimGrid
32 33
33 export EquidistantGrid 34 export EquidistantGrid