Mercurial > repos > public > sbplib_julia
comparison TODO.txt @ 291:0f94dc29c4bf
Merge in branch boundary_conditions
author | Jonatan Werpers <jonatan@werpers.com> |
---|---|
date | Mon, 22 Jun 2020 21:43:05 +0200 |
parents | 0b8e041a1873 |
children | 9c12d9eb38fd |
comparison
equal
deleted
inserted
replaced
231:fbabfd4e8f20 | 291:0f94dc29c4bf |
---|---|
6 | 6 |
7 Ändra namn på variabler och funktioner så att det följer style-guide | 7 Ändra namn på variabler och funktioner så att det följer style-guide |
8 | 8 |
9 Profilera | 9 Profilera |
10 | 10 |
11 Konvertera till paket | |
12 Skriv tester | 11 Skriv tester |
13 | 12 |
14 Specificera operatorer i TOML eller något liknande? | 13 Specificera operatorer i TOML eller något liknande? |
14 | |
15 Borde det finns motsvarande apply_stencil för apply_quadrature, | |
16 apply_boundary_value och apply_normal_derivative? | |
17 | |
18 Borde man alltid skicka in N som parameter i apply_2nd_derivative, t.ex som i | |
19 apply_quadrature? | |
20 | |
21 Just nu agerar apply_normal_derivative, apply_boundary_value på inte på v som | |
22 en vektor, utan randvärdet plockas ut utanför. Känns inte konsistent med övrig | |
23 design | |
24 | |
25 ## TODO 2020-06-18 | |
26 * Remove grid as a property of the Laplace tensor operator | |
27 * Add 1D operators (D1, D2, e, d ... ) as TensorOperators | |
28 * Move Laplace tensor operator to different package | |
29 * Add new Laplace opertor to DiffOps, probably named WaveEqOp(?!!?) | |
30 * Decide: Should there be some kind of collection struct for SBP operators (as TensorOperators), providing easy access to all parts (D2, e, d , | |
31 H.. H_gamma etc.) | |
32 * Is "missing" a good value for unknown dimension sizes (of e*g for example) | |
33 * Formalize how range_size() and domain_size() are supposed to work in TensorMappings where dim(domain) != dim(range) (add tests or document) |