pseudorelaxation
Pseudorelaxation is a numerical technique used to accelerate the convergence of iterative methods for solving systems of linear equations, particularly in contexts like computational fluid dynamics or finite element analysis. It is a variation of the Gauss-Seidel method, which is itself an iterative approach to solving linear systems.
The core idea behind pseudorelaxation is to introduce a parameter, often denoted by omega (ω), which modifies
The formula for pseudorelaxation can be expressed as:
x_i^(k+1) = (1 - ω) * x_i^(k) + ω * x_i_new
Here, x_i^(k+1) is the updated value of the i-th variable at iteration k+1, x_i^(k) is its value
If ω = 1, pseudorelaxation reduces to the standard Gauss-Seidel method. If 0 < ω < 1, it is called under-relaxation,
---