Mercurial > repos > public > sbplib_julia
view src/Grids/Grids.jl @ 1152:bda0afcf8e52 refactor/grids
REVIEW: Give input on TBD comments, suggest name change of evalOn.
author | Vidar Stiernström <vidar.stiernstrom@it.uu.se> |
---|---|
date | Thu, 20 Oct 2022 20:59:56 +0200 |
parents | 31041ef8092a |
children | 8806f4cd6fee |
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 include("grid.jl") include("boundary_identifier.jl") include("equidistant_grid.jl") end # module