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
AleksandrR [38]
3 years ago
6

Oil (SAE 30) at 15.6 oC flows steadily between fixed, horizontal, parallel plates. The pressure drop per unit length along the c

hannel is 35 kPa/m, and the distance between the plates is 9 mm. The flow is laminar. Determine: (a) the volume rate of flow (per meter of width), (b) the magnitude of the shearing stress acting on the bottom plate, and (c) the velocity along the centerline of the channel.
Engineering
1 answer:
Nitella [24]3 years ago
7 0

Answer:

(a) The volume rate of flow per meter width = 5.6*10⁻³ m²/s

(b) The shear stress  acting on the bottom plate = 157.5 N/m²

(c) The velocity along the centerline of the channel = 0.93 m/s

Explanation:

(a)

Calculating the distance of plate from centre line using the formula;

h = d/2

where h = distance of plate

d = diameter of flow = 9 mm

Substituting, we have;

h = 9/2

  = 4.5 mm = 4.5*10^-3 m

Calculating the volume flow rate using the formula;

Q = (2h³/3μ)* (Δp/L)

Where;

Q = volume flow rate

h = distance of plate = 4.5*10^-3 m

μ = dynamic viscosity = 0.38 N.s/m²

(Δp/L) = Pressure drop per unit length = 35 kPa/m = 35000 Pa

Substituting into the equation, we have;

Q = (2*0.0045³/3*0.38) *(35000)

    = (1.8225*10⁻⁷/1.14) * (35000)

    = 1.60*10⁻⁷ * 35000

   = 5.6*10⁻³ m²/s

Therefore, the volume flow rate = 5.6*10⁻³ m³/s

(b) Calculating the shear stress acting at the bottom plate using the formula;

τ  = h*(Δp/L)

    = 0.0045* 35000

    = 157.5 N/m²

(c) Calculating the velocity along the centre of the channel using the formula;

u(max) = h²/2μ)* (Δp/L)

   = (0.0045²/2*0.38) * 35000

   =2.664*10⁻⁵ *35000

   = 0.93 m/s

You might be interested in
"Write a statement that outputs variable numItems. End with a newline. Program will be tested with different input values."
kirill [66]

Answer:

The solution code is written in Java.

System.out.println(numItems);

Explanation:

Java <em>println() </em>method can be used to display any string on the console terminal. We can use <em>println()</em> method to output the value held by variable <em>numItems.</em> The <em>numItems </em>is passed as the input parameter to <em>println()</em> and this will output the value of <em>numItems</em> to console terminal and at the same time the output with be ended with a newline automatically.  

6 0
3 years ago
8.19 - Airline Reservations System (Project Name: Airline) - A small airline has just purchased a computer for its new automated
e-lub [12.9K]

Answer:

The App is written in C++ language using dev C++.

Explanation:

/******************************************************************************

You can run this program in any C++ compiler like dev C++ or any online C++ compiler

*******************************************************************************/

#include <iostream>

using namespace std;

class bookingSeat// class for airline reservation system

{

  private:

   

   

  bool reserveSeat[10];// 10 seats (1-5) for first class and 6-10 for economy class

  int firstClassCounter=0;//count first class seat

  int economyClassCounter=5;//count economy class seat

  char seatPlacement;/* switch between economy and first clas seat----- a variable for making decision based on user input*/

  public:  

  void setFirstClassSeat()//

  {

      if(firstClassCounter<5)// first class seat should be in range of 1 to 5

      {

          reserveSeat[firstClassCounter]=1; /*set first class seat..... change index value to 1 meaning that it now it is reserved*/

          cout<<"Your First Class seat is booked and your seat no is "<<firstClassCounter+1; //display seat number reserved

          firstClassCounter++; //increament counter

      }

      else//in case seats are ful

      {

          cout<<"\nSeats are full";

          if(economyClassCounter==10 && firstClassCounter==5)

          {

              cout<<"\n Next flight leaves in 3 hours.";

          }

          else

          {

              cout<<"\nIt’s acceptable to be placed to you in the first-class section  y/n ";//take input from user

              cin>>seatPlacement;//user input

              if(seatPlacement=='y')//if customer want to reserve seat in first class

              {

                  setEconomyClassSeat();// then reserve first class seat

              }

              else

              {

                  cout<<"\n Next flight leaves in 3 hours.";

               }

               

          }

      }

       

  }

