Particle Settling in Water (I)
Contents
Particle Settling in Water (I)#
Problem description#
Settling of sediment particles are an important physical process to the sediment suspension, mixing, and transport. Modeling of the settling velocity of a sediment particle is essential to the models of river mechanics and sediment related hydraulic design.
The velocity (\(W\)) of a single particle settling in water can be predicted by the equilibrium between its gravity, buoyancy, and drag forces, where gravitational force is \(F_G = \rho_p g V\) (downward), buoyancy force \(F_B = \rho gV\) (upward), and drag force \(F_D\) (upward). When the particle is very small, the drag force is related to the viscosity of the water \(\mu\), particle size, and the settling velocity, \(F_D = 3\pi\mu D W\). In fluid mechanics, we call this the Stokes regime, and the drag is call Stokes drag. Once we know the particle size, the settling velocity can be easily calculated by applying free body diagram to the sediment particle.
Box question 1
Derive the equation for the settling velocity, and write a small program to calculate the settling velocity of sand particles with diameter ranging from 1 \(\mu\)m to 100 \(\mu\)m (taking \(\rho_p = 1600\) kg/m\(^3\), \(\rho = 1000\) kg/m\(^3\), \(g = 9.81\) m/s\(^2\), \(\mu = \nu \rho = 1.0\times10^{-3}\) Pa s). Plot the settling velocity vs. sand diameter with appropriate label and units.
Box question 2
Box question 2: Here we restrict the sand particle to be tiny because we want to ensure the particle within the Stokes regime, i.e., \(Re < 1\). In your code, add a few lines to calculate Reynolds number and check if Re in the above question is within the Stokes regime.
Tip
plotting a figure might be a good idea in solving Box question 2.
For large particles than what you just plotted, the Stokes law is not going to work, because the drag force is not controlled by viscosity of the water. The drag force is then replaced by this equation:
In hydraulic engineering, simple empirical equations are used to predict settling velocity by modeling drag coefficient \(C_D\) in Eq. (1). For example:
where \(d_*\) is dimensionless diameter, defined by:
with \(G\) is the specific gravity (also known as relative density of the particle) \(G=\rho_p/\rho\).
In Eq. (2), model coefficients are: \(A=32\), \(B=1\), \(m=1.5\).
Take-home work#
Write a program to calculate settling velocity of same sand particles from 200 \(\mu\)m and 1 mm using Eq. (2). Plot the result on top of the figure you created in Box question 1.
Check Reynolds number and plot your result on top of the figure you created in Box question 2.
Try a different set of model coefficients and repeat the above procedure. \(A = 26.4\), \(B = 1.27\), \(m = 1.0\).
Write a sub-function in your code to take arguments of particle diameter \(d\) and model coefficients \(A\), \(B\), and \(m\), so that you do not need to write Eq. (2) in your code.
Write a complete program with sub-function to calculate settling velocity of a different type of particle: Quartz (\(\rho_p = 2650\) kg/m\(^3\)) for diameter 100 \(\mu\)m and 1 mm. Plot your results and compared the equation given in Book ``River Mechanics’’ by Dr. Pierre Y. Jullien: