Dimensional Analysis (pp. 410-426)¶
Course Website
Fluid mechanics design problems rely upon experimental data, either collected directly or inferred from prior published works. In most cases empirical results do not directly apply to general situations so engineers need to interpret the original data in normal design practice.
Such data are found in handbooks, journals, and other authorative sources. Some examples are friction loss coefficients for pipes, valves, and other fittings; drag coefficients; fluid properties.
Dimensional Analysis is a tool used to guide such expermental design and practice and reduce the number of experiments required. Similitude is a tool used to scale laboratory results to full-scale situations.
Readings¶
Hibbeler, R.C, Fluid Mechanics, 3ed. Prentice Hall, 2022. pp. 410-426
Hibbeler, R.C, Fluid Mechanics, 2ed. Prentice Hall, 2018. ISBN: 9780134655413 pp. 444-469
DF Elger, BC Williams, Crowe, CT and JA Roberson, Engineering Fluid Mechanics 10th edition, John Wiley & Sons, Inc., 2013. (placeholder file to get links working). http://54.243.252.9/ce-3305-webroot/3-Readings/EFM-10.pdf
Cleveland, T. G. (2014) Fluid Mechanics Notes to Accompany CE 3305 at Jade-Holshule (TTU Study Abroad 2015-2019), Department of Civil, Environmental, and Construction Engineering, Whitacre College of Engineering. http://54.243.252.9/ce-3305-webroot/3-Readings/ce3305-lecture11.pdf
Cleveland, T. G. (2009) Error Analysis in Instructor Notes to Accompany CE 5333 Studies in Dimensional Analysis and Similitude, Department of Civil, Environmental, and Construction Engineering, Whitacre College of Engineering.
Cleveland, T. G. (2009) Propagation of Error in Instructor Notes to Accompany CE 5333 Studies in Dimensional Analysis and Similitude, Department of Civil, Environmental, and Construction Engineering, Whitacre College of Engineering.
Cleveland, T. G. (2009) Dimensional Analysis in Instructor Notes to Accompany CE 5333 Studies in Dimensional Analysis and Similitude, Department of Civil, Environmental, and Construction Engineering, Whitacre College of Engineering.
Doebelin, E. O. (1990). Measurement Systems (4th ed.). New York, NY: McGraw-Hill.
Holman, J. P. (1989). Analysis of Experimental Data in Experimental Methods for Engineers, 5th Edition. New York, NY: McGraw-Hill.
Kline, S. J. and F. A. McClintock (1953). Describing uncertainties in single-sample experiments. Mechanical Engineering (No. 75), 3–9.
Buckingham, E. (1915). Model experiments and the forms of empirical equations. Transactions of American Society of Mechancial Engineers (No. 37), 263.
Hwang, N. H. C. and C. E. Hita (1987). Dimensional Analysis in Fundamentals of Hydraulic Engineering Systems. San Diego, CA: Prentice Hall.
White, F. M. (1979). Fluid Mechanics. New York, NY: McGraw-Hill
Dimensional Analysis Part 1
Dimensional Analysis Part 2
Dimensional Analysis Part 3
Dimensional Analysis Part 4
Videos¶
placeholder
Lesson Outline¶
Dimensionless (\(\pi\)) groups
Important dimensionless numbers
Buckingham \(\Pi\) Theorem
Example 1:¶
# computational thinning
import math
q = 0.1 #discharge
v_jet = 50.0
omega = 500*2*math.pi/60
radius = 0.5
rho = 1000.0
power = rho*q*v_jet*radius*omega - rho*q*omega**2*radius**2
print("Power ",round(power,2)," Newton-meters/sec ")
Power 62360.77 Newton-meters/sec