  void setEconomyClassSeat()//set economy class seat

  {

    if(economyClassCounter<10)//seat ranges between 6 and 10

      {

          reserveSeat[economyClassCounter]=1;// reserve economy class seat

          cout<<"Your Economy class seat is booked and your seat no is "<<economyClassCounter+1;//display reservation message about seat

          economyClassCounter++;//increament counter

      }

      else// if economy class seats are fulled

      {

          cout<<"\nSeats are full";

          if(economyClassCounter==10 && firstClassCounter==5)//check if all seats are booked in both classes

          {

              cout<<"\n Next flight leaves in 3 hours.";

          }

          else

          {

              cout<<"\nIt’s acceptable to be placed to you in the first-class section  y/n ";//take input from user

              cin>>seatPlacement;//user input

              if(seatPlacement=='y')//if customer want to reserve seat in first class

              {

                  setFirstClassSeat();// then reserve first class seat

              }

              else

              {

                  cout<<"\n Next flight leaves in 3 hours.";

               }

               

          }

      }

  }

   

   

};

int main()

{   int checkseat=10;// check seat

   int classType;//class type economy or first class

   bookingSeat bookseat;//object declaration of class bookingSeat

   while(checkseat<=10)//run the application until seats are fulled in both classes

   {

       cout<<"\nEnter 1 for First Class and 2 for Economy Class ";

       cin>>classType;//what user entered

       switch (classType)//decide which seat class to be reserved  

       {

           case 1://if user enter 1 then reserve first class seat

           bookseat.setFirstClassSeat();

           break;

           case 2://if user enter 2 then reserve the economy class seat

           bookseat.setEconomyClassSeat();

           

       }

       

   }

   

   return 0;

}

8 0
2 years ago
What is the perimeter of 14-7 and 3-4
Goshia [24]

Answer:

If you mean two sides are 7 and two sides are 14 then you'd have 42

and for the second you'd have 14

Explanation:

7 + 7 = 14, 14 + 14 = 28, 14 + 28 = 42

3 + 3 = 6, 4 + 4 = 8, 8 + 6 = 14

5 0
3 years ago
HfrrghhJbfrfefefft nbgyjjiutrwdgju
Tasya [4]

Answer:

hshdhriwjajaldh skshdjdywuusg

Explanation:

null

4 0
2 years ago
What types of issues MAY occur to slow or prevent the best outcome?
german

Answer:

im sorry but i cant find any studies about this and im 3 days late

4 0
3 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
  • Why should engineers avoid obvious patterns?
    13·2 answers
  • Anyone have any good ways of revisiting <br> Or <br> Have any good study notes
    11·1 answer
  • Answer every question of this quiz
    7·1 answer
  • 21. How long can food that requires time-temperature control be left in the danger zone?
    7·2 answers
  • Which tool is used to pull the tapered shaft on a tie-rod end from its mating steering component?
    9·1 answer
  • Consider laminar, fully developed flow in a channel of constant surface temperature Ts. For a given mass flow rate and channel l
    15·1 answer
  • I have a stream with three components, A, B, and C, coming from another process. The stream is 50 % A, and the balance is equal
    11·1 answer
  • The hot-wire anemometer.' A hot-wire anemome ter is essentially a fine wire, usually made of platinum,which is heated electrical
    6·1 answer
  • Who here likes to play project gotham racing?<br> will mark brainlyest
    8·2 answers
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!