Mercurial > repos > public > sbplib_julia
diff src/Grids/Grids.jl @ 1829:871f3f1decea refactor/grids/iterable_boundary_indices
Merge default
author | Jonatan Werpers <jonatan@werpers.com> |
---|---|
date | Sun, 20 Oct 2024 21:38:09 +0200 |
parents | a6deaf70862b |
children | 2b5f81e288f1 f93ba5832146 e68669552ed8 |
line wrap: on
line diff
--- a/src/Grids/Grids.jl Tue Sep 17 11:20:00 2024 +0200 +++ b/src/Grids/Grids.jl Sun Oct 20 21:38:09 2024 +0200 @@ -1,8 +1,8 @@ module Grids -using Sbplib.RegionIndices -using Sbplib.LazyTensors +using Diffinitive.LazyTensors using StaticArrays +using LinearAlgebra # Grid export Grid @@ -13,15 +13,19 @@ export boundary_indices export boundary_identifiers export boundary_grid +export min_spacing export coarsen export refine export eval_on export componentview export ArrayComponentView +export normal export BoundaryIdentifier export TensorGridBoundary export CartesianBoundary +export LowerBoundary +export UpperBoundary export TensorGrid export ZeroDimGrid @@ -32,11 +36,17 @@ export equidistant_grid -abstract type BoundaryIdentifier end +# MappedGrid +export MappedGrid +export jacobian +export logical_grid +export mapped_grid +export metric_tensor include("grid.jl") include("tensor_grid.jl") include("equidistant_grid.jl") include("zero_dim_grid.jl") +include("mapped_grid.jl") end # module