Mercurial > repos > public > sbplib_julia
view src/Grids/Grids.jl @ 1470:07882e390ff5 feature/grids/boundary_indicies
REVIEW: Suggest change to docstring
author | Vidar Stiernström <vidar.stiernstrom@it.uu.se> |
---|---|
date | Thu, 30 Nov 2023 16:45:08 +0100 |
parents | 1e8fbe55916e |
children | 276c38a48aac d9d9ab18cdfc |
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 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 abstract type BoundaryIdentifier end include("grid.jl") include("tensor_grid.jl") include("equidistant_grid.jl") include("zero_dim_grid.jl") end # module