view src/Grids/Grids.jl @ 1244:eb19cd128157 refactor/grids

Group eval_on with other gridfunction functionality
author Jonatan Werpers <jonatan@werpers.com>
date Tue, 21 Feb 2023 21:37:37 +0100
parents 783284b3e438
children 476b889f0ffa
line wrap: on
line source

module Grids

using Sbplib.RegionIndices
using Sbplib.LazyTensors

# Grid
export Grid
export dims
export points
export evalOn

# BoundaryIdentifier
export BoundaryIdentifier
export CartesianBoundary
export dim
export region

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

abstract type BoundaryIdentifier end

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


end # module