The proper orthogonal decomposition is a numerical method that enables a reduction in the complexity of computer intensive simulations such as computational fluid dynamics and structural analysis (like crash simulations). Typically in fluid dynamics and turbulences analysis, it is used to replace the Navier–Stokes equations by simpler models to solve.[1]
It belongs to a class of algorithms called model order reduction (or in short model reduction). What it essentially does is to train a model based on simulation data. To this extent, it can be associated with the field of machine learning.
The main use of POD is to decompose a physical field (like pressure, temperature in fluid dynamics or stress and deformation in structural analysis), depending on the different variables that influence its physical behaviors. As its name hints, it's operating an Orthogonal Decomposition along with the Principal Components of the field. As such it is assimilated with the principal component analysis from Pearson in the field of statistics, or the singular value decomposition in linear algebra because it refers to eigenvalues and eigenvectors of a physical field. In those domains, it is associated with the research of Karhunen[2] and Loève,[3] and their Karhunen–Loève theorem.
The first idea behind the Proper Orthogonal Decomposition (POD), as it was originally formulated in the domain of fluid dynamics to analyze turbulences, is to decompose a random vector field u(x, t) into a set of deterministic spatial functions Φk(x) modulated by random time coefficients ak(t) so that:
infty | |
u(x,t)=\sum | |
k=1 |
ak(t)\phik(x)
U=\begin{pmatrix}u(x1,t1)& … &u(xn,t1)\ \vdots&&\vdots\ u(x1,tp)& … &u(xn,tp)\end{pmatrix}
The next step is to compute the covariance matrix C
C=
1 | |
(p-1) |
UTU
We then compute the eigenvalues and eigenvectors of C and we order them from the largest eigenvalue to the smallest.
We obtain n eigenvalues λ1,...,λn and a set of n eigenvectors arranged as columns in an n × n matrix Φ:
\phi=\begin{pmatrix}\phi1,1& … &\phi1,n\ \vdots&&\vdots\ \phin,1& … &\phin,n\end{pmatrix}