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
const2013 [10]
2 years ago
7

The following statements are about the laminar boundary layer over a flat plate. For each statement, answer whether the statemen

t is true or false.
1. At a given x-location, if the Reynolds number were to increase, the boundary layer thickness would also increase.
A. True B. False
2. As outer flow velocity increases, so does the boundary layer thickness.
A. True B. False
3. As the fluid viscosity increases, so does the boundary layer thickness.
A. True B. False
4. As the fluid density increases, so does the boundary layer thickness.
A. True B. False
5. The boundary layer equations are approximations of the Navier-Stokes equation.
A. True B. False
6. The curve representing boundary layer thickness as function of x is a streamline.
A. True B. False
7. The boundary layer approximation bridges the gap between the Euler equation and the Navier-Stokes equation.
A. True B. False
Engineering
1 answer:
Nikolay [14]2 years ago
6 0

Answer:

1. B. False

2.  B. False

3. A. True

4. B. False

5. A. True

6. A. True

7. A. True

Explanation:

1. B. False

The relation of Reynolds' number, Reₓ to boundary layer thickness δ at a point x is given by the relation

\delta = \dfrac{x \times C}{\sqrt{Re_x} }

That is the boundary layer thickness is inversely proportional to the square root of the Reynolds' number so that if the Reynolds' number were to increase, the boundary layer thickness would decrease

Therefore, the correct option is B. False

2.  B. False

From the relation

Re_x = \dfrac{U_o \times x}{v}

As the outer flow velocity increases, the boundary layer thickness diminishes

3. A. True

As the viscous force is increased the boundary layer thickness increases

4. B. False

Boundary layer thickness is inversely proportional to velocity

5. A. True

The boundary layer model developed by Ludwig Prandtl is a special case of the Navier-Stokes equation

6. A. True

Given a definite boundary layer thickness, the curve representing the boundary layer thickness is a streamline

7. A. True

The boundary layer approximation by Prandtl Euler bridges the gap between the Euler (slip boundary conditions) and Navier-Stokes (no slip boundary conditions) equations.

You might be interested in
Please help, Artificial Intelligence class test
MrRissso [65]

The answer to your quesition is b

4 0
2 years ago
Heating of Oil by Air. A flow of 2200 lbm/h of hydrocarbon oil at 100°F enters a heat exchanger, where it is heated to 150°F by
irakobra [83]

Answer:

2062 lbm/h

Explanation:

The air will lose heat and the oil will gain heat.

These heats will be equal in magnitude.

qo = -qa

They will be of different signs because one is entering iits system and the other is exiting.

The heat exchanged by oil is:

qo = Gp * Cpo * (tof - toi)

The heat exchanged by air is:

qa = Ga * Cpa * (taf - tai)

The specific heat capacity of air at constant pressure is:

Cpa = 0.24 BTU/(lbm*F)

Therefore:

Gp * Cpo * (tof - toi) = Ga * Cpa * (taf - tai)

Ga = (Gp * Cpo * (tof - toi)) / (Cpa * (taf - tai))

Ga = (2200 * 0.45 * (150 - 100)) / (0.24 * (300 - 200)) = 2062 lbm/h

5 0
3 years ago
What is an isentropic process?
snow_tiger [21]

Answer: Isentropic process is the process in fluids which have a constant entropy.

Explanation: The  isentropic process is considered as the ideal thermodynamical  process and has both adiabatic as well as reversible processes in internal form.This process supports no transfer of heat and  no transformation of matter .The entropy of the provided mass also remains unchanged or consistent.These processes are usually carried out on material on  the efficient device.

5 0
3 years ago
Amanda and Tyler opened a business that specializes in shipping liquids, such as milk, juice, and water, in cylindrical containe
USPshnik [31]

Answer:

circleType.h

#ifndef circleType_H

#define circleType_H

class circleType

{

public:

void print();

void setRadius(double r);

//Function to set the radius.

//Postcondition: if (r >= 0) radius = r;

// otherwise radius = 0;

double getRadius();

//Function to return the radius.

//Postcondition: The value of radius is returned.

double area();

//Function to return the area of a circle.

//Postcondition: Area is calculated and returned.

double circumference();

//Function to return the circumference of a circle.

//Postcondition: Circumference is calculated and returned.

circleType(double r = 0);

//Constructor with a default parameter.

//Radius is set according to the parameter.

//The default value of the radius is 0.0;

//Postcondition: radius = r;

private:

double radius;

};

