view src/Grids/Grids.jl @ 1272:3637daad71e8 refactor/grids

Add function target_manifold_dim for Grid
author Jonatan Werpers <jonatan@werpers.com>
date Sat, 25 Feb 2023 22:49:43 +0100
parents 5977d7628d55
children 17d435c08773
line wrap: on
line source

module Grids

using Sbplib.RegionIndices
using Sbplib.LazyTensors
using StaticArrays

# Grid
export Grid
export target_manifold_dim
export dims

export TensorGrid
export ZeroDimGrid

export TensorGridBoundary

export eval_on
export getcomponent

# BoundaryIdentifier
export BoundaryIdentifier


# EquidistantGrid
export EquidistantGrid
export spacing
export inverse_spacing
export boundary_identifiers
export boundary_grid
export refine
export coarsen
export equidistant_grid

abstract type BoundaryIdentifier end

include("grid.jl")
include("tensor_grid.jl")
include("equidistant_grid.jl")
include("zero_dim_grid.jl")


end # module