comparison src/SbpOperators/boundaryops/boundary_restriction.jl @ 1347:08f06bfacd5c refactor/grids

Fix typos and formatting of documentation
author Vidar Stiernström <vidar.stiernstrom@it.uu.se>
date Thu, 18 May 2023 22:53:31 +0200
parents e94ddef5e72f
children 65b2d2c72fbc
comparison
equal deleted inserted replaced
1345:c2012db881cb 1347:08f06bfacd5c
3 boundary_restriction(g::TensorGrid, stencil_set::StencilSet, boundary::TensorGridBoundary) 3 boundary_restriction(g::TensorGrid, stencil_set::StencilSet, boundary::TensorGridBoundary)
4 boundary_restriction(g::EquidistantGrid, stencil_set::StencilSet, boundary) 4 boundary_restriction(g::EquidistantGrid, stencil_set::StencilSet, boundary)
5 5
6 Creates boundary restriction operators `e` as `LazyTensor`s on `boundary` 6 Creates boundary restriction operators `e` as `LazyTensor`s on `boundary`
7 7
8 `e` is the restriction of a grid function to `boundary` using the 'e' stencil 8 `e` restricts a grid function on `g` to `boundary` using the 'e' stencil
9 in the guven stencil set. `e'` is the prolongation of a grid function on 9 in `stencil_set`. `e'` prolongates a grid function on
10 `boundary` to the whole grid using the same stencil. On a one-dimensional 10 `boundary` to the whole grid using the same stencil. On a one-dimensional
11 grid, `e` is a `BoundaryOperator`. On a multi-dimensional grid, `e` is the 11 grid, `e` is a `BoundaryOperator`. On a multi-dimensional grid, `e` is the
12 inflation of a `BoundaryOperator`. 12 inflation of a `BoundaryOperator`.
13 13
14 See also: [`BoundaryOperator`](@ref), [`LazyTensors.inflate`](@ref). 14 See also: [`BoundaryOperator`](@ref), [`LazyTensors.inflate`](@ref).