view src/Grids/Grids.jl @ 1157:03c217c50d7c refactor/sbpoperators/inflation

Disregard review comment on scalar multiplication after discussion on Discord. The syntax ``2v[1]`` is described as good in the julia documentation so we keep it for now.
author Jonatan Werpers <jonatan@werpers.com>
date Tue, 29 Nov 2022 21:25:07 +0100
parents dfbd62c7eb09
children 31041ef8092a
line wrap: on
line source

module Grids

using Sbplib.RegionIndices

# 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

include("grid.jl")
include("boundary_identifier.jl")
include("equidistant_grid.jl")

end # module