fipy.solvers.scipy.linearPCGSolver

Classes

LinearPCGSolver([tolerance, iterations, precon])

The LinearPCGSolver is an interface to the CG solver in Scipy, with no preconditioning by default.

class fipy.solvers.scipy.linearPCGSolver.LinearPCGSolver(tolerance=1e-15, iterations=2000, precon=None)

Bases: _ScipyKrylovSolver

The LinearPCGSolver is an interface to the CG solver in Scipy, with no preconditioning by default.

Parameters:
  • tolerance (float) – Required error tolerance.

  • iterations (int) – Maximum number of iterative steps to perform.

  • precon – Preconditioner to use.

__repr__()

Return repr(self).

Last updated on Jun 26, 2024. Created using Sphinx 7.1.2.