blob: d70cb1587f6372c567924f55e0a82ad91cc78c93 [file] [log] [blame]
avm9996302003e72021-06-22 12:25:46 +02001% !TEX root = main.tex
2\chapter{Kinematics of fluids}
3
4We will study fluid motion. There are two possible descriptions of the flow, Eulerian (throgh a velocity field) and Lagrangian (following the particles as they move). We will use the first one.
5
6\section{Acceleration of a fluid particle}
7
8The change in velocity of the fluid particle results from the explicit variation of the velocity field with time, if the flow is non-stationary, and the probing of the velocity field by the particle, if the field is non-uniform.
9
10$$ \frac{d \vec{v}}{dt} = \frac{\partial \vec{v}}{\partial t} + (\vec{v} \cdot \vec{\nabla} ) \vec{v} $$
11
12The first term is the Lagrangian derivative (how the velocity of the fluid particle changes in time), the second is the temporal change of the velocity at a fixed location (Eulerian derivative), and the third the temporal change of the velocity at a fixed time (convective derivative).
13
14\section{Some definitions}
15
16\begin{itemize}
17 \index{Stream!line}
18 \item \textbf{Streamlines:} field lines of the vector field $\vec{v} (\vec{r}, t)$. They are defined as the tangents, at every point, to the velocity vector $\vec{v}$. This condition can be expressed as $d\vec{r} \parallel \vec{v}$. A small displacement along the line is co-linear with $\vec{v}$.
19
20 \index{Stream!tube}
21 \item \textbf{Stream tubes:} set of streamlines which pass through a closed space curve. It is a conduct of impermeable walls with infinitessimal cross-section.
22
23 \index{Particle trajectory}
24 \item \textbf{Particle trajectories:} path that a fluid particle follows in time. It is also a set of successive positions through which the fluid particle passes as it moves. We obtain the particle trajectories by integrating with respect to time the Lagrangian velocity,
25
26 $$ \vec{r} (t) = \vec{r}_0 + \int_{t_0}^t \vec{v}(\vec{r}_0,t') dt'. $$
27
28 \index{flow,!Stationary}
29 \item \textbf{Stationary flow:} the velocity doesn't depend on time, this is,
30
31 $$ \frac{\partial \vec{v}}{\partial t} = 0. $$
32
33 \index{Flow rate}
34 \item \textbf{Flow rate:} the flow rate (or rate of flow) in area $A$ is defined as:
35 \[ Q := \int_A \vec{v} \cdot \dif \vec{S}. \]
36\end{itemize}
37
38\begin{obs}
39 If a flow is stationary, then the streamlines and path lines coincide. In general, they don't.
40\end{obs}
41
42\section{Deformations in flows}
43In fluid mechanics, the concepts of strain rate (change, per unit time, of the quantity under consideration) and rate of rotation replace those, for solids, of strain and rotation.
44
45\begin{defi}[Velocity gradient tensor]
46 We define the \textbf{velocity gradient tensor}, $\TT{G}$, as
47
48 $$ G_{ij} = \frac{\partial v_i}{\partial x_j} \to \TT{G} = \operatorname{grad} \vec{v} $$
49\end{defi}
50
51We can decompose it into symmetric and antisymmetric parts. $\TT{e}$ gives the rate of strain (pure deformation rate). It is symmetric by definition, and gives information about elongations and dilations.
52
53$\TT{w}$ gives the rate of rotation. It is antisymmetric by definition.
54
55$$ w_{ij} = \frac{1}{2}\left(\frac{\partial v_i}{\partial x_j} - \frac{\partial v_j}{\partial x_i}\right) $$
56
57\begin{defi}[Vortex vector]
58 We can associate a dual vector to this antisymmetric part: the \textbf{vortex vector}, which is a local angular velocity of rotation of the fluid element.
59
60 $$ \vec{\Omega} = \frac{1}{2} \vec{\nabla} \times \vec{v} = \frac{1}{2} \vec{w} \to \Omega_i = \frac{1}{2} \varepsilon_{ijk} (-w_{jk}), $$
61 where $w = \vec{\nabla} \times \vec{v} $ is the vorticity.
62\end{defi}
63
64We can decompose $\TT{e}$ into spherical and deviatoric parts:
65$$ \TT{e} = \operatorname{sph} (\TT{e}) + \operatorname{dev} (\TT{e}) = \TT{t} + \TT{d}, $$
66where $\TT{t} = \frac{1}{3}\delta_{ij} e_{ll}$ gives the volume rate of expansion of the elements of the fluid, and $\TT{d} = e_{ij} - \frac{1}{3}\delta_{ij} e_{ll}$ gives the deformation rates at constant volume of the flow elements.
67
68In summary, $G_{ij} = t_{ij} + d_{ij} + w_{ij}$. $t_{ij}$ is a diagonal tensor representing the change in volume of fluid elements. It is zero for incompressible fluids. $d_{ij}$ is a non-trace symmetric tensor related to the deformations of fluid elements at constant volume, and $w_{ij}$ is an antisymmetric tensor representing the solid-body rotation of fluid elements.
69
70\section{The stream function}
71
72It allows simplifying the treatment of the vector velocity field $\vec{v}$ of an incompressible fluid for the case where it only depends on two coordinates (2D flows or axisymmetric flows).
73
74\index{Potential vector}
75Since $\vec{\nabla} \cdot (\vec{\nabla} \times \vec{A}) = 0$ (all curls are solenoidal) we can introduce a vector function $\vec{A}$ that fulfills $\vec{v} = \vec{\nabla} \times \vec{A}$. This is the potential vector.
76
77Let's see how we can define the stream function in the two cases.
78
79\subsection{2D flows}
80We'll suppose that $\vec{v} = (v_x(x, y), v_y(x, y), 0)$, and also that the flow is incompressible. This means:
81\[ \div \vec{v} = \partial_x v_x + \partial_y v_y = 0. \]
82
83\index{Stream!function}
84This is automatically satisfied if $v_x = \partial_y \psi$ and $v_y = - \partial_x \psi$. The scalar function $\psi(x, y)$ is called the \underline{stream function}.
85
86In this case, the vector potential is $\vec{A} = \psi \hat{e}_z$.
87
88In polar coordinates $(r, \phi)$, incompressibility implies:
89\[ \begin{cases}
90 v_r = \frac{1}{r} \partial_\phi \psi, \\
91 v_\phi = - \partial_r \psi.
92\end{cases} \]
93
94\begin{obs}
95 Properties:
96
97 \begin{itemize}
98 \item The $\psi = \text{const.}$ lines coincide with the streamlines.
99 \item $\Delta \psi = \psi_2 - \psi_1$ represents the flow rate of fluid in a stream tube of rectangular cross-section located between streamlines $\psi = \psi_1$ and $\psi = \psi_2$ and unit depth in the $z$-direction.
100
101 This shows the flow rate in such a stream tube is constant everywhere along the tube.
102 \end{itemize}
103\end{obs}
104
105\subsection{Axisymmetric flows}
106\index{Stokes'!stream function}
107Axisymmetric flows are flows with an axis of symetry relative to which the velocity field is rotationally invariant. In this context, $\psi$ is called the \underline{Stokes' stream function}.
108
109\begin{itemize}
110 \item \underline{Cylindrical symmetry}: In cylindrical coordinates $(r, \phi, z)$, when $\vec{v}$ is independent of $\phi$:
111 \[ \div \vec{v} = 0 \implies \begin{cases}
112 v_r = \frac{1}{r} \partial_z \psi, \\
113 v_z = - \frac{1}{r} \partial_r \psi.
114 \end{cases} \]
115
116 \item \underline{Spherical symmetry}: In spherical coordinates $(r, \theta, \phi)$, when $\vec{v}$ is independent of $\phi$:
117 \[ \div \vec{v} = 0 \implies \begin{cases}
118 v_r = \frac{1}{r^2 \sin \theta} \partial_\theta \psi, \\
119 v_\phi = - \frac{1}{r \sin \theta} \partial_r \psi.
120 \end{cases} \]
121\end{itemize}
122
123\begin{obs}
124 Note for axisymmetric flows, $\psi$ has units of $\text{velocity} \cdot \text{area}$ ($\si{\meter\cubed\per\second}$, ``flow rate'') while for 2D flows, it has units of $\text{velocity} \cdot \text{area}$ ($\si{\meter\squared\per\second}$, ``flow rate'' per unit length).
125\end{obs}
126
127\section{Circulation and vorticity}
128\begin{defi}[Circulation of a velocity field]
129 Given vector field $\vec{v}(\vec{r}, t)$, we define its \underline{circulation}, at an instant $t$ along curve $C$ (which could be closed or not) as the line integral of the velocity field:
130 \[ \int_C \vec{v} \cdot \dif \vec{l}, \]
131 and its value depends, in general, of $C$, and its starting and ending points.
132\end{defi}
133
134\begin{prop}
135 Let's consider the case in which $C$ is a closed path. In this case:
136 \[ \Gamma = \oint_C \vec{v} \cdot \dif \vec{l} \notate[X]{{}={}}{1.25}{\scriptstyle \text{Stokes' theorem}} \int_A (\curl \vec{v}) \cdot \dif \vec{S} = \int_A \vec{\omega} \cdot \dif \vec{S}, \]
137 where $A$ is a surface containing the curve $C$ as a boundary.
138
139 The circulation per unit area along a path around a given point equals the component of the vorticity $\vec{\omega}$ normal to the planar surface containing the path. That is, the vorticity $\vec{\omega}$ represents the circulation around the unit area perpendicular to $\vec{\omega}$.
140\end{prop}
141
142\begin{defi}[Vorticity tube]
143 A vorticity tube is a volume from which vorticity lines (the lines parallel to the vorticity field) don't come in or out.
144\end{defi}
145
146\begin{defi}
147 \index{flow,!Rotational}\index{flow,!Irrotational}
148 If $\vec{\omega} = 0 \, \forall \vec{r}$, the flow is called \underline{irrotational}; otherwise, it is called \underline{rotational}.
149
150 Note that if $\vec{\omega} \neq 0$ but constant, we can use a coordinate system that rotates at angular speed $\vec{\Omega} = \frac{\vec{\omega}}{2}$ in which the flow is irrotational.
151\end{defi}
152
153\subsection{Rotational flow}
154$\curl \vec{v} = \vec{\omega}(\vec{r}, t)$ is a vector field that can be represented using vorticity lines and tubes.
155
156\[ \div \vec{\omega} = \div (\curl \vec{v}) = 0, \]
157which means that $\vec{\omega}$ is solenoidal. There are no sources or sinks of $\vec{\omega}$. Hence, vorticity lines close onto themselves or expand the limits of our system.
158
159Also, we have that the flux across closed surface A is:
160\[ \oint_A \vec{\omega} \cdot \dif \vec{S} \notate[X]{{}={}}{1.25}{\scriptstyle \text{Gauss theorem}} \int_V (\div \vec{\omega}) \, \dif V' = 0. \]
161
162Considering a vorticity tube between surface elements $\dif S_1$ and $\dif S_2$, we then see that $\omega_1 \dif S_1 = \omega_2 \dif S_2$. Hence, the vorticity flux is the same across all surface elements of the vorticity tube.
163
164\subsection{Irrotational flow}
165\index{Velocity potential}
166In this case, $\vec{\omega} = \curl \vec{v} = 0$ everywhere. Since $\curl (\div \Phi) = 0$ always, we can write $\vec{v} = \grad \Phi$. We call $\Phi$ the \underline{velocity potential}.
167
168\begin{prop}
169 In irrotational flows, the circulation of the velocity field along a curve can be expressed in terms of the velocity potential as:
170 \[ \int_\alpha^\beta \vec{v} \cdot \dif \vec{l} = \Phi_\beta - \Phi_\alpha. \]
171
172 Thus:
173 \[ \Phi(\vec{r}) = \Phi(\vec{r_0}) + \int_{\vec{r_0}}^{\vec{r}} \vec{v} \cdot d\vec{l}. \]
174
175 Furthermore, if $A$ is a simply connected surface and its boundary $\partial A$ is a curve $C$, then:
176 \[ \oint_{C} \vec{v} \cdot \dif \vec{l} = 0. \]
177\end{prop}
178
179\begin{obs}
180 Equipotential surfaces ($\Phi = \text{const.}$) are by definition such that $\vec{v}$ is perpendicular to them.
181\end{obs}
182
183\begin{prop}
184 If the flow is incompressible ($\div \vec{v} = 0$), then $\Phi$ satisfies Laplace's equation:
185 \[ 0 = \div \vec{v} = \div (\curl \Phi) = \laplacian \Phi. \]
186\end{prop}