Domain Decomposition Method
Schwarz Method
- Overlapping - Dirichlet interface condition
- Jacobin Schwarz Method(JSM): only locally solve the subdomain problem iteratively.
- Restricted additive Schwarz(RAS): First solve the subdomain problem locally, then merge the local solutions by partition of unity.
- Additive Schwarz Method(ASM): First solve the subdomain problem locally, then add the local solutions directly, without using partition of unity.
- Nonoverlapping (or overlapping) - Other interface condition (Robin,Fourier)
- P.L.Lions’ Algorithm.
- Després’ Algorithm.
- Optimized Schwarz Method(OSM): Optimize the transmission condition to minimize the iteration number for convergence.
Classical Continuous Schwarz Method
Jacobi Schwarz Algorithm
Jacobi-Schwarz Algorithm (Laplace Equation)
Problem: Solve
Input: Domain
Output: Approximation
Initialization:
Set
While convergence criterion is not satisfied:
Solve
Boundary conditions:
Solve
Boundary conditions:
End While
Return: Combined solution
Restricted Additive Schwarz (RAS)
RAS Algorithm at the Continuous Level (Laplace Equation)
Problem: Solve
Input: Domain
Output: Approximation
Initialization:
Set
While convergence criterion is not satisfied:
Compute the residual
Find local correction
Boundary conditions:
Find local correction
Boundary conditions:
Compute an average of the local corrections and update the solution:
End While
Return
Additive Schwarz Method (ASM)
AMS Algorithm at the Continuous Level (Laplace Equation)
Problem: Solve
Input: Domain
Output: Approximation
Initialization:
Set
While convergence criterion is not satisfied:
Compute the residual
Find local correction
Boundary conditions:
Find local correction
Boundary conditions:
Add the local corrections and update the solution directly:
End While
Return
Optimized Schwarz Method (OSM)
P.L. Lion’s Algorithm
P.L. Lion's Algorithm (Laplace Equation)
Problem: Solve
Input: Domain
Output: Approximation
Initialization:
Set
While convergence criterion is not satisfied:
Solve
Solve
End While
Return Combined solution
Després’ Algorithm
Després' Algorithm (Helmholtz Equation)
Problem: Solve
Input: Overlapping Domain Decomposition
Output: Approximation
Initialization:
Set
While convergence criterion is not satisfied:
Solve
Solve
End While
Return Combined solution
- Title: Domain Decomposition Method
- Author: Gypsophila
- Created at : 2024-12-20 17:39:16
- Updated at : 2025-01-05 21:28:39
- Link: https://chenx.space/2024/12/20/DomainDecomposition/
- License: This work is licensed under CC BY-NC-SA 4.0.