Package: Numerical Methods For Engineers With 2 Semester Connect Access Card
Package: Numerical Methods For Engineers With 2 Semester Connect Access Card
7th Edition
ISBN: 9781259279911
Author: Steven Chapra
Publisher: McGraw-Hill Education
bartleby

Videos

Textbook Question
Book Icon
Chapter 8, Problem 48P

Determining the velocity of particles settling through fluids is of great importance of many areas of engineering and science. Such calculations depend on the flow regime as represented by the dimensionless Reynolds number,

Re = ρ d v μ (P8.48.1)

where ρ = the fluid's density ( kg/m 3 ) ,   d = the particle diameter ( m ) ,   y = the particle's settling velocity ( m/s ) ,  and  μ = the fluid's dynamic viscosity ( N s/m 2 ) . Under laminar conditions ( Re < 0.1 ) , the settling velocity of a spherical particle can be computed with the following formula based on Stokes law,

v = g 18 ( ρ s ρ μ ) d 2 (P8.48.2)

where g = the gravitational constant ( = 9.81  m/s 2 ) ,  and  ρ s = the particle's density ( kg/m 3 ) . For turbulent conditions (i.e., higher Reynolds numbers), an alternative approach can be used based on the following formula:

v = 4 g ( ρ s ρ ) d 3 C D ρ (P8.48.3)

where C D = the drag coefficient, which depends on the Reynolds number as in

C D = 24 Re + 3 Re + 0.34 (P8.48.4)

(a) Combine Eqs. (P8.48.2), (P8.48.3), and (P8.48.4) to express the determination of v as a roots of equations problem. That is, express the combined formula in the format f ( v ) = 0 .

(b) Use the modified secant method with δ = 10 23  and  ε S = 0.05 % to determine v for a spherical iron particle settling in water, where d = 200 μ m , ρ = 1 g/cm 3 , ρ s = 7.874 g/cm 3 , and  μ = 0.014  g/ ( cm s ) . Employ Eq. (P8.48.2) to generate your initial guess.

(c) Based on the result of (b), compute the Reynolds number and the drag coefficient, and use the latter to confirm that the flow regime is not laminar.

(d) Develop a fixed-point iteration solution for the conditions outlined in (b).

(e) Use a graphical approach to illustrate that the formulation developed in (d) will converge for any positive guess.

(a)

Expert Solution
Check Mark
To determine

To calculate: The equation for the velocity of the particles that settle inside fluids in the form f(v)=0.

Answer to Problem 48P

Solution: The desired equation for the velocity of the settling particles is f(v)=4g(ρsρ)d3(24μρdv+3μρdv+0.34)ρv.

Explanation of Solution

Given Information:

The relation between the fluid’s velocity in m/s, v and the dimensionless Reynolds number, Re, is:

Re=ρdvμ

Here, d is the diameter of the object in m, ρ is the density of the object in kg/m3 and μ is the fluids viscosity in Ns/m2.

Formula Used:

When the Reynolds number is less than 0.1, the Stokes law states that:

v=g18(ρsρμ)d2

Here, g is the gravitational constant and ρs is the particle’s density in kg/m3.

When the Reynolds number is higher,

v=4g(ρsρ)d3CDρ

Here CD is the drag coefficient whose value is given by:

CD=24Re+3Re+0.34

Calculation:

Consider the formula for the Reynolds’ number:

Re=ρdvμ

Substitute the value of the Reynolds number in the formula for the drag coefficient.

CD=24μρdv+3μρdv+0.34 ……(1)

Now replace the value of the drag coefficient from equation (1) into the formula for the velocity of the particle when the Reynolds number is greater than 0.1 to obtain:

v=4g(ρsρ)d3CDρv=4g(ρsρ)d3(24μρdv+3μρdv+0.34)ρ

Now create a function whose zero is same as the root of this equation:

f(v)=4g(ρsρ)d3(24μρdv+3μρdv+0.34)ρv

This is the desired equation.

(b)

Expert Solution
Check Mark
To determine

To calculate: The zero of the function obtained in part (a) using the modified secant method where δ equals 103 and εs is 0.05% and obtain the velocity of an iron particle settling in water.

Answer to Problem 48P

Solution: The velocity of the iron particle settling in water is 0.0697075 m/s.

Explanation of Solution

Given Information:

The diameter of the iron particle is 200μm, the density of the iron particle ρs is 7.874 g/cm3, the viscosity of water μ is 0.014g/cms.

Formula Used:

