Difference between revisions of "Fluid Mechanics"
(→Numerical examples) |
(→Numerical examples) |
||
(4 intermediate revisions by 3 users not shown) | |||
Line 7: | Line 7: | ||
\label{NavierStokes} | \label{NavierStokes} | ||
\end{equation} | \end{equation} | ||
− | also known as a Navier-Stokes equation. | + | also known as a Navier-Stokes equation. |
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
Note that the \b{v}\b{v} stands for the tensor or dyadic product \[ \b{v}\b{v} = \b{v}\otimes\b{v} = \b{v}\b{v}^\T = \left[ \begin{matrix} | Note that the \b{v}\b{v} stands for the tensor or dyadic product \[ \b{v}\b{v} = \b{v}\otimes\b{v} = \b{v}\b{v}^\T = \left[ \begin{matrix} | ||
Line 21: | Line 14: | ||
{{v}_{n}}{{v}_{1}} & \cdots & {{v}_{n}}{{v}_{n}} \\ | {{v}_{n}}{{v}_{1}} & \cdots & {{v}_{n}}{{v}_{n}} \\ | ||
\end{matrix} \right]\] | \end{matrix} \right]\] | ||
− | An example | + | |
+ | Combining equation \ref{NavierStokes} and mass contiunity equation | ||
+ | \begin{equation} | ||
+ | \frac{\partial \rho }{\partial t} + \nabla \cdot (\rho {\bf{u}}) = 0. | ||
+ | \end{equation} | ||
+ | |||
+ | simplifies advection term into (see [https://en.wikipedia.org/wiki/Derivation_of_the_Navier%E2%80%93Stokes_equations] for derivation) | ||
+ | |||
+ | \frac{\partial \left( \rho \b{v} \right)}{\partial t}+\nabla \cdot \left( \rho \b{vv} \right)=\frac{\partial \left( \rho \b{v} \right)}{\partial t}+(\rho \b{v}\cdot \nabla )\cdot \b{v}. | ||
+ | |||
+ | An example of advection term in 2D would therefore be | ||
\[\left( \b{v}\cdot \nabla \right)\b{v}=\left( \left( \begin{matrix} | \[\left( \b{v}\cdot \nabla \right)\b{v}=\left( \left( \begin{matrix} | ||
u \\ | u \\ | ||
Line 36: | Line 39: | ||
\end{matrix} \right)\] | \end{matrix} \right)\] | ||
− | The goal of CFD is to solve system \ref{NavierStokes} and \ref{contuinity}. It is obvious that a special treatment will be needed to couple both equations. In following discussion we cover some basic approaches, how this can be accomplished. | + | |
+ | In many cases we are interested in the incompressible fluids (Ma<0.3), reducing the continuity equation to | ||
+ | \begin{equation} | ||
+ | \nabla \cdot \b{v}=0 | ||
+ | \label{contuinity} | ||
+ | \end{equation} | ||
+ | |||
+ | |||
+ | The goal of CFD is to solve system \ref{NavierStokes} and \ref{contuinity}. It is obvious that a special treatment will be needed to couple both equations. In the following discussion we cover some basic approaches, how this can be accomplished. | ||
= Solutions algorithms = | = Solutions algorithms = | ||
Line 223: | Line 234: | ||
= Numerical examples = | = Numerical examples = | ||
− | * [[Lid driven cavity]] | + | * [[Lid driven cavity]] |
+ | * [[Burgers' equation]] | ||
* [[de Vahl Davis natural convection test]] | * [[de Vahl Davis natural convection test]] | ||
* [[Natural convection in 3D irregular domain]] | * [[Natural convection in 3D irregular domain]] | ||
+ | * [[Natural convection from heated cylinder]] | ||
* [[Natural convection between concentric cylinders]] | * [[Natural convection between concentric cylinders]] | ||
− | + | * [[Non-Newtonian fluid]] | |
− | |||
− | * | ||
− | |||
− | |||
− | |||
− | |||
− |
Latest revision as of 15:23, 2 March 2024
Contents
[hide]Introduction
Computational fluid dynamics (CFD) is a field of a great interest among researchers in many fields of science, e.g. studying mathematical fundaments of numerical methods, developing novel physical models, improving computer implementations, and many others. Pushing the limits of all involved fields of science helps community to deepen the understanding of several natural and technological phenomena. Weather forecast, ocean dynamics, water transport, casting, various energetic studies, etc., are just few examples where fluid dynamics plays a crucial role. The core problem of the CFD is solving the Navier-Stokes Equation or its variants, e.g. Darcy or Brinkman equation for flow in porous media. Here, we discuss basic algorithms for solving CFD problems. Check reference list on the main page for more details about related work.
Long story short, we want to solve \begin{equation} \frac{\partial \b{v}}{\partial t}+\nabla \cdot ( \rho \b{vv}) = -\nabla p+ \nabla(\mu \nabla\b{v})+\b{f} \label{NavierStokes} \end{equation}
Note that the \b{v}\b{v} stands for the tensor or dyadic product \b{v}\b{v} = \b{v}\otimes\b{v} = \b{v}\b{v}^\T = \left[ \begin{matrix} {{v}_{1}}{{v}_{1}} & \cdots & {{v}_{1}}{{v}_{n}} \\ \vdots & \ddots & \vdots \\ {{v}_{n}}{{v}_{1}} & \cdots & {{v}_{n}}{{v}_{n}} \\ \end{matrix} \right]
Combining equation \ref{NavierStokes} and mass contiunity equation \begin{equation} \frac{\partial \rho }{\partial t} + \nabla \cdot (\rho {\bf{u}}) = 0. \end{equation}
simplifies advection term into (see [1] for derivation)
\frac{\partial \left( \rho \b{v} \right)}{\partial t}+\nabla \cdot \left( \rho \b{vv} \right)=\frac{\partial \left( \rho \b{v} \right)}{\partial t}+(\rho \b{v}\cdot \nabla )\cdot \b{v}.
An example of advection term in 2D would therefore be \left( \b{v}\cdot \nabla \right)\b{v}=\left( \left( \begin{matrix} u \\ v \\ \end{matrix} \right) \cdot \left( \begin{matrix} \frac{\partial }{\partial x} \\ \frac{\partial }{\partial y} \\ \end{matrix} \right) \right)\left( \begin{matrix} u \\ v \\ \end{matrix} \right)=\left( \begin{matrix} u\frac{\partial u}{\partial x}+v\frac{\partial u}{\partial y} \\ u\frac{\partial v}{\partial x}+v\frac{\partial v}{\partial y} \\ \end{matrix} \right)
In many cases we are interested in the incompressible fluids (Ma<0.3), reducing the continuity equation to
\begin{equation}
\nabla \cdot \b{v}=0
\label{contuinity}
\end{equation}
The goal of CFD is to solve system \ref{NavierStokes} and \ref{contuinity}. It is obvious that a special treatment will be needed to couple both equations. In the following discussion we cover some basic approaches, how this can be accomplished.
Solutions algorithms
Artificial compressibility method
The simplest, completely explicit approach, is an artificial compressibility method (ACM), where a compressibility term is included in the mass continuity \frac{\partial \b{v}}{\partial t}+(\b{v}\cdot\nabla )\b{v}=-\frac{1}{\rho }\nabla p+\nu {{\nabla }^{2}}\b{v}+\b{f}
The addition of the time derivative of the pressure term physically means that waves of finite speed (the propagation of which depends on the magnitude of the ACM) are introduced into the flow field as a mean to distribute the pressure within the domain. In a true incompressible flow, the pressure field is affected instantaneously throughout the whole domain. In ACM there is a time delay between the flow disturbance and its effect on the pressure field. Upon rearranging the equation yields \frac{\partial p}{\partial t}+\rho {{C}^{2}}\nabla \cdot \b{v}=0
C = \beta \max \left( \left|\b{v}\right|_2, \left|\b{v}_{ref}\right|_2 \right),
Note, that for more complex simulation an internal iteration loops is required before marching in time.
Explicit/Implicit pressure calculation
Applying divergence on \ref{NavierStokes} yields \nabla \cdot \frac{\partial \b{v}}{\partial t}+\nabla \cdot (\b{v}\cdot \nabla )\b{v}=-\frac{1}{\rho }{{\nabla }^{2}}p+\nabla \cdot \nu {{\nabla }^{2}}\b{v}+\nabla \cdot \b{f}
And since \nabla \cdot \b{v}=0 and we can change order in \nabla \cdot \nabla^2 and \nabla^2 \cdot \nabla equation simplifies to \frac{1}{\rho }{{\nabla }^{2}}p=\nabla \cdot \b{f}-\nabla \cdot (\b{v}\cdot \nabla )\b{v}
Note that using tangential boundary vector gives equivalent BCs \frac{\partial p}{\partial \b{\hat{t}}}=\left( \nu {{\nabla }^{2}}\b{v}+\b{f}-\frac{\partial \b{v}}{\partial t}-(\b{v}\cdot\nabla ) \b{v} \right)\cdot \b{\hat{t}}
So the procedure is:
- Compute Navier Stokes either explicitly or implicitly
- Solve pressure equations with computed velocities
- March in time
Basic boundary conditions Wall: \b{v}=0, \frac{\partial p}{\partial \hat{n}}=\left( \nabla \cdot \left( \nu \nabla \b{v} \right)+\b{f} \right)\cdot \hat{n}
Above system can be linearized (advection term) and solved either explicitly or implicitly.
Further reading:
W. D. Henshaw, A fourth-order accurate method for the incompressible Navier–Stokes equations on overlapping grids, J. Comput. Phys. 113, 13 (1994)
J. C. Strikwerda, Finite difference methods for the Stokes and Navier–Stokes equations, SIAM J. Sci. Stat. Comput. 5(1), 56 (1984)
Explicit Pressure correction
Another possibility is to solve pressure correction equation. Again Consider the momentum equation and mass continuity and discretize it explicitly \frac{{{\b{v}}_{2}}-{{\b{v}}_{1}}}{\Delta t}=-\frac{1}{\rho }\nabla {{p}_{1}}-({{\b{v}}_{1}}\nabla )\cdot {{\b{v}}_{1}}+\nu {{\nabla }^{2}}{{\b{v}}_{1}}+\b{f}
Velocity correction is affected only by effect of pressure correction. This fact is obvious due to all terms except gradient of pressure on the right side of equation are constant. {{\b{v}}^{corr}}=-\frac{\Delta t}{\rho }\nabla {{p}^{corr}}
Note that corrected velocity also satisfies boundary conditions \b{v}^{iter}+\b{v}^{corr}=\b{v}^{BC}
Boundary conditions can be obtained by mulitplying the equation with a unit normal vector \b{\hat{n}} \frac{\Delta t}{\rho }\frac{\partial {p}^{corr}}{\partial \b{\hat{n}}} = \b{\hat{n}} \cdot \left(\b{v}^{iter} - \b{v}^{BC} \right)
The pressure poisson equation is, at given boundary conditions, defined only up to a constant. One solution is to select a node and set it to a constant, e.g. p(0, 0) = 0, however much more stable approach is to enforce solution with additional condition, also referred to as a regularization \int_{\Omega }^{{}}{pd}\Omega =0
where \b{M} holds Laplace shape functions, i.e. the discrete version of Laplace differential operator.
Solution of a system
\left[ \begin{matrix} {{M}_{11}} & .. & {{M}_{1n}} & 1 \\ .. & .. & .. & 1 \\ {{M}_{n1}} & ... & {{M}_{nn}} & 1 \\ 1 & 1 & 1 & 0 \\ \end{matrix} \right]\left[ \begin{matrix} {{p}_{1}} \\ ... \\ {{p}_{n}} \\ \alpha \\ \end{matrix} \right]=\frac{\rho }{\Delta t}\left[ \begin{matrix} \nabla \cdot \b{v}_{_{1}}^{\text{iter}} \\ ... \\ \nabla \cdot \b{v}_{n}^{\text{iter}} \\ 0 \\ \end{matrix} \right]
CBS Algorithm
With explicit temporal discretization problem is formulated as \b{\hat{v}}={{\b{v}}_{0}}+\Delta t\left( -\nabla {{p}_{0}}+\frac{1}{Re}{{\nabla }^{2}}{{\b{v}}_{0}}-\nabla \cdot ({{\b{v}}_{0}}{{\b{v}}_{0}}) \right)
The relaxation parameter should be set between 1-10, lower number more stable solution.
And also dimensional form
p={{p}_{0}}-{{C}^{2}}\Delta {{t}_{F}}\rho \nabla \b{\hat{v}}+{{C}^{2}}\Delta {{t}_{F}}\Delta t{{\nabla }^{2}}{{p}_{0}},
Where C is speed of sound [m/s]
The Stream Function - Vorticity Approach
In two dimensions, the Navier–Stokes equations can be expressed using the stream function \psi and the vorticity \omega in place of the primitive variables u, v, and p. This involves the elimination of the pressure p, thus yielding one dependent variable less. In three dimensions, however, this formulation leads to six unknowns rather than four (in primitive variables), which makes this approach less attractive for that case.
In the following, we briefly derive the resulting two-dimensional equations for \psi and \omega. We begin by considering the momentum equations: \begin{align} \frac{\partial u}{\partial t} + u \frac{\partial u}{\partial x} + v \frac{\partial u}{\partial y}& = -\frac{1}{\rho}\frac{\partial p}{\partial x} + \nu \left(\frac{\partial^2 u}{\partial x^2} + \frac{\partial^2 u}{\partial y^2}\right) + g_x \\ \frac{\partial v}{\partial t} + u \frac{\partial v}{\partial x} + v \frac{\partial v}{\partial y}& = -\frac{1}{\rho}\frac{\partial p}{\partial y} + \nu \left(\frac{\partial^2 v}{\partial x^2} + \frac{\partial^2 v}{\partial y^2}\right) + g_y \end{align}
We can get rid of the terms containing \partial u / \partial x and \partial v / \partial y by using the continuity equation \eqref{contuinity}. Finally using the definition for the stream function \partial \psi / \partial y = u and \partial \psi / \partial x = -v we can transform the above equation to what is known as the vorticity transport equation: \begin{equation} \frac{\partial \omega}{\partial t} + \frac{\partial \psi}{\partial y}\frac{\partial \omega}{\partial x} - \frac{\partial \psi}{\partial x}\frac{\partial \omega}{\partial y} = \nu \Delta \omega + \left(\frac{\partial g_x}{\partial y} - \frac{\partial g_y}{\partial x}\right) \label{vorticity_transport} \end{equation}
Another equation is obtained by inserting the definition of the stream function into that of the vorticity: \omega = \frac{\partial u}{\partial y} - \frac{\partial v}{\partial x} = \frac{\partial}{\partial y}\left(\frac{\partial \psi}{\partial y}\right) + \frac{\partial }{\partial x}\left(\frac{\partial \psi}{\partial x}\right) = \Delta \psi
The two equations (\ref{vorticity_transport}) and (\ref{poisson_stream}) form a nonlinear coupled system of equations in which pressure has been eliminated and in which the continuity equation has been satisfied automatically.