Mercurial > repos > public > sbplib_julia
comparison src/SbpOperators/boundaryops/normal_derivative.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 | f4dc17cfafce |
comparison
equal
deleted
inserted
replaced
1345:c2012db881cb | 1347:08f06bfacd5c |
---|---|
3 normal_derivative(g::TensorGrid, stencil_set::StencilSet, boundary::TensorGridBoundary) | 3 normal_derivative(g::TensorGrid, stencil_set::StencilSet, boundary::TensorGridBoundary) |
4 normal_derivative(g::EquidistantGrid, stencil_set::StencilSet, boundary) | 4 normal_derivative(g::EquidistantGrid, stencil_set::StencilSet, boundary) |
5 | 5 |
6 Creates the normal derivative boundary operator `d` as a `LazyTensor` | 6 Creates the normal derivative boundary operator `d` as a `LazyTensor` |
7 | 7 |
8 `d` computes the normal derivative of a grid function on `boundary` using the | 8 `d` computes the normal derivative at `boundary` of a grid function on `g` using the |
9 'd1' stencil in the given stencil_set. `d'` is the prolongation of the normal | 9 'd1' stencil in `stencil_set`. `d'` is the prolongation of the normal |
10 derivative of a grid function to the whole grid using the same stencil. On a | 10 derivative of a grid function to the whole of `g` using the same stencil. On a |
11 one-dimensional `grid`, `d` is a `BoundaryOperator`. On a multi-dimensional | 11 one-dimensional grid, `d` is a `BoundaryOperator`. On a multi-dimensional |
12 `grid`, `d` is the inflation of a `BoundaryOperator`. | 12 grid, `d` is the inflation of a `BoundaryOperator`. |
13 | 13 |
14 See also: [`BoundaryOperator`](@ref), [`LazyTensors.inflate`](@ref). | 14 See also: [`BoundaryOperator`](@ref), [`LazyTensors.inflate`](@ref). |
15 """ | 15 """ |
16 function normal_derivative end | 16 function normal_derivative end |
17 | 17 |