The iterative scheme for the modified secant method is of the form:

xi+1=xif(xi)f'(xi)

where f'(xi) can be approximated by:

f'(xi)=f(xi+δ)f(xi)δ

Calculation:

Note that the dimensions of the diameter, particle density, water density, and the viscosity of water are different to what can be used in the equation obtained in part (a).

Convert the dimensions as follows:

d=200μm=200μmm106μm=0.0002m

And,

ρ=1g/cm3=1g/cm3106cm3m3kg103g=1000 kg/m3

And,

μ=0.014gcm s=0.014gcms100cmmkg103g=0.0014kgm s

And,

ρs=7.874g/cm3=7.874g/cm3106cm3m3kg103g=7874 kg/m3

The modified secant method requires an initial guess. This can be obtained using Stoke’s law.

v=g18(ρsρμ)d2=9.8118(7.87410.0014)0.00022=0.107038

Now the modified secant method can be started. This will be done using MATLAB.

Code:

The mod_secant.m file

% A function that uses the modified secant method with maximum iterations N, a tolerance of tol

% an initial value of x_0 and delta as delx

functionmod_secant(f,delx,x_0,N,tol)

clc;

format long g

% Initialize the solution as the initial value

sol(1)=x_0;

% Counter

k=1;

% This needs to be grater than the tolerance specified

app_err=100000;

% The code will run till the err<tol and the maximum iterations have not been reached

while(k<N &app_err>tol)

% The formula for the modified secant method

% Re(k)=sig*sol(k)*d/u;

fdiff(k)=(f(sol(k)+delx)-f(sol(k)))/delx;

sol(k+1)=sol(k)-f(sol(k))/fdiff(k);

if k>=1

% Calculate the relative approximate error

app_err(k+1)=abs((sol(k+1)-sol(k))/sol(k+1))*100;

end

k=k+1;

end

% Store the results in new column matrices

Iteration=[0;1;2;3];

Velocity=sol';

Error=app_err';

% Replace the starting entry for app_err as 100000 by 0 as the absolute

% relative error can only be calculated from the first iteration

Error=Error(2:end);

Error=[0;Error];

% Display the results in a table

T=table(Iteration,Velocity,Error)

end

The func.m file

function y=func(v);

d=0.0002;sig=1000;u=0.0014;sig_s=7874;g=9.81;

a=4*g*(sig_s-sig)*d;

b=(24*u)./(sig*d*v)+(3*sqrt(u))./(sqrt(sig*d*v))+0.34;

y=sqrt(a./(3*b*sig))-v;

end

Output:

Package: Numerical Methods For Engineers With 2 Semester Connect Access Card, Chapter 8, Problem 48P , additional homework tip  1

Note that in the third iteration the absolute relative percentage error falls below 0.05%.

Hence the desired velocity can be approximated as 0.0697075 m/s.

(c)

Expert Solution
Check Mark
To determine

To calculate: The Reynolds number and the drag coefficient for the iron particles that settle in water and then determine whether the flow in laminar or not.

Answer to Problem 48P

Solution: The Reynolds number is 9.95821429 and the drag coefficient is 3.70074225. This implies that the flow is not laminar.

Explanation of Solution

Given Information:

The velocity of the iron particle settling in water is 0.0697075 m/s. The diameter of the iron particle is 0.0002 m, the density of the iron particle ρs is 7874 kg/m3, the viscosity of water μ is 0.0014 kg/ms and the density ρ of water is 1000 kg/m3.

Formula Used:

The relation between the fluid’s velocity in m/s, v and the dimensionless Reynolds number, Re, is:

Re=ρdvμ

Here, d is the diameter of the object in m, ρ is the density of the object in kg/m3 and μ is the fluids viscosity in Ns/m2.

CD is the drag coefficient of a particle whose value is given by:

CD=24Re+3Re+0.34

Calculation:

Substitute 0.0697075 for the v, 0.0002 for d, 1000 for ρ and0.0014 for μ in the formula of the Reynolds number to obtain:

Re=ρdvμ=(1000)(0.0002)0.06970750.0014=9.95821429

Hence, the Reynolds number is 9.95821429. As this is greater than 0.1, the flow is non-laminar.

Now substitute 9.95821429 for Re in the formula for the drag-coefficient to obtain:

CD=24Re+3Re+0.34=249.95821429+39.95821429+0.34=3.70074225

Thus, the drag coefficient is 3.70074225.

(d)

Expert Solution
Check Mark
To determine

