(41) Bulk Cylindrical Tank
|
10-12-2018, 10:41 PM
(This post was last modified: 10-13-2018 09:14 AM by Thomas Klemm.)
Post: #19
|
|||
|
|||
RE: (41) Bulk Cylindrical Tank
Quote:With inches used as the unit of measurement, the volume of the slant bottom Besides the fact that we have to divide by \(231\ in^3 / gal\) that's not how the volume is calculated. The slanted cylinder isn't a slanted cuboid. Top and bottom are not the same. Thus we can't simply divide the whole volume by 2. Instead this formula can be used: \(V(x)=\left [ x(\pi-\cos^{-1}x)+\tfrac{1}{3}\sqrt{1-x^2}(2+x^2) \right ]Hr^2\) Here \(2H=h_0\) and \(h=(1+x)H\). This means \(x \in [-1, 1]\) while \(h \in [0, 2H]\). Graph of \(V(x)\): This program for the HP-42S calculates the volume of the slanted cylinder: Code: 00 { 55-Byte Prgm } ; Registers Code: H= 6.0000 Examples: 3 XEQ "SLANTED" 16.9551 6 XEQ "SLANTED" 89.7662 8 XEQ "SLANTED" 175.0894 12 XEQ "SLANTED" 423.0134 Compare this to the table 25-3: \( \begin{matrix} Measurement\ \# & H\ (total\ vertical\ level) & Gallons \\ 1 & 3" & 21 \\ 2 & 8" & 200 \end{matrix} \) Kind regards Thomas Addendum for those interested in the derivation of the formula: \( \begin{align*} V(x)=\int_{-1}^{x}2\sqrt{1-t^2}(x-t)dt &= \tfrac{1}{3}\sqrt{1-t^2}(-2t^2+3tx+2)+x\sin^{-1}(t)\bigg|_{t=-1}^{t=x} \\ &= \tfrac{1}{3}\sqrt{1 - x^2}(2 + x^2) + x\sin^{-1}(x)-\left (-\frac{\pi x}{2}\right ) \\ &= x\left (\frac{\pi}{2}+ \sin^{-1}(x)\right )+\tfrac{1}{3}\sqrt{1 - x^2}(2 + x^2) \end{align*} \) Then I used the identity \(\sin^{-1}x+\cos^{-1}x=\frac{\pi}{2}\) to end up with: \(V(x)=x\left (\pi - \cos^{-1}(x)\right )+\tfrac{1}{3}\sqrt{1 - x^2}(2 + x^2)\) Multiplication with \(Hr^2\) is just for scaling. These formulas can be used with Wolfram|Alpha: Code: Integrate[2 Sqrt[1 - t^2] (x - t), t] Edit: Changed R to r to make it consistent with the paper. |
|||
« Next Oldest | Next Newest »
|
User(s) browsing this thread: 1 Guest(s)