Mercurial > repos > public > sbplib_julia
annotate grid_refactor.md @ 1348:279179677040 refactor/grids
Add testsets under "Indexing interface" for tensor grids
author | Jonatan Werpers <jonatan@werpers.com> |
---|---|
date | Fri, 19 May 2023 14:31:16 +0200 |
parents | c2012db881cb |
children |
rev | line source |
---|---|
1222 | 1 # Grids refactor |
2 | |
1277
79647b60a73b
Add and delete notes
Jonatan Werpers <jonatan@werpers.com>
parents:
1275
diff
changeset
|
3 ## Change summary |
79647b60a73b
Add and delete notes
Jonatan Werpers <jonatan@werpers.com>
parents:
1275
diff
changeset
|
4 * `EquidistantGrid` is now only a 1D thing. |
79647b60a73b
Add and delete notes
Jonatan Werpers <jonatan@werpers.com>
parents:
1275
diff
changeset
|
5 * Higher dimensions are supported through `TensorGrid`. |
79647b60a73b
Add and delete notes
Jonatan Werpers <jonatan@werpers.com>
parents:
1275
diff
changeset
|
6 * The old behavior of `EquidistantGrid` has been moved to the function `equidistant_grid`. |
79647b60a73b
Add and delete notes
Jonatan Werpers <jonatan@werpers.com>
parents:
1275
diff
changeset
|
7 * Grids embedded in higher dimensions are now supported through tensor products with `ZeroDimGrid`s. |
79647b60a73b
Add and delete notes
Jonatan Werpers <jonatan@werpers.com>
parents:
1275
diff
changeset
|
8 * Vector valued grid functions are now supported and the default element type is `SVector`. |
79647b60a73b
Add and delete notes
Jonatan Werpers <jonatan@werpers.com>
parents:
1275
diff
changeset
|
9 * Grids are now expected to support Julia's indexing and iteration interface. |
1279 | 10 * `eval_on` can be called with both `f(x,y,...)` and `f(x̄)`. |
1277
79647b60a73b
Add and delete notes
Jonatan Werpers <jonatan@werpers.com>
parents:
1275
diff
changeset
|
11 |
79647b60a73b
Add and delete notes
Jonatan Werpers <jonatan@werpers.com>
parents:
1275
diff
changeset
|
12 ## TODO |
79647b60a73b
Add and delete notes
Jonatan Werpers <jonatan@werpers.com>
parents:
1275
diff
changeset
|
13 * Delete this document, move remaining notes to Notes.md |