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
melamori03 [73]
3 years ago
8

2. (Problem 4.60 on main book, diameters different) Water flows steadily through a fire hose and nozzle. The hose is 35 mm diame

ter and the nozzle tip is 25 mm diameter; water gage pressure in the hose is 510 kPa, and the stream leaving the nozzle is uniform. The exit speed and pressure are 32 m/s and atmospheric, respectively. Find the force transmitted by the coupling between the nozzle and hose. Indicate whether the coupling is in tension or compression.
Engineering
1 answer:
Viefleur [7K]3 years ago
4 0

Answer:

coupling is in tension

Force = -244.81 N

Explanation:

Diameter of Hose ( D1 ) = 35 mm

Diameter of nozzle ( D2 ) = 25 mm

water gage pressure in hose = 510 kPa

stream leaving the nozzle is uniform

exit speed and pressure = 32 m/s and atmospheric

<u>Determine the force transmitted by the coupling between the nozzle and hose </u>

attached below is the remaining part of the  detailed solution

Inlet velocity ( V1 ) = V2 ( D2/D1 )^2  

= 32 ( 25 / 35 )^2

= 16.33 m/s

You might be interested in
The best grade of hardwood lumber that is generally available is _____​
Vesnalui [34]

Answer:

FAS

Explanation:

first and second grade

5 0
2 years ago
A patient has swollen feet, ankles, and legs, and has pain in his lower back. Tests show the level of urea, a waste product, in
myrzilka [38]

Answer: B  Excretory

Explanation: Hope this helps :)

3 0
3 years ago
Someone should help me and explain stress strain curve​
dimulka [17.4K]

Answer:

In engineering and materials science, a stress–strain curve for a material gives the relationship between stress and strain. It is obtained by gradually applying load to a test coupon and measuring the deformation, from which the stress and strain can be determined (see tensile testing).

Explanation:

please mark brainliest

4 0
3 years ago
For a project in C++ we are supposed toDesign a class named Month. The class should have the following private members:-name: a
mart [117]

Answer:

include <iostream>

using namespace std;

 

class Month

{

public:

 Month (char firstLetter, char secondLetter, char thirdLetter);

 

 Month (int monthNum);

.

 

 Month();

 void outputMonth_num();

 

 

 void outputMonthLetters();

private:

 int month;

};

 

 

int main ()

{

 //

 // Variable declarations

 //

 int monthNum;

 char firstLetter, secondLetter, thirdLetter;    

 char testAgain;              

 

 do {

 

   cout << endl;

   cout << "Testing the default constructor ..." << endl;

   Month defaultMonth;

   defaultMonth.outputMonth_num();

   defaultMonth.outputMonthLetters();

 

   //

   // Construct a month using the constructor with one integer argument

   //

   cout << endl;

   cout << "Testing the constructor with one integer argument..." << endl;

   cout << "Enter a month number: ";

   cin >> monthNum;

 

   Month testMonth1(monthNum);

   testMonth1.outputMonth_num();

   testMonth1.outputMonthLetters();

 

   //

   // Construct a month using the constructor with three letters as arguments

   //

   cout << endl;

   cout << "Testing the constructor with 3 letters as arguments ..." << endl;

   cout << "Enter the first three letters of a month (lowercase): ";

   cin >> firstLetter >> secondLetter >> thirdLetter;

   cout << endl;

 

   Month testMonth2(firstLetter, secondLetter, thirdLetter);

   testMonth2.outputMonth_num();

   testMonth2.outputMonthLetters();

 

   //

   // See if user wants to try another month

   //

   cout << endl;

   cout << "Do you want to test again? (y or n) ";

   cin >> testAgain;

 }

 while (testAgain == 'y' || testAgain == 'Y');

 

 return 0;

}

 

 

Month::Month(char firstLetter, char secondLetter, char thirdLetter)

