Mercurial > repos > public > sbplib_julia
annotate TODO.md @ 295:4735abcf5d42
Rename TODO.txt to TODO.md
author | Jonatan Werpers <jonatan@werpers.com> |
---|---|
date | Mon, 22 Jun 2020 22:18:40 +0200 |
parents | TODO.txt@9c12d9eb38fd |
children | dfadc0bafbbd |
rev | line source |
---|---|
102 | 1 # TODO |
2 | |
294 | 3 ## Skämskudde |
4 - [ ] Ändra namn på variabler och funktioner så att det följer style-guide | |
5 - [ ] Skriv tester | |
102 | 6 |
294 | 7 ## Coding |
8 * Add new Laplace opertor to DiffOps, probably named WaveEqOp(?!!?) | |
9 - [ ] Add 1D operators (D1, D2, e, d ... ) as TensorOperators | |
10 - [ ] Create a struct that bundles the necessary Tensor operators for solving the wave equation. | |
11 - [ ] Use traits like IndexStyle, IndexLinear, IndexCartesian to differentiate | |
12 TensorMappings that are flexible in size and those that are fixed in size | |
13 - [x] Move Laplace tensor operator to different package | |
14 - [x] Remove grid as a property of the Laplace tensor operator | |
119 | 15 |
294 | 16 ## Reasearch and thinking |
17 - [ ] Redo all Tensor applys to take Vararg instead of tuple of Index? | |
18 Have we been down that road before? Is there any reason not to do this? | |
19 - [ ] Check how the native julia doc generator works | |
20 * Check if Vidars design docs fit in there | |
21 - [ ] Formalize how range_size() and domain_size() are supposed to work in TensorMappings where dim(domain) != dim(range) (add tests or document) | |
22 - [x] Should there be some kind of collection struct for SBP operators (as TensorOperators), providing easy access to all parts (D2, e, d , -> YES! | |
23 H.. H_gamma etc.) | |
24 - [x] Is "missing" a good value for unknown dimension sizes (of e*g for example) | |
119 | 25 |
294 | 26 # Wrap up task |
27 - [ ] Kolla att vi har @inbounds och @propagate_inbounds på rätt ställen | |
28 - [ ] Kolla att vi gör boundschecks överallt och att de är markerade med @boundscheck | |
29 - [ ] Kolla att vi har @inline på rätt ställen | |
30 - [ ] Profilera | |
145
e0c8f5cf3a3f
Rename boundary indentifiers and use them inte the sat functions
Jonatan Werpers <jonatan@werpers.com>
parents:
119
diff
changeset
|
31 |
265
4308b500d6e7
Add ideas to TODO.txt
Vidar Stiernström <vidar.stiernstrom@it.uu.se>
parents:
145
diff
changeset
|
32 |
294 | 33 # Old stuff todos (Are these still relevant?) |
274
11010bb74260
Dispatch getindex for TensorMappingApplication on region indices. Dispatch apply
Vidar Stiernström <vidar.stiernstrom@it.uu.se>
parents:
265
diff
changeset
|
34 Borde det finns motsvarande apply_stencil för apply_quadrature, |
11010bb74260
Dispatch getindex for TensorMappingApplication on region indices. Dispatch apply
Vidar Stiernström <vidar.stiernstrom@it.uu.se>
parents:
265
diff
changeset
|
35 apply_boundary_value och apply_normal_derivative? |
11010bb74260
Dispatch getindex for TensorMappingApplication on region indices. Dispatch apply
Vidar Stiernström <vidar.stiernstrom@it.uu.se>
parents:
265
diff
changeset
|
36 |
11010bb74260
Dispatch getindex for TensorMappingApplication on region indices. Dispatch apply
Vidar Stiernström <vidar.stiernstrom@it.uu.se>
parents:
265
diff
changeset
|
37 Borde man alltid skicka in N som parameter i apply_2nd_derivative, t.ex som i |
11010bb74260
Dispatch getindex for TensorMappingApplication on region indices. Dispatch apply
Vidar Stiernström <vidar.stiernstrom@it.uu.se>
parents:
265
diff
changeset
|
38 apply_quadrature? |
11010bb74260
Dispatch getindex for TensorMappingApplication on region indices. Dispatch apply
Vidar Stiernström <vidar.stiernstrom@it.uu.se>
parents:
265
diff
changeset
|
39 |
11010bb74260
Dispatch getindex for TensorMappingApplication on region indices. Dispatch apply
Vidar Stiernström <vidar.stiernstrom@it.uu.se>
parents:
265
diff
changeset
|
40 Just nu agerar apply_normal_derivative, apply_boundary_value på inte på v som |
11010bb74260
Dispatch getindex for TensorMappingApplication on region indices. Dispatch apply
Vidar Stiernström <vidar.stiernstrom@it.uu.se>
parents:
265
diff
changeset
|
41 en vektor, utan randvärdet plockas ut utanför. Känns inte konsistent med övrig |
11010bb74260
Dispatch getindex for TensorMappingApplication on region indices. Dispatch apply
Vidar Stiernström <vidar.stiernstrom@it.uu.se>
parents:
265
diff
changeset
|
42 design |
284
0b8e041a1873
Change how range_size and domain_size work with BoundaryValues and NormalDerivative
Jonatan Werpers <jonatan@werpers.com>
parents:
274
diff
changeset
|
43 |
294 | 44 Specificera operatorer i TOML eller något liknande? |