To calculate: The zero of the function obtained in part (a) using the fixed point method where εs is 0.05% and obtain the velocity of an iron particle settling in water.

Answer to Problem 48P

Solution: The velocity of the iron particle settling in water is 0.0697226 m/s.

Explanation of Solution

Given Information:

The diameter of the iron particle is 200μm, the density of the iron particle ρs is 7.874 g/cm3, the viscosity of water μ is 0.014g/cms.

Formula Used:

The iterative scheme for the fixed point method is of the form:

xi+1=f(xi)

Calculation:

Note that the dimensions of the diameter, particle density, water density, and the viscosity of water are different to what can be used in the equation obtained in part (a).

Convert the dimensions as follows:

d=200μm=200μmm106μm=0.0002m

And,

ρ=1g/cm3=1g/cm3106cm3m3kg103g=1000 kg/m3

And,

μ=0.014gcm s=0.014gcms100cmmkg103g=0.0014kgm s

And,

ρs=7.874g/cm3=7.874g/cm3106cm3m3kg103g=7874 kg/m3

The fixed point method requires an initial guess. This can be obtained using Stoke’s law.

v=g18(ρsρμ)d2=9.8118(7.87410.0014)0.00022=0.107038

Consider the equation whose root needs to obtain as velocity:

g(v)=4g(ρsρ)d3(24μρdv+3μρdv+0.34)ρ

Now proceed with the fixed-point method using MATLAB.

Code:

The fixed_point.m file

% A function that uses the fixed point method with maximum iterations N, a tolerance of tol

% an initial value of x_0

functionfixed_point(f,x_0,N,tol)

clc;

format long g

% Initialize the solution as the initial value

sol(1)=x_0;

% Counter

k=1;

% This needs to be grater than the tolerance specified

app_err=100000;

% The code will run till the err<tol and the maximum iterations have not been reached

while(k<N &app_err>tol)

sol(k+1)=f(sol(k));

if k>=1

% Calculate the relative approximate error

app_err(k+1)=abs((sol(k+1)-sol(k))/sol(k+1))*100;

end

k=k+1;

end

% Store the results in new column matrices

Iteration=1:length(sol);

Iteration=Iteration';

Velocity=sol';

Error=app_err';

% Replace the starting entry for app_err as 100000 by 0 as the absolute

% relative error can only be calculated from the first iteration

Error=Error(2:end);

Error=[0;Error];

% Display the results in a table

T=table(Iteration,Velocity,Error)

end

The g.m file

function y=g(v);

d=0.0002;sig=1000;u=0.0014;sig_s=7874;g=9.81;

a=4*g*(sig_s-sig)*d;

b=(24*u)./(sig*d*v)+(3*sqrt(u))./(sqrt(sig*d*v))+0.34;

y=sqrt(a./(3*b*sig));

end

Output:

Package: Numerical Methods For Engineers With 2 Semester Connect Access Card, Chapter 8, Problem 48P , additional homework tip  2

This shows that after the 9th iteration, the approximate relative percentage error reaches below 0.05%.

Hence the desired velocity can be approximated as 0.0697226 m/s.

(e)

Expert Solution
Check Mark
To determine

To prove: The function whose root was computed in part (d) would converge using the fixed point iteration irrespective of a positive initial guess.

Explanation of Solution

Given Information:

The diameter of the iron particle is 0.0002 m, the density of the iron particle ρs is 7874 kg/m3, the viscosity of water μ is 0.0014 kg/ms and the density ρ of water is 1000 kg/m3.

Formula Used:

The function in terms of the velocity whose zero or root was computed in part (d) was

g(v)=4g(ρsρ)d3(24μρdv+3μρdv+0.34)ρ

Proof:

The fixed point iteration for a function f(x) works based on the following equation:

f(x)=x ……(1)

This is iteratively rewritten as:

xi+1=f(xi)

Use equation (1) to set up a similar equation for the provided problem as:

g(v)=v4g(ρsρ)d3(24μρdv+3μρdv+0.34)ρ=v

Now graph the functions on the right and on the left of the provided equation.

This can be done using MATLAB.

Code:

clc; clear all;

% Create a discrete domain for v

v=0:0.001:0.16;

% Denote the first function

y1=v;

% Now denote the second function using the provided value of the constants

d=0.0002;sig=1000;u=0.0014;sig_s=7874;g=9.81;

a=4*g*(sig_s-sig)*d;

b=(24*u)./(sig*d*v)+(3*sqrt(u))./(sqrt(sig*d*v))+0.34;

