view src/Grids/Grids.jl @ 1619:1937be9502a7 feature/boundary_conditions

REVIEW: Minor fixes to doc strings in laplace.jl
author Jonatan Werpers <jonatan@werpers.com>
date Tue, 11 Jun 2024 00:19:09 +0200
parents 3e7438e2a033
children 5f348cc5598e b02917bcd7d5
line wrap: on
line source

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 coarsen
export refine
export eval_on
export componentview
export ArrayComponentView

export BoundaryIdentifier
export TensorGridBoundary
export CartesianBoundary

export TensorGrid
export ZeroDimGrid

export EquidistantGrid
export inverse_spacing
export spacing
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