Mercurial > repos > public > sbplib_julia
changeset 1664:980b3c8efd41 bugfix/warnings
Merge default
author | Jonatan Werpers <jonatan@werpers.com> |
---|---|
date | Sat, 29 Jun 2024 17:04:32 +0200 |
parents | fddd3a906535 (current diff) e551fe1fff14 (diff) |
children | 7254700c13a7 |
files | |
diffstat | 1 files changed, 15 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/Notes.md Wed Jun 26 09:45:36 2024 +0200 +++ b/Notes.md Sat Jun 29 17:04:32 2024 +0200 @@ -21,6 +21,21 @@ sat(::DifferentialOperator, grid, stencil_set, bc) = ... ``` + +### Update 2024-06-26 +We will run into trouble if we start assuming things about the coupling +between the continuous and discrete setting. We could add representations of +continuous operators but we will also need representations of discrete +operators. Ideally it should be possible to ignore the continuous +representations and only work with the discrete operators without losing +functionality. The discrete representations does not have to be LazyTensors. +The could be used as inputs to methods for `sat`, `difference_operator` and so +on. + +To see need for a fully functional discrete layer we can consider the +optimization of material parameters or something similar. In this case we do +not necessarily want to handle continuous objects. + ## Reading operators Jonatan's suggestion is to add methods to `Laplace`, `SecondDerivative` and