Mercurial > repos > public > sbplib_julia
annotate TODO.md @ 319:05ac7d7f9176
Move research and thinking from TODO.md to Notes.md
author | Jonatan Werpers <jonatan@werpers.com> |
---|---|
date | Thu, 10 Sep 2020 10:56:31 +0200 |
parents | 0c8d4a734c4f |
children | d705b397aa33 |
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 |
297
dfadc0bafbbd
Fix some formatting errors in TODO.md
Jonatan Werpers <jonatan@werpers.com>
parents:
295
diff
changeset
|
8 - [ ] Add new Laplace opertor to DiffOps, probably named WaveEqOp(?!!?) |
294 | 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 | |
307 | 13 - [ ] Use traits for symmetric tensor mappings such that apply_transpoe = apply for all such mappings |
294 | 14 - [x] Move Laplace tensor operator to different package |
15 - [x] Remove grid as a property of the Laplace tensor operator | |
307 | 16 - [ ] Update how dependencies are handled for tests. This was updated in Julia v1.2 and would allow us to use test specific dev packages. |
119 | 17 |
294 | 18 # Wrap up task |
297
dfadc0bafbbd
Fix some formatting errors in TODO.md
Jonatan Werpers <jonatan@werpers.com>
parents:
295
diff
changeset
|
19 |
294 | 20 - [ ] Kolla att vi har @inbounds och @propagate_inbounds på rätt ställen |
21 - [ ] Kolla att vi gör boundschecks överallt och att de är markerade med @boundscheck | |
22 - [ ] Kolla att vi har @inline på rätt ställen | |
23 - [ ] Profilera | |
145
e0c8f5cf3a3f
Rename boundary indentifiers and use them inte the sat functions
Jonatan Werpers <jonatan@werpers.com>
parents:
119
diff
changeset
|
24 |
265
4308b500d6e7
Add ideas to TODO.txt
Vidar Stiernström <vidar.stiernstrom@it.uu.se>
parents:
145
diff
changeset
|
25 |
294 | 26 # 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
|
27 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
|
28 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
|
29 |
11010bb74260
Dispatch getindex for TensorMappingApplication on region indices. Dispatch apply
Vidar Stiernström <vidar.stiernstrom@it.uu.se>
parents:
265
diff
changeset
|
30 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
|
31 apply_quadrature? |
11010bb74260
Dispatch getindex for TensorMappingApplication on region indices. Dispatch apply
Vidar Stiernström <vidar.stiernstrom@it.uu.se>
parents:
265
diff
changeset
|
32 |
11010bb74260
Dispatch getindex for TensorMappingApplication on region indices. Dispatch apply
Vidar Stiernström <vidar.stiernstrom@it.uu.se>
parents:
265
diff
changeset
|
33 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
|
34 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
|
35 design |
284
0b8e041a1873
Change how range_size and domain_size work with BoundaryValues and NormalDerivative
Jonatan Werpers <jonatan@werpers.com>
parents:
274
diff
changeset
|
36 |