| 1 | \documentclass{article} |
|---|
| 2 | \usepackage{fullpage} |
|---|
| 3 | \newcommand{\PSbox}[3]{\mbox{\rule{0in}{#3}\special{psfile=#1}\hspace{#2}}} |
|---|
| 4 | \begin{document} |
|---|
| 5 | \begin{enumerate} |
|---|
| 6 | \item Dimensional analysis: diffusion of a zinc coating |
|---|
| 7 | |
|---|
| 8 | The ``Shrinking Gaussian'' solution to the time-dependent diffusion equation: |
|---|
| 9 | $$C = \frac{\beta}{\sqrt{\pi Dt}}\exp\left(-\frac{x^2}{4Dt}\right)$$ |
|---|
| 10 | |
|---|
| 11 | \begin{enumerate} |
|---|
| 12 | \item Dimensions and units: |
|---|
| 13 | \begin{center} |
|---|
| 14 | \begin{tabular}[h]{c|c} |
|---|
| 15 | Dimension & Units \\ \hline |
|---|
| 16 | $C$ & $\rm\frac{mol}{m^3}$ \\ |
|---|
| 17 | $\beta$ & $\rm\frac{mol}{m^2}$ \\ |
|---|
| 18 | $D$ & $\rm\frac{m^2}{s}$ \\ |
|---|
| 19 | $t$ & seconds \\ |
|---|
| 20 | $x$ & meters \\ \hline |
|---|
| 21 | \end{tabular} |
|---|
| 22 | \end{center} |
|---|
| 23 | |
|---|
| 24 | Note: substitution of g or kg for mol works just as well. |
|---|
| 25 | |
|---|
| 26 | \item As we can see above, there are five dimensions, and three base units |
|---|
| 27 | (mol or g or kg, m, s), therefore, there are just two dimensionless |
|---|
| 28 | parameters. |
|---|
| 29 | |
|---|
| 30 | \item We want to construct $\pi_C$ and $\pi_x$, eliminating $\beta$, $D$ and |
|---|
| 31 | $t$. |
|---|
| 32 | |
|---|
| 33 | \begin{center} |
|---|
| 34 | \begin{tabular}[h]{c|c|c|c|} |
|---|
| 35 | Dimension & mol & m & s \\ \hline |
|---|
| 36 | $C$ & 1 & $-3$ & 0 \\ |
|---|
| 37 | $\beta^{-1}$ & $-1$ & 2 & 0 \\ |
|---|
| 38 | $D^{1/2}$ & 0 & 1 & $-\frac{1}{2}$ \\ |
|---|
| 39 | $t^{1/2}$ & 0 & 0 & $\frac{1}{2}$ \\ \hline |
|---|
| 40 | Total & 0 & 0 & 0 \\ \hline |
|---|
| 41 | \end{tabular} |
|---|
| 42 | \hspace{0.5in} |
|---|
| 43 | \begin{tabular}[h]{c|c|c|c|} |
|---|
| 44 | Dimension & mol & m & s \\ \hline |
|---|
| 45 | $x$ & 0 & 1 & 0 \\ |
|---|
| 46 | $\beta^0$ & 0 & 0 & 0 \\ |
|---|
| 47 | $D^{-1/2}$ & 0 & $-1$ & $\frac{1}{2}$ \\ |
|---|
| 48 | $t^{-1/2}$ & 0 & 0 & $-\frac{1}{2}$ \\ \hline |
|---|
| 49 | Total & 0 & 0 & 0 \\ \hline |
|---|
| 50 | \end{tabular} |
|---|
| 51 | \end{center} |
|---|
| 52 | |
|---|
| 53 | So we have: |
|---|
| 54 | $$\pi_C = \frac{C\sqrt{Dt}}{\beta}$$ |
|---|
| 55 | $$\pi_x = \frac{x}{\sqrt{Dt}}$$ |
|---|
| 56 | |
|---|
| 57 | \item Start with the solution itself: |
|---|
| 58 | $$C = \frac{\beta}{\sqrt{\pi Dt}}\exp\left(-\frac{x^2}{4Dt}\right)$$ |
|---|
| 59 | One rearrangement should do it: |
|---|
| 60 | $$\frac{C\sqrt{Dt}}{\beta} = |
|---|
| 61 | \frac{1}{\sqrt{\pi}}\exp\left(-\frac{x^2}{4Dt}\right)$$ |
|---|
| 62 | $$\pi_C = \frac{1}{\sqrt{\pi}}\exp\left(-\frac{\pi_x^2}{4}\right)$$ |
|---|
| 63 | |
|---|
| 64 | \item When made dimensionless like this, the ``Shrinking Gaussian'' becomes a |
|---|
| 65 | simple Gaussian with a maximum value of $1/\sqrt{\pi}$: |
|---|
| 66 | |
|---|
| 67 | \begin{center} |
|---|
| 68 | \PSbox{gauss.ps}{190pt}{135pt} |
|---|
| 69 | \end{center} |
|---|
| 70 | |
|---|
| 71 | As for the width, you could define any measure of it, and give the |
|---|
| 72 | corresponding value. One such measure is where the Gaussian reaches $1/e$ |
|---|
| 73 | of its maximum; this is relatively easy because you just set the exponent |
|---|
| 74 | to $-1$, so $-\pi_x^2/4 = -1$ and $\pi_x=2$. |
|---|
| 75 | |
|---|
| 76 | Another popular measure for Gaussian distributions is the ``full width at |
|---|
| 77 | half maximum'' (FWHM). For this, you solve: |
|---|
| 78 | $$\exp\left(-\frac{\pi_x^2}{4}\right) = \frac{1}{2}$$ |
|---|
| 79 | $$\pi_x = 2\sqrt{\ln 2} \simeq 1.39$$ |
|---|
| 80 | Either of these measures was fine. |
|---|
| 81 | \end{enumerate} |
|---|
| 82 | \end{enumerate} |
|---|
| 83 | \end{document} |
|---|