y2=sqrt(a./(3*b*sig));

% Now plot the two functions

plot(v,y1,v,y2)

legend('v','g(v)')

Graph:

Package: Numerical Methods For Engineers With 2 Semester Connect Access Card, Chapter 8, Problem 48P , additional homework tip  3

Interpretation:

Note that the graph is divided into two parts. The first part where the function g(v) lies above v and the second part where g(v) lies below v.

For both the parts, it is clear that any positive guess say x0 would give have a corresponding value f(x0).

A line drawn horizontal from (x0,f(x0)) would intersect with the curve y=v at a point say x1.

Now proceeding the same way as before, the iterative method would approach the true root. Note that this would occur irrespective of the positive value of x0.

This can be illustrated as:

Package: Numerical Methods For Engineers With 2 Semester Connect Access Card, Chapter 8, Problem 48P , additional homework tip  4

Hence, the fixed point method would converge irrespective of the positive initial guess x0.

Want to see more full solutions like this?

Subscribe now to access step-by-step solutions to millions of textbook problems written by subject matter experts!

Chapter 8 Solutions

Package: Numerical Methods For Engineers With 2 Semester Connect Access Card

Ch. 8 - 8.11 The operation of a constant density plug flow...Ch. 8 - 8.12 The Ergun equation, shown below, is used to...Ch. 8 - The pressure drop in a section of pipe can be...Ch. 8 - 8.14 In structural engineering, the secant formula...Ch. 8 - 8.15 In environmental engineering (a specialty...Ch. 8 - 8.16 The concentration of pollutant bacteria c in...Ch. 8 - A catenary cable is one that is hung between two...Ch. 8 - 8.18 Figure P8.18a shows a uniform beam subject to...Ch. 8 - 8.19 The displacement of a structure is defined by...Ch. 8 - 8.20 The Manning equation can be written for a...Ch. 8 - In ocean engineering, the equation for a reflected...Ch. 8 - 8.22 You buy a $20,000 piece of equipment for...Ch. 8 - Many fields of engineering require accurate...Ch. 8 - 8.24 A simply supported beam is loaded as shown in...Ch. 8 - 8.25 Using the simply supported beam from Prob....Ch. 8 - Using the simply supported beam from Prob. 8.24,...Ch. 8 - Using the simply supported beam from Prob. 8.24,...Ch. 8 - 8.28 Although we did not mention it in Sec. 8.2,...Ch. 8 - 8.29 Perform the same computation as in Sec. 8.3,...Ch. 8 - An oscillating current in an electric circuit is...Ch. 8 - Prob. 31PCh. 8 - 8.32 A total charge Q is uniformly distributed...Ch. 8 - 8.33 Figure P8.33 shows a circuit with a resistor,...Ch. 8 - Beyond the Colebrook equation, other...Ch. 8 - Real mechanical systems may involve the deflection...Ch. 8 - Mechanical engineers, as well as most other...Ch. 8 - Aerospace engineers sometimes compute the...Ch. 8 - The general form for a three-dimensional stress...Ch. 8 - The upward velocity of a rocket can be computed by...Ch. 8 - The phase angle between the forced vibration...Ch. 8 - Two fluids at different temperatures enter a mixer...Ch. 8 - A compressor is operating at compression ratio Rc...Ch. 8 - In the thermos shown in Fig. P8.43, the innermost...Ch. 8 - 8.44 Figure P8.44 shows three reservoirs connected...Ch. 8 - A fluid is pumped into the network of pipes...Ch. 8 - 8.46 Repeat Prob. 8.45, but incorporate the fact...Ch. 8 - The space shuttle, at lift-off from the launch...Ch. 8 - 8.48 Determining the velocity of particles...
Knowledge Booster
Background pattern image
Advanced Math
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, advanced-math and related others by exploring similar questions and additional content below.
Recommended textbooks for you
Text book image
Functions and Change: A Modeling Approach to Coll...
Algebra
ISBN:9781337111348
Author:Bruce Crauder, Benny Evans, Alan Noell
Publisher:Cengage Learning
Text book image
College Algebra (MindTap Course List)
Algebra
ISBN:9781305652231
Author:R. David Gustafson, Jeff Hughes
Publisher:Cengage Learning
Introduction to experimental design and analysis of variance (ANOVA); Author: Dr. Bharatendra Rai;https://www.youtube.com/watch?v=vSFo1MwLoxU;License: Standard YouTube License, CC-BY