You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Where dxs is a vector of pairs of parameters to the grid step in this dimension, i.e. `[x=>0.2, y=>0.1]`
15
15
16
+
Note that the second argument to `MOLFiniteDifference` is optional, all parameters can be discretized if all boundary conditions are specified
17
+
16
18
Currently supported grid types: `center_align` and `edge_align`
17
19
18
20
center_align: naive grid, starting from lower boundary, ending on upper boundary with step of dx
19
21
20
22
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.
21
23
This provides higher accuracy with neumann/robin boundary conditions.
22
24
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.
0 commit comments