Description
Implement Anderson acceleration to speed up convergence of nonlinear iterations. Useful for implicit time-stepping or steady-state wave problems.
Background
Anderson acceleration improves fixed-point iterations x_{k+1} = G(x_k) by mixing previous iterates:
x_{k+1} = Σᵢ αᵢ · G(x_{k-m+i})
where coefficients α are found by least-squares to minimize residual.
Tasks
Acceptance Criteria
Parameters
Depth: m = 3-5 (number of previous iterates to use)
Regularization: small ε for least-squares stability
Description
Implement Anderson acceleration to speed up convergence of nonlinear iterations. Useful for implicit time-stepping or steady-state wave problems.
Background
Anderson acceleration improves fixed-point iterations x_{k+1} = G(x_k) by mixing previous iterates:
where coefficients α are found by least-squares to minimize residual.
Tasks
Acceptance Criteria
Parameters