23 |
@param fast Flag to use a fast method based on matrix lumping (default is true) |
@param fast Flag to use a fast method based on matrix lumping (default is true) |
24 |
""" |
""" |
25 |
self.__pde = LinearPDE(domain) |
self.__pde = LinearPDE(domain) |
26 |
self.__pde.setLumping(fast) |
if fast: |
27 |
|
self.__pde.setSolverMethod(LinearPDE.LUMPING) |
28 |
self.__pde.setSymmetryOn() |
self.__pde.setSymmetryOn() |
29 |
self.__pde.setReducedOrderTo(reduce) |
self.__pde.setReducedOrderTo(reduce) |
30 |
self.__pde.setValue(D = 1.) |
self.__pde.setValue(D = 1.) |