Mercurial > repos > public > sbplib_julia
view src/Grids/Grids.jl @ 1493:58b8da9c7e56 feature/grids/curvilinear
Implement boundary_indices
author | Jonatan Werpers <jonatan@werpers.com> |
---|---|
date | Fri, 01 Dec 2023 12:00:07 +0100 |
parents | d9d9ab18cdfc |
children | ae2dbfb984a9 |
line wrap: on
line source
# TODO: Double check that the interfaces for indexing and iterating are fully implemented and tested for all grids. module Grids using Sbplib.RegionIndices using Sbplib.LazyTensors using StaticArrays # Grid export Grid export coordinate_size export component_type export grid_id export boundary_id export boundary_indices export boundary_identifiers export boundary_grid export eval_on export coarsen export getcomponent export refine export BoundaryIdentifier export TensorGridBoundary export CartesianBoundary export TensorGrid export ZeroDimGrid export EquidistantGrid export inverse_spacing export spacing export equidistant_grid # CurvilinearGrid export CurvilinearGrid export jacobian export logicalgrid abstract type BoundaryIdentifier end include("grid.jl") include("tensor_grid.jl") include("equidistant_grid.jl") include("zero_dim_grid.jl") include("curvilinear_grid.jl") end # module