comparison src/SbpOperators/boundaryops/normal_derivative.jl @ 1043:c16116e403e2

Merge refactor/lazy_tensors
author Jonatan Werpers <jonatan@werpers.com>
date Tue, 22 Mar 2022 14:33:13 +0100
parents 7fc8df5157a7
children 157a78959e5d
comparison
equal deleted inserted replaced
1039:696a3307b6a4 1043:c16116e403e2
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`.