Mercurial > repos > public > sbplib_julia
view src/Grids/Grids.jl @ 1485:e96ee7d7ac9c feature/boundary_conditions
Test sat_tensors for Laplace w. Neumann conditions
author | Vidar Stiernström <vidar.stiernstrom@it.uu.se> |
---|---|
date | Mon, 25 Dec 2023 23:39:56 +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