Mercurial > repos > public > sbplib_julia
comparison src/Grids/Grids.jl @ 1751:f3d7e2d7a43f feature/sbp_operators/laplace_curvilinear
Merge feature/grids/manifolds
author | Jonatan Werpers <jonatan@werpers.com> |
---|---|
date | Wed, 11 Sep 2024 16:26:19 +0200 |
parents | 29b96fc75bee 03894fd7b132 |
children | 96f8cad255b4 |
comparison
equal
deleted
inserted
replaced
1731:3684db043add | 1751:f3d7e2d7a43f |
---|---|
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 export ParameterSpace | 8 export ParameterSpace |
10 export HyperBox | 9 export HyperBox |
48 export normal | 47 export normal |
49 | 48 |
50 export BoundaryIdentifier | 49 export BoundaryIdentifier |
51 export TensorGridBoundary | 50 export TensorGridBoundary |
52 export CartesianBoundary | 51 export CartesianBoundary |
52 export LowerBoundary | |
53 export UpperBoundary | |
53 | 54 |
54 export TensorGrid | 55 export TensorGrid |
55 export ZeroDimGrid | 56 export ZeroDimGrid |
56 | 57 |
57 export EquidistantGrid | 58 export EquidistantGrid |