Mercurial > repos > public > sbplib_julia
comparison src/SbpOperators/boundaryops/normal_derivative.jl @ 995:1ba8a398af9c refactor/lazy_tensors
Rename types
author | Jonatan Werpers <jonatan@werpers.com> |
---|---|
date | Fri, 18 Mar 2022 21:14:47 +0100 |
parents | 38d1752a9aff |
children | 7fc8df5157a7 05a25a5063bb |
comparison
equal
deleted
inserted
replaced
994:55ab7801c45f | 995:1ba8a398af9c |
---|---|
1 """ | 1 """ |
2 normal_derivative(grid, closure_stencil::Stencil, boundary) | 2 normal_derivative(grid, closure_stencil::Stencil, boundary) |
3 | 3 |
4 Creates the normal derivative boundary operator `d` as a `TensorMapping` | 4 Creates the normal derivative boundary operator `d` as a `LazyTensor` |
5 | 5 |
6 `d` computes the normal derivative of a grid function on `boundary` a `Stencil` `closure_stencil`. | 6 `d` computes the normal derivative of a grid function on `boundary` a `Stencil` `closure_stencil`. |
7 `d'` is the prolongation of the normal derivative of a grid function to the whole grid using the same `closure_stencil`. | 7 `d'` is the prolongation of the normal derivative of a grid function to the whole grid using the same `closure_stencil`. |
8 On a one-dimensional `grid`, `d` is a `BoundaryOperator`. On a multi-dimensional `grid`, `d` is the inflation of | 8 On a one-dimensional `grid`, `d` is a `BoundaryOperator`. On a multi-dimensional `grid`, `d` is the inflation of |
9 a `BoundaryOperator`. | 9 a `BoundaryOperator`. |