1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
babunello [35]
3 years ago
5

An incompressible fluid flows between two infinite stationary parallel plates. The velocity profile is given by u=umaxðAy2 + By+

CÞ, where A, B, and C are constants and y is measured upward from the lower plate. The total gap width is h units. Use appropriate boundary conditions to express the magnitude and units of the constants in terms of h. Develop an expression for volume flow rate per unit depth and evaluate the ratio V=umax
Engineering
1 answer:
nexus9112 [7]3 years ago
5 0

Answer:

the volume flow rate per unit depth is:

\frac{Q}{b} = \frac{2}{3} u_{max} h

the ratio is : \frac{V}{u_{max}}=\frac{2}{3}

Explanation:

From the question; the  equations of the velocities profile in the system are:

u = u_{max}(Ay^2+By+C)   ----- equation (1)

The above boundary condition can now be written as :

At y= 0; u =0           ----- (a)

At y = h; u =0            -----(b)

At y = \frac{h}{2} ; u = u_{max}     ------(c)

where ;

A,B and C are constant

h = distance between two plates

u = velocity

u_{max} = maximum velocity

y = measured distance upward from the lower plate

Replacing the boundary condition in (a) into equation (1) ; we have:

u = u_{max}(Ay^2+By+C) \\ \\ 0 = u_{max}(A*0+B*0+C) \\ \\ 0=u_{max}C \\ \\ C= 0

Replacing the boundary condition (b) in equation (1); we have:

u = u_{max}(Ay^2+By+C) \\ \\ 0 = u_{max}(A*h^2+B*h+C) \\ \\ 0 = Ah^2 +Bh + C \\ \\ 0 = Ah^2 +Bh + 0 \\ \\ Bh = - Ah^2 \\ \\ B = - Ah   \ \ \ \ \   --- (d)

Replacing the boundary condition (c) in equation (1); we have:

u = u_{max}(Ay^2+By+C) \\ \\ u_{max}= u_{max}(A*(\frac{h^2}{2})+B*\frac{h}{2}+C) \\ \\ 1 = \frac{Ah^2}{4} +B \frac{h}{2} + 0 \\ \\ 1 =  \frac{Ah^2}{4} + \frac{h}{2}(-Ah)  \\ \\ 1=  \frac{Ah^2}{4}  - \frac{Ah^2}{2}  \\ \\ 1 = \frac{Ah^2 - Ah^2}{4}  \\ \\ A = -\frac{4}{h^2}

replacing A = -\frac{4}{h^2} for A in (d); we get:

B = - ( -\frac{4}{h^2})hB = \frac{4}{h}

replacing the values of A, B and C into the velocity profile expression; we have:

u = u_{max}(Ay^2+By+C) \\ \\ u = u_{max} (-\frac{4}{h^2}y^2+\frac{4}{h}y)

To determine the volume flow rate; we have:

Q = AV \\ \\ Q= \int\limits^h_0 (u.bdy)

Replacing u_{max} (-\frac{4}{h^2}y^2+\frac{4}{h}y) \ for \ u

\frac{Q}{b} = \int\limits^h_0 u_{max}(-\frac{4}{h^2} y^2+\frac{4}{h}y)dy \\ \\  \frac{Q}{b} = u_{max}  \int\limits^h_0 (-\frac{4}{h^2} y^2+\frac{4}{h}y)dy \\ \\ \frac{Q}{b} = u_{max} (-\frac{-4}{h^2}\frac{y^3}{3} +\frac{4}{h}\frac{y^2}{y})^ ^ h}}__0  }} \\ \\ \frac{Q}{b} =u_{max} (-\frac{-4}{h^2}\frac{h^3}{3} +\frac{4}{h}\frac{h^2}{y})^ ^ h}}__0  }} \\ \\ \frac{Q}{b} = u_{max}(\frac{-4h}{3}+\frac{4h}2} ) \\ \\ \frac{Q}{b} = u_{max}(\frac{-8h+12h}{6}) \\ \\ \frac{Q}{b} =u_{max}(\frac{4h}{6})

\frac{Q}{b} = u_{max}(\frac{2h}{3}) \\ \\ \frac{Q}{b} = \frac{2}{3} u_{max} h

Thus; the volume flow rate per unit depth is:

\frac{Q}{b} = \frac{2}{3} u_{max} h

Consider the discharge ;

Q = VA

where :

