Content deleted Content added
m clean up using AWB |
No edit summary |
||
(21 intermediate revisions by 18 users not shown) | |||
Line 1:
{{No footnotes|date=December 2024}}
In [[mathematics]], the '''additive Schwarz method''', named after [[Hermann Schwarz]], solves a [[boundary value problem]] for a [[partial differential equation]] approximately by splitting it into boundary value problems on smaller domains and adding the results.
== Overview ==
Partial differential equations (PDEs) are used in all
{{block indent | em = 1.5 | text =
<math display="block">\begin{align}
&f_{xx}(x,y) + f_{yy}(x,y) = 0 \\
\end{align}</math>
}}
Here, the [[___domain (
This particular problem can be solved exactly on paper, so there is no need for a computer. However, this is an exceptional case, and most BVPs cannot be solved exactly. The only possibility is to use a computer to find an approximate solution.
Line 18 ⟶ 23:
=== Solving on a computer ===
A typical way of doing this is to ''sample'' {{math|''f''}} at regular [[interval (mathematics)|intervals]]
There are some difficulties, for instance it is not possible to calculate {{math|''f''<sub>''xx''</sub>(0.5,0.5)}} knowing ''f'' at only 64 points in the square. To overcome this, one uses some sort of numerical approximation of the derivatives, see for instance the [[finite element method]] or [[finite difference]]s. We ignore these difficulties and concentrate on another aspect of the problem.
=== Solving linear problems ===
Whichever method we choose to solve this problem, we will need to solve a large [[linear system of equations]]. The reader
{{NumBlk||<math display="block">2a + 5b = 12</math>|{{EquationRef|<nowiki>*</nowiki>}}}}
<math display="block">6a - 3b = -3</math>
This is a system of 2 equations in 2 unknowns (
▲This is a system of 2 equations in 2 unknowns (''a'' and ''b''). If we solve the BVP above in the manner suggested, we will need to solve a system of 64 equations in 64 unknowns. This is not a hard problem for modern computers, but if we use a larger number of samples, even modern computers cannot solve the BVP very efficiently.
=== Domain decomposition ===
Which brings us to ___domain decomposition methods. If we split the ___domain {{math|[0,1]
==== Size of the problems ====
In terms of the linear systems, we're trying to split the system of 64 equations in 64 unknowns into two systems of 32 equations in 32 unknowns. This would be a clear gain, for the following reason. Looking back at system {{EquationNote|*|(*)}}, we see that there are 6 important pieces of information. They are the coefficients of ''a'' and ''b'' (2,5 on the first line and 6,
<math display="block">2a = 12</math>
<math display="block">-3b = -3</math>
We see that this system has only 4 important pieces of information. This means that a computer program will have an easier time solving two
==== Domain decomposition algorithm ====
Unfortunately, for technical
There are two ways in which this can be better than solving the base
In fact, solving two
== A technical example ==
Line 64 ⟶ 68:
We will be solving the partial differential equation
{{NumBlk||<math display="block">u_{xx} + u_{yy} = f</math>|{{EquationRef|<nowiki>**</nowiki>}}}}
We decompose the ___domain {{math|'''R'''
<math display="block"> \begin{align}
u_{xx}^{(j)} + u_{yy}^{(j)} &= f \;\; \text{ in } H_j \\
u^{(j)}(x_j, y) &= g(y)
\end{align}</math>
where {{math|1=''x''<sub>1</sub> = 1}} and {{math|1=''x''<sub>2</sub> = 0}} and taking boundedness at infinity as the other boundary condition. We denote the solution {{math|''u''<sup>( ''j'' )</sup>}} of the above problem by {{math|S(''f'',''g'')}}. Note that {{math|S}} is bilinear.
The Schwarz algorithm proceeds as follows:
#Start with approximate solutions {{math|''u''<sup>(
#Calculate {{math|1=''u''<sup>(
#Increase
==
*[[Domain decomposition method]]
*[[Schwarz alternating method]]
== References ==▼
{{refbegin}}
* {{cite book | first1 = Barry | last1 = Smith
* {{cite book | first1 = Andrea | last1 = Toselli
{{refend}}
== External links ==
* [http://www.ddm.org The official Domain Decomposition Methods page]
{{Numerical PDE}}
▲== References ==
▲* Barry Smith, Petter Bjørstad, William Gropp, Domain Decomposition, Parallel Multilevel Methods for Elliptic Partial Differential Equations, Cambridge University Press 1996
▲* Andrea Toselli and Olof Widlund, Domain Decomposition Methods - Algorithms and Theory, Springer Series in Computational Mathematics, Vol. 34, 2004
[[Category:
|