{

if ((firstLetter == 'j')&&(secondLetter == 'a')&&(thirdLetter == 'n'))

  outputMonth_num = 1;

if ((firstLetter == 'f')&&(secondLetter == 'e')&&(thirdLetter == 'b'))

  outputMonth_num = 2;

if ((firstLetter == 'm')&&(secondLetter == 'a')&&(thirdLetter == 'r'))

  outputMonth_num = 3;

if ((firstLetter = 'a')&&(secondLetter == 'p')&&(thirdLetter == 'r'))

  outputMonth_num = 4;

if ((firstLetter == 'm')&&(secondLetter == 'a')&&(thirdLetter == 'y'))

  outputMonth_num = 5;

if ((firstLetter == 'j')&&(secondLetter == 'u')&&(thirdLetter == 'n'))

  outputMonth_num = 6;

if ((firstLetter == 'j')&&(secondLetter == 'u')&&(.thirdLetter == 'l'))

  outputMonth_num = 7;

if ((firstLetter == 'a')&&(secondLetter == 'u')&&(thirdLetter == 'g'))

  outputMonth_num = 8;

if ((firstLetter == 's')&&(secondLetter == 'e')&&(thirdLetter == 'p'))

  outputMonth_num = 9;

if ((firstLetter == 'o')&&(secondLetter == 'c')&&(thirdLetter == 't'))

  outputMonth_num = 10;

if ((firstLetter == 'n')&&(secondLetter == 'o')&&(thirdLetter == 'v'))

 outputMonth_num = 11;

if ((firstLetter == 'd')&&(secondLetter == 'e')&&(thirdLetter == 'c'))

 outputMonth_num = 12;

}

 

Month::inputMonthByNumber

{

if (Month_num > 12 && Month_num < 1)

cout << "Invalid number for Month, please choose 1-12)\n";

}

 

void Month::outputMonth_num()

{

 if (month >= 1 && month <= 12)

   cout ><< "Month: " << month << endl;

 else

   cout << "Error - The month is not a valid!" << endl;

}

 

void Month::outputMonthLetters()

{

 switch (month)

   {

   case 1:

     cout << "Jan" << endl;

     break;

   case 2:

     cout << "Feb" << endl;

     break;

   case 3:

     cout << "Mar" << endl;

     break;

   case 4:

     cout << "Apr" << endl;

     break;

   case 5:

     cout << "May" << endl;

     break;

   case 6:

     cout << "Jun" << endl;

     break;

   case 7:

     cout << "Jul" << endl;

     break;

   case 8:

     cout << "Aug" << endl;

     break;

   case 9:  

     cout << "Sep" << endl;

     break;

   case 10:

     cout << "Oct" << endl;

     break;

   case 11:

     cout << "Nov" << endl;

     break;

   case 12:

     cout << "Dec" << endl;

     break;

   default:

     cout << "Error - the month is not a valid!" << endl;

   }

}

7 0
3 years ago
In Example 2-1, part c, the data were represented by the normal distribution function f(x)=0.178 exp(-0.100(x-451)2 Use this dis
valkas [14]

Answer:

P ( 2.5 < X < 7.5 ) = 0.7251

Explanation:

Given:

- The pmf for normal distribution for random variable x is given:

                                      f(x)=0.178 exp(-0.100(x-4.51)^2)

Find:

the fraction of individuals demonstrating a response in the range of 2.5 to 7.5.

Solution:

- The random variable X follows a normal distribution with mean u = 4.51, and standard deviation s.d as follows:

                               s.d = sqrt ( 1 / 0.1*2)

                               s.d = sqrt(5) =2.236067

- Hence, the normal distribution is as follows:

                               X ~ N(4.51 , 2.236)

- Compute the Z-score values of the end points 2.5 and 7.5:

              P ( (2.5 - 4.51) / 2.236 < Z < (7.5 - 4.51 ) / 2.236 )

              P ( -0.898899327 < Z < 1.337168651 )  

- Use the Z-Table for the probability required:

              P ( 2.5 < X < 7.5 ) = P ( -0.898899327 < Z < 1.337168651 ) = 0.7251            

6 0
3 years ago
Other questions:
  • What are 3 reasons why small businesses are an important part of the American economy?
    9·2 answers
  • A circular section of material is tested. The original specimen is 200 mm long and has a diameter of 13 mm. When loaded to its p
    11·2 answers
  • ). A company periodically tests its product for tread wear under simulated conditions. Thirty random samples, each containing 5
    11·1 answer
  • Buying shop supplies from the shop owner to work on your own car at home is an ethical practice.
    14·1 answer
  • How do people eat with there noses shut
    12·2 answers
  • Find the dryness fraction, specific volume and internal energy of steam at 7bar nd enthalpy 2600kj/kh. (0.921,0.2515m³/kg , 2420
    5·1 answer
  • Which option explains why Tyler is impressed in the following scenario?
    10·2 answers
  • List six possible valve defects that should be included in the inspection of a used valve?
    7·1 answer
  • Which state did NOT have people that got sick from the
    10·1 answer
  • Technician A says that the use of methanol in internal combustion engines has declined over the years. Technician B says that th
    10·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!