A = bh

Q = Vbh

\frac{Q}{b}= Vh

Also;  \frac{Q}{b} = \frac{2}{3} u_{max} h

Then;

\frac{2}{3} u_{max} h = Vh \\ \\ \frac{V}{u_{max}}=\frac{2}{3}

Thus; the ratio is : \frac{V}{u_{max}}=\frac{2}{3}

You might be interested in
Modify any of the previous labs which would have crashed when non-numeric data was entered by adding exception handling so that
Mashutka [201]

Answer:

see explaination

Explanation:

import java.util.InputMismatchException;

import java.util.Scanner;

public class calculate {

static float a=0,b=0;

double cal()

{

if(a==0||b==0)

{

System.out.println("no values found in a or b");

start();

}

double x=(a*a)+(b*b);

double h=Math.sqrt(x);

a=0;

b=0;

return h;

}

float enter()

{

float val=0;

try

{

System.out.println("Enter side");

Scanner sc1 = new Scanner(System.in);

val = sc1.nextFloat();

return val;

}

catch(InputMismatchException e)

{

System.out.println("Enter correct value");

}

return val;

}

void start()

{

calculate c=new calculate();

while(true)

{

System.out.println("Enter Command");

Scanner sc = new Scanner(System.in);

String input = sc.nextLine();

switch(input)

{

case "A":

a=c.enter();

break;

case "B":

b=c.enter();

break;

case "C":

double res=c.cal();

System.out.println("Hypotenuse is : "+res);

break;

case "Q":

System.exit(0);

default:System.out.println("wrong command");

}

}

}

public static void main(String[] args) {

calculate c=new calculate();

c.start();

}

}

7 0
3 years ago
Which of the following are all desirable properties of a hydraulic fluid? a. good heat transfer capability, low viscosity, high
Vinvika [58]

Answer:

e.Fire resistance,Inexpensive,Non-toxic.

Explanation:

Desirable hydraulic property of fluid as follows

1. Good chemical and environment stability

2. Low density

3. Ideal viscosity

4. Fire resistance

5. Better heat dissipation

6. Low flammability

7. Good lubrication capability

8. Low volatility

9. Foam resistance

10. Non-toxic

11. Inexpensive

12. Demulsibility

13. Incompressibility

So our option e is right.

5 0
2 years ago
If a front gear had 24 teeth, and a rear gear has 12 teeth:
zubka84 [21]

Answer:

  4 times around

Explanation:

The total number of teeth involved will be the same for each gear. If the front gear is connected to the pedal and it goes around twice, then 2·24 = 48 teeth will have passed the reference point.

If the rear gear is attached to the wheel, and 48 teeth pass the reference point, then it will have made ...

  (48 teeth)/(12 teeth/turn) = 4 turns

4 0
2 years ago
The combustion chamber has different shapes depending on the make and model of the engine. True or false
Alisiya [41]

Answer:

svdsdfdfsdfssdf

Explanation:

fsdsdfsdffsdsfdsdf

5 0
2 years ago
Typical noise associated with failed cv joint​
igor_vitrenko [27]

Answer:

A worn inner CV joint often makes a clunking noise during starts and stops.

3 0
2 years ago
Other questions:
  • Consider the series solution, Equation 5.42, for the plane wall with convection. Calculate midplane (x* = 0) and surface (x* = 1
    5·1 answer
  • 12. The small space above the piston in which fuel is burned is called the
    10·1 answer
  • A room is cooled by circulating chilled water through a heat exchanger located in the room. The air is circulated through the he
    15·1 answer
  • "A computer architect redesigns the pipeline above to enable branch prediction. When PCSrc is asserted (branch taken) IF/ID is f
    10·1 answer
  • A mercury thermometer has a cylindrical capillary tube with an internal diameter of 0.2 mm. If the volume of the thermometer and
    10·1 answer
  • Part of the following pseudocode is incompatible with the Java, Python, C, and C++ language Identify the problem. How would you
    12·1 answer
  • The value 100 MW is equivalent to (a) 100×10^6 w (b) 100 x 10^-6 w (c) 100 x 10^-3 w (d) 100 x 10^3 w
    14·1 answer
  • Introduction for site visit​
    13·1 answer
  • What was the most important thing you learned this school year in your engineering class and why did you choose this thing
    15·1 answer
  • What is photosynthesis​
    9·2 answers
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!