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]`
16
+
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
17
16
18
Note that the second argument to `MOLFiniteDifference` is optional, all parameters can be discretized if all boundary conditions are specified
17
19
18
20
Currently supported grid types: `center_align` and `edge_align`
19
21
20
-
center_align: naive grid, starting from lower boundary, ending on upper boundary with step of dx
22
+
`center_align`: naive grid, starting from lower boundary, ending on upper boundary with step of `dx`
21
23
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.
24
+
`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`.
23
25
This provides higher accuracy with neumann/robin boundary conditions.
24
26
25
27
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