fipy.solvers.pysparse.linearJORSolver

Classes

LinearJORSolver([tolerance, criterion, ...])

The LinearJORSolver solves a linear system of equations using Jacobi over-relaxation.

class fipy.solvers.pysparse.linearJORSolver.LinearJORSolver(tolerance='default', criterion='default', iterations='default', relaxation=1.0)

Bases: PysparseSolver

The LinearJORSolver solves a linear system of equations using Jacobi over-relaxation. This method solves systems with a general non-symmetric coefficient matrix.

Create a LinearJORSolver object.

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

  • criterion ({'default', 'unscaled', 'RHS', 'matrix', 'initial', 'legacy'}) – Interpretation of tolerance. See Convergence for more information.

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

  • relaxation (float) – Fraction of update to apply

DEFAULT_ITERATIONS = 1000

Default maximum number of iterative steps to perform

DEFAULT_PRECONDITIONER = None

Default preconditioner to apply to the matrix

DEFAULT_TOLERANCE = 1e-05

Default tolerance for linear solves unless criterion=”legacy”

LEGACY_TOLERANCE = 1e-10

Default tolerance for linear solves if criterion=”legacy”

__repr__()

Return repr(self).

property default_tolerance

Default tolerance for linear solve

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