| 1 | \documentclass[12pt]{article} |
|---|
| 2 | \usepackage{fullpage,graphicx} |
|---|
| 3 | \newcommand{\PSbox}[3]{\mbox{\rule{0in}{#3}\special{psfile=#1}\hspace{#2}}} |
|---|
| 4 | \begin{document} |
|---|
| 5 | \title{A Quick Guide to Dimensional Analysis} |
|---|
| 6 | \date{June 19, 2007} |
|---|
| 7 | \author{Adam Powell} |
|---|
| 8 | \maketitle |
|---|
| 9 | |
|---|
| 10 | Dimensional analysis is a powerful tool for reducing complex engineering |
|---|
| 11 | problems to their most basic components. Typically, a functional relationship |
|---|
| 12 | involving five to eight parameters can be reduced to just two to four |
|---|
| 13 | dimensionless groups. This allows one to more concisely represent the |
|---|
| 14 | solution, whether analytical, numerical or empirical. Its result is akin to |
|---|
| 15 | the phase rule in its simplicity and power. |
|---|
| 16 | |
|---|
| 17 | For example, suppose a flat solid sheet with thermal conductivity $k$ and |
|---|
| 18 | thickness $\delta$ is in contact with a fluid with heat transfer coefficient |
|---|
| 19 | $h$. The fluid temperature is $T_{fl}$, the temperature on the side of the |
|---|
| 20 | sheet away from the fluid is $T_0$, and the temperature at the interface is |
|---|
| 21 | unknown. The heat flux through this system is given by the driving force |
|---|
| 22 | divided by the sum of resistances: |
|---|
| 23 | \begin{equation} |
|---|
| 24 | \label{eq:flux} |
|---|
| 25 | q = \frac{T_0-T_{fl}}{\frac{\delta}{k}+\frac{1}{h}}. |
|---|
| 26 | \end{equation} |
|---|
| 27 | This is certainly not a complicated equation, but as the flux is a function of |
|---|
| 28 | four parameters (the temperature difference, heat transfer coefficient, sheet |
|---|
| 29 | thickness and conductivity), visualizing the five-dimensional space would be a |
|---|
| 30 | great challenge. Dimensional analysis reduces this to just two parameters, as |
|---|
| 31 | described below. |
|---|
| 32 | |
|---|
| 33 | \paragraph{Procedure} |
|---|
| 34 | |
|---|
| 35 | Before beginning, it is necessary to define a couple of terms: |
|---|
| 36 | \begin{itemize} |
|---|
| 37 | \item {\bf Dimensions} are material properties, geometric dimensions, etc. The |
|---|
| 38 | above example has dimensions of heat flux $q$, temperature $T_0$ and |
|---|
| 39 | $T_{fl}$, length $\delta$, conductivity $k$, and heat transfer coefficient |
|---|
| 40 | $h$. |
|---|
| 41 | \item {\bf Base units} are the smallest set of units from which all units of |
|---|
| 42 | all dimensions can be derived. In the example above, those units can be |
|---|
| 43 | expressed in terms of watts, meters, and degrees Kelvin or Celsius. |
|---|
| 44 | \item {\bf Derived units} are the products and quotients of the base units, |
|---|
| 45 | such as W/m$^2$ for heat flux. |
|---|
| 46 | \end{itemize} |
|---|
| 47 | Based on these definitions, dimensional analysis proceeds as follows. |
|---|
| 48 | |
|---|
| 49 | \begin{enumerate} |
|---|
| 50 | \item Postulate desired behavior as a function of the other variables. In this |
|---|
| 51 | example, the goal is to calculate heat flux $q$, and it is postulated to be a |
|---|
| 52 | function of $T_0-T_{fl}$, $\delta$, $k$ and $h$. The number of parameters is |
|---|
| 53 | the number of dimensions $n$, in this case $n=5$, for heat flux and the four |
|---|
| 54 | dimensions of which it is considered a function. This is done by intuition, |
|---|
| 55 | and is very often the hardest step in the process. |
|---|
| 56 | |
|---|
| 57 | \item Find the number of independent units in the system $r$. As identified |
|---|
| 58 | above, there are four base units: m, s, kg, K; but kg and s are always linked |
|---|
| 59 | in watts, so they're not independent for this problem. In this case, all of |
|---|
| 60 | the units can be expressed in terms of: W, m and K, so there are three |
|---|
| 61 | independent units. |
|---|
| 62 | |
|---|
| 63 | \item Calculate the number of dimensionless groups which completely |
|---|
| 64 | characterize the system. The Buckingham Pi theorem states that the number of |
|---|
| 65 | dimensionless groups is $n-r$, in this case $5-3=2$ dimensionless groups. |
|---|
| 66 | |
|---|
| 67 | \item Choose $r$ dimensionally-independent variables to eliminate, which will |
|---|
| 68 | make the others dimensionless. Here it is convenient to choose $T_0-T_{fl}$, |
|---|
| 69 | $k$ and $\delta$. As a counterexample, one can't use $h$, $k$ and $\delta$ |
|---|
| 70 | because they are not independent: the units of $h$ (W/m$^2\cdot$K) can be |
|---|
| 71 | multiplied by those of $\delta$ (m) to give those of $k$ (W/m$\cdot$K). Very |
|---|
| 72 | often there are multiple ``right answers'', and one should choose the one |
|---|
| 73 | which is most convenient, as will be discussed further below. |
|---|
| 74 | |
|---|
| 75 | \item Form $\pi$ groups from what's left, these are unit-less versions of the |
|---|
| 76 | remaining parameters. Dimensionless flux $q$, called $\pi_q$, is: |
|---|
| 77 | \begin{equation} |
|---|
| 78 | \label{eq:piq} |
|---|
| 79 | \pi_q = q \cdot [T_0-T_{fl}]^a \cdot [k]^b \cdot [\delta]^c. |
|---|
| 80 | \end{equation} |
|---|
| 81 | The exponents $a$, $b$ and $c$ must make the resulting $\pi_q$ dimensionless. |
|---|
| 82 | To calculate these exponents, one can construct a table of unit exponents, |
|---|
| 83 | whose columns must add to zero. The table on the left has the unknown |
|---|
| 84 | exponents, and on the right, the equations bringing totals to zero have been |
|---|
| 85 | solved to give $a=-1$, $b=-1$ and $c=1$: |
|---|
| 86 | \begin{center} |
|---|
| 87 | \begin{tabular}{l|ccc|} |
|---|
| 88 | Dimension & W & m & K \\ \hline |
|---|
| 89 | $q$ & 1 & -2 & 0 \\ |
|---|
| 90 | $[T_0-T_{fl}]^a$ & 0 & 0 & $a$ \\ |
|---|
| 91 | $k^b$ & $b$ & $-b$ & $-b$ \\ |
|---|
| 92 | $\delta^c$ & 0 & $c$ & 0 \\ \hline |
|---|
| 93 | Total & $1+b$ & $-2-b+c$ & $a-b$ \\ \hline |
|---|
| 94 | \end{tabular} $\ \ \ \ $ |
|---|
| 95 | \begin{tabular}{l|ccc|} |
|---|
| 96 | Dimension & W & m & K \\ \hline |
|---|
| 97 | $q$ & 1 & -2 & 0 \\ |
|---|
| 98 | $[T_0-T_{fl}]^{-1}$ & 0 & 0 & -1 \\ |
|---|
| 99 | $k^{-1}$ & -1 & 1 & 1 \\ |
|---|
| 100 | $\delta^1$ & 0 & 1 & 0 \\ \hline |
|---|
| 101 | Total & 0 & 0 & 0 \\ \hline |
|---|
| 102 | \end{tabular} |
|---|
| 103 | \end{center} |
|---|
| 104 | This gives the result: |
|---|
| 105 | \begin{equation} |
|---|
| 106 | \label{eq:piqfinal} |
|---|
| 107 | \pi_q=\frac{q\delta}{k(T_0-T_{fl})}. |
|---|
| 108 | \end{equation} |
|---|
| 109 | This is readily recognized as the ratio of total flux to flux in the absence |
|---|
| 110 | of a fluid layer. Likewise there is a dimensionless $\pi_h$: |
|---|
| 111 | \begin{equation} |
|---|
| 112 | \label{eq:pih} |
|---|
| 113 | \pi_h = h \cdot [T_0-T_{fl}]^d \cdot [k]^e \cdot [\delta]^f, |
|---|
| 114 | \end{equation} |
|---|
| 115 | the exponents which make this dimensionless are $d=0$, $e=-1$, $f=1$ giving |
|---|
| 116 | $\pi_h = h\delta/k$, the Biot number. |
|---|
| 117 | |
|---|
| 118 | \item Rewrite Step 1 in dimensionless terms, and we're done: |
|---|
| 119 | \begin{equation} |
|---|
| 120 | \label{eq:piqfunc} |
|---|
| 121 | \pi_q = f(\pi_h). |
|---|
| 122 | \end{equation} |
|---|
| 123 | \end{enumerate} |
|---|
| 124 | |
|---|
| 125 | \paragraph{Interpreting the result} |
|---|
| 126 | |
|---|
| 127 | What's this? So simple? Can't be. Check it against the analytical equation |
|---|
| 128 | above: |
|---|
| 129 | $$q=\frac{T_0-T_{fl}}{\frac{1}{h} + \frac{\delta}{k}};$$ |
|---|
| 130 | \begin{equation} |
|---|
| 131 | \label{eq:piqsolved} |
|---|
| 132 | \pi_q=\frac{q\delta}{k(T_0-T_{fl})} = |
|---|
| 133 | \frac{T_0-T_{fl}}{\frac{1}{h} + \frac{\delta}{k}} |
|---|
| 134 | \frac{\delta}{k(T_0-T_{fl})} = |
|---|
| 135 | \frac{1}{\frac{k}{h\delta} + 1} = |
|---|
| 136 | \frac{1}{\frac{1}{\pi_h}+1} = 1-\frac{1}{\pi_h+1}. |
|---|
| 137 | \end{equation} |
|---|
| 138 | So the dimensional analysis works, the dimensionless flux is indeed only a |
|---|
| 139 | simple function of the dimensionless heat transfer coefficient; that function |
|---|
| 140 | looks like: |
|---|
| 141 | \begin{center} |
|---|
| 142 | \PSbox{buckpi-graph.ps}{355pt}{128pt} |
|---|
| 143 | \end{center} |
|---|
| 144 | |
|---|
| 145 | The limiting cases are instructive here. For a large Biot number $\pi_h$, the |
|---|
| 146 | dimensionless flux $\pi_q$ approaches one, so $q\simeq k(T_0-T_{fl})/\delta$, |
|---|
| 147 | the pure conduction result. For a small Biot number, dimensionless flux is |
|---|
| 148 | approximately equal to the Biot number $\pi_q\simeq\pi_h$, so $q\simeq |
|---|
| 149 | h(T_0-T_{fl})$, the pure convection result. |
|---|
| 150 | |
|---|
| 151 | Again, the purpose of this process is to simplify the functional relationship |
|---|
| 152 | and characterize it in as few parameters as possible. If the equation has no |
|---|
| 153 | analytical solution, the functional relationship could be obtained from a |
|---|
| 154 | series of experiments, whose results would then apply to any other |
|---|
| 155 | conduction-convection problem of the same nature. |
|---|
| 156 | |
|---|
| 157 | \paragraph{Physical modeling} |
|---|
| 158 | |
|---|
| 159 | Furthermore, this principle forms the basis of physical modeling. For example, |
|---|
| 160 | in a wind tunnel model of flow past an aircraft, the dimensionless drag force |
|---|
| 161 | is a function of the Reynolds number (inertial/viscous drag), the Mach number |
|---|
| 162 | (velocity/speed of sound) and the shape. If the model aircraft shape is right, |
|---|
| 163 | and the pressure and velocity are adjusted to give the correct Reynolds and |
|---|
| 164 | Mach numbers, then every detail of flow past the model in the wind tunnel will |
|---|
| 165 | be identical to flow past the full-scale aircraft at its cruising altitude, and |
|---|
| 166 | the dimensionless drag force will be identical as well. |
|---|
| 167 | |
|---|
| 168 | A materials processing analogue is water modeling: in many processes, one can |
|---|
| 169 | use a water tank with the same Reynolds number to model flow in the real |
|---|
| 170 | process. |
|---|
| 171 | |
|---|
| 172 | \paragraph{Resolving ambiguity} |
|---|
| 173 | |
|---|
| 174 | There are very often multiple possible choices of variables to eliminate, and |
|---|
| 175 | choices of parameter forms. For example, in the above case, though one {\em |
|---|
| 176 | could not} keep only $q$ and $T_0-T_{fl}$ and eliminate $h$, $k$ and $\delta$ |
|---|
| 177 | because they are not dimensionally independent, one {\em could} keep $q$ and |
|---|
| 178 | $h$ as above, or $q$ and $k$, or $q$ and $\delta$. The latter two would have |
|---|
| 179 | yielded dimensionless pi groups as follows: |
|---|
| 180 | \begin{equation} |
|---|
| 181 | \label{eq:q-k} |
|---|
| 182 | {\rm Keep\ }q,k: \pi_q = \frac{q}{h(T_0-T_{fl})}, \pi_k = \frac{k}{h\delta}; |
|---|
| 183 | \end{equation} |
|---|
| 184 | \begin{equation} |
|---|
| 185 | \label{eq:q-d} |
|---|
| 186 | {\rm Keep\ }q,\delta: \pi_q = \frac{q}{h(T_0-T_{fl})}, |
|---|
| 187 | \pi_\delta = \frac{h\delta}{k}. |
|---|
| 188 | \end{equation} |
|---|
| 189 | Note that these give the same $\pi_q$. The $\pi_\delta$ expression is more |
|---|
| 190 | attractive than $\pi_k$ because it has more parameters in the numerator; this |
|---|
| 191 | is why the Biot number is written this way. But which $\pi_q$ is better: this |
|---|
| 192 | or the one obtained above? |
|---|
| 193 | \begin{equation} |
|---|
| 194 | \label{eq:piq2} |
|---|
| 195 | \pi_q = \frac{q}{h(T_0-T_{fl})} = |
|---|
| 196 | \frac{T_0-T_{fl}}{\frac{1}{h} + \frac{\delta}{k}} \frac{1}{h(T_0-T_{fl})} = |
|---|
| 197 | \frac{1}{1+\pi_\delta}, |
|---|
| 198 | \end{equation} |
|---|
| 199 | which looks like: |
|---|
| 200 | \begin{center} |
|---|
| 201 | \PSbox{buckpi-graph2.ps}{355pt}{128pt} |
|---|
| 202 | \end{center} |
|---|
| 203 | Looking at the asymptotics, it is clear here that as $\pi_\delta$ (the Biot |
|---|
| 204 | number) approaches zero, $\pi_q\rightarrow1$ so $q\simeq h(T_0-T_{fl})$, the |
|---|
| 205 | convection-limited case. What is less clear is the asymptotic behavior for |
|---|
| 206 | large Biot number: it clearly goes to zero, but that it approaches |
|---|
| 207 | $1/\pi_\delta$, so $q\simeq k(T_0-T_{fl})/\delta$, is not immediately apparent |
|---|
| 208 | from the graph. Thus the former nondimensionalization is preferred, as its |
|---|
| 209 | asymptotic behavior at both ends is more readily apparent. |
|---|
| 210 | |
|---|
| 211 | \paragraph{Second example: drag force} |
|---|
| 212 | |
|---|
| 213 | In flow past an object with circular cross section, such as a sphere, |
|---|
| 214 | ellipsoid, or disc perpendicular to flow, drag force on the object $F_d$ is a |
|---|
| 215 | function of fluid density $\rho$ and viscosity $\mu$, far stream flow velocity |
|---|
| 216 | $U_\infty$, cross section diameter $d$,\footnote{For some reason, diameter is |
|---|
| 217 | nearly always used as the length dimension of a sphere, cylinder, etc. in |
|---|
| 218 | fluid flow, whereas radius is nearly always used in heat transfer.} and |
|---|
| 219 | object shape: |
|---|
| 220 | \begin{equation} |
|---|
| 221 | \label{eq:dragfunc} |
|---|
| 222 | F_d = f (U_\infty, \rho, \mu, d, {\rm shape}). |
|---|
| 223 | \end{equation} |
|---|
| 224 | Putting aside shape for the moment, which we can assume is dimensionless |
|---|
| 225 | (aspect ratio, etc.), one can say {\em a priori} that force will probably be |
|---|
| 226 | proportional to either inertial force $\frac{1}{2}\rho U^2$ (a.k.a. dynamic |
|---|
| 227 | pressure), or viscous shear $\mu U/d$, so the best dimensionless force will be |
|---|
| 228 | a ratio of $F_d$ to one of those two. Dimensional analysis results in one of |
|---|
| 229 | three pairs of dimensionless groups: |
|---|
| 230 | \begin{center} |
|---|
| 231 | \begin{tabular}{|c|c|c|} \hline |
|---|
| 232 | Variables kept & Dimensionless $F_d$ & Dimensionless other \\ \hline |
|---|
| 233 | $F_d, \mu$ & $\pi_F = \frac{F_d}{\rho U^2d^2}$ & |
|---|
| 234 | $\pi_\mu = \frac{\mu}{\rho Ud}$ \\ |
|---|
| 235 | $F_d, \rho$ & $\pi_F = \frac{F_d}{\mu Ud}$ & |
|---|
| 236 | $\pi_\rho = \frac{\rho Ud}{\mu}$ \\ |
|---|
| 237 | $F_d, U$ or $F_d, d$ & $\pi_F = \frac{F_d\rho}{\mu^2}$ & |
|---|
| 238 | $\pi_{U/d} = \frac{\rho Ud}{\mu}$ \\ \hline |
|---|
| 239 | \end{tabular} |
|---|
| 240 | \end{center} |
|---|
| 241 | Based on our initial understanding of the physics, the third dimensionless |
|---|
| 242 | force $\frac{F_d\rho}{\mu^2}$ is clearly not helpful. And the best |
|---|
| 243 | dimensionless independent group is clearly $\frac{\rho Ud}{\mu}$, also known as |
|---|
| 244 | the Reynolds number, the ratio of inertial to viscous force. But the best |
|---|
| 245 | expression for $\pi_F$, the dimensionless force, is less clear: should it be |
|---|
| 246 | the ratio with respect to dynamic pressure and area $\rho U^2L^2$, or viscous |
|---|
| 247 | drag $\mu UL$? |
|---|
| 248 | |
|---|
| 249 | As it turns out, at low Reynolds number, viscous drag has an analytical |
|---|
| 250 | expression which is not sensitive to shape (or roughness), whereas at high |
|---|
| 251 | Reynolds number, boundary layer separation and turbulent flow are very |
|---|
| 252 | sensitive to them. So using $\pi_F = F_d/(\rho U^2d^2)$ results in a single |
|---|
| 253 | curve at low Reynolds number, and multiple nearly flat lines for different |
|---|
| 254 | shapes at high Reynolds number. In contrast, $\pi_F = \frac{F_d}{\mu Ud}$ |
|---|
| 255 | results in a single flat line at low Reynolds number, and multiple curves at |
|---|
| 256 | high Reynolds number. Multiple flat lines are easier to communicate than |
|---|
| 257 | multiple curves, so dynamic pressure is the better quantity for normalizing the |
|---|
| 258 | force. This dimensionless force scaled to the dynamic pressure and cross |
|---|
| 259 | section area is called the {\em friction factor} given by: |
|---|
| 260 | \begin{equation} |
|---|
| 261 | \label{eq:frictfact} |
|---|
| 262 | f = \frac{F_d}{\frac{1}{2}\rho U_\infty^2 \cdot \frac{1}{4}\pi d^2} = f({\rm |
|---|
| 263 | Re,\ shape}). |
|---|
| 264 | \end{equation} |
|---|
| 265 | |
|---|
| 266 | Thus for low Reynolds number (less than 0.1), $f=24/{\rm Re}$, the analytical |
|---|
| 267 | result with no dependence on shape. For high Reynolds number ($10^3-10^5$), |
|---|
| 268 | the friction factor is roughly independent of Reynolds number, and defines the |
|---|
| 269 | {\em drag coefficient} $c_d$: $f=c_d({\rm shape})$. For a sphere, $c_d=0.44$; |
|---|
| 270 | for a disc perpendicular to the flow direction, $c_d\simeq 1$. |
|---|
| 271 | |
|---|
| 272 | We can draw two lessons from this. First, a brief assessment of the physics |
|---|
| 273 | beforehand can inform the process of dimensional analysis. Second, where there |
|---|
| 274 | are still ambiguities after dimensional analysis, plotting the dimensionless |
|---|
| 275 | data can help to determine which is the most useful choice in the long run. |
|---|
| 276 | |
|---|
| 277 | \end{document} |
|---|