#endif

circleTypeImpl.cpp

#include <iostream>

#include "circleType.h"

using namespace std;

void circleType::print()

{

cout << "Radius = " << radius

<< ", area = " << area()

<< ", circumference = " << circumference();

}

void circleType::setRadius(double r)

{

if (r >= 0)

radius = r;

else

radius = 0;

}

double circleType::getRadius()

{

return radius;

}

double circleType::area()

{

return 3.1416 * radius * radius;

}

double circleType::circumference()

{

return 2 * 3.1416 * radius;

}

circleType::circleType(double r)

{

setRadius(r);

}

cylinderType.h

#ifndef cylinderType_H

#define cylinderType_H

#include "circleType.h"

class cylinderType: public circleType

{

public:

void print();

void setHeight(double);

double getHeight();

double volume();

double area();

//returns surface area

cylinderType(double = 0, double = 0);

private:

double height;

};

#endif

cylinderTypeImpl.cpp

#include <iostream>

#include "circleType.h"

#include "cylinderType.h"

using namespace std;

cylinderType::cylinderType(double r, double h)

: circleType(r)

{

setHeight(h);

}

void cylinderType::print()

{

cout << "Radius = " << getRadius()

<< ", height = " << height

<< ", surface area = " << area()

<< ", volume = " << volume();

}

void cylinderType::setHeight(double h)

{

if (h >= 0)

height = h;

else

height = 0;

}

double cylinderType::getHeight()

{

return height;

}

double cylinderType::area()

{

return 2 * 3.1416 * getRadius() * (getRadius() + height);

}

double cylinderType::volume()

{

return 3.1416 * getRadius() * getRadius() * height;

}

main.cpp

#include <iostream>

#include <iomanip>

using namespace std;

#include "cylinderType.h"

int main()

{

double radius,height;

double shippingCostPerLi,paintCost,shippingCost=0.0;

 

cout << fixed << showpoint;

cout << setprecision(2);

cout<<"Enter the radius :";

cin>>radius;

 

cout<<"Enter the Height of the cylinder :";

cin>>height;

 

 

cout<<"Enter the shipping cost per liter :$";

cin>>shippingCostPerLi;

 

 

//Creating an instance of CylinderType by passing the radius and height as arguments

cylinderType ct(radius,height);

 

double surfaceArea=ct.area();

double vol=ct.volume();

 

 

shippingCost+=vol*28.32*shippingCostPerLi;

 

char ch;

 

cout<<"Do you want the paint the container (y/n)?";

cin>>ch;

if(ch=='y' || ch=='Y')

{

cout<<"Enter the paint cost per sq foot :$";

cin>>paintCost;    

shippingCost+=surfaceArea*paintCost;    

}    

cout<<"Total Shipping Cost :$"<<shippingCost<<endl;

 

return 0;

}

3 0
3 years ago
When asked about favorite Thanksgiving leftovers, 9% of the people said turkey and 7100 said mashed potatoes. Which food is more
irakobra [83]

Answer:

how many people were asked though

Explanation:

8 0
2 years ago
Other questions:
  • You are to assess the biomechanics of a male’s arm using his bicep to hold a 20 kg object in his hand. The upper arm is perpendi
    5·1 answer
  • In a simple ideal Rankine cycle, water is used as the working fluid. The cycle operates with pressures of 2000 psi in the boiler
    7·1 answer
  • What is the first step in the problem-solving process, as well as in the engineering design process?
    7·1 answer
  • In a four-stroke engine, the piston rises in the cylinder, which triggers the _______ stroke.
    8·1 answer
  • What additional information would make the following problem statement stronger? Select all that apply.
    8·1 answer
  • Anything you want to do in Hootsuite can be found in the ________, with the main workspace in the _________?
    15·1 answer
  • An astronomer of 65 kg of mass hikes from the beach to the observatory atop the mountain in Mauna Kea, Hawaii (altitude of 4205
    15·1 answer
  • HELP _7. All of the following except which would lead to an INCREASE in friction?
    15·1 answer
  • There are three homes being built, each with an identical deck on the back. Each deck is comprised of two separate areas. One ar
    7·1 answer
  • 1)What are the three previous manufacturing revolutions Mr. Scalabre mentions? When did these take place?
    6·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!