Skip to content

Commit f43f371

Browse files
authored
Update readme
1 parent c7fd858 commit f43f371

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

README.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,22 @@ prob = discretize(pdesys, discretization)
1313
```
1414
Where dxs is a vector of pairs of parameters to the grid step in this dimension, i.e. `[x=>0.2, y=>0.1]`
1515

16+
Note that the second argument to `MOLFiniteDifference` is optional, all parameters can be discretized if all boundary conditions are specified
17+
1618
Currently supported grid types: `center_align` and `edge_align`
1719

1820
center_align: naive grid, starting from lower boundary, ending on upper boundary with step of dx
1921

2022
edge_align: offset grid, set halfway between the points that would be generated with center_align, with extra points at either end that are above and below the supremum and infimum by dx/2.
2123
This provides higher accuracy with neumann/robin boundary conditions.
2224

23-
Currently boundary conditions defined in terms of derivatives at the boundary are unsupported.
25+
Currently boundary conditions defined in terms of derivatives at the boundary are unsupported above 1 discretized dimension. Periodic conditions are also unsupported.
26+
27+
# Coming soon:
28+
- Arbitrary approximation order
29+
- Above mentioned unsupported boundary conditions supported
30+
- Staggered grids
31+
- More types of domain
2432

2533
## Full Example:
2634
```

0 commit comments

Comments
 (0)