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
ehidna [41]
3 years ago
14

Cold water at 20 degrees C and 5000 kg/hr is to be heated by hot water supplied at 80 degrees C and 10,000 kg/hr. You select fro

m a manufacturer's catalog a shell-and-tube heat exchanger (one shell with two tube passes) having a UA value of 11,600 W/K. Determine the hot water outlet temperature.
Engineering
1 answer:
Vinvika [58]3 years ago
7 0

Answer:

59°C

Explanation:

Given that, Cc = McCp,c = 5000 /3600 × 4178 = 5803.2(W/K)

and Ch = MhCp,h = 10000 / 3600 × 4188 = 11634.3(W/K)

Therefore the minimum and maximum heat capacities are:

Cmin = Cc = 5803.2(W/K)

Cmax = Ch = 11634.3(W/K)

The capacity ratio is:

Cr = Cmin / Cmax = 0.499 = 0.5

The maximum possible heat transfer rate is:

Qmax = Cmin (Th,i - Tc,i) = 5803.2 (80 - 20) = 348192(W)

And the number of transfer units is: NTU = UA / Cmin = 11600 / 5803.2 = 1.99

Given that from the appropriate graph in the handouts we can read  = 0.7. So the actual heat transfer rate is: Qact = Qmax = 0.7 × 348192 = 243734.4(W)

Hence, the outlet hot temperature is: Th,o = Th,i - Qact / Ch = 59°C

You might be interested in
What are examples of professional organizations? Check all that apply. American Institute of Architects Business Professionals o
Makovka662 [10]

Answer:

The correct option are;

American Institute of Architects

American Medical Association

American Society of Mechanical Engineers

Explanation:

A professional association is an association with the main purpose of promoting the basics and practices of a given profession. A professional association serves as a pillar for the interest of those practicing a particular profession and those of the best interest of the public.

The Business Professionals of America, DECA, Skills USA, and Future Educators are student associations while Screen Actors Guild is a labor union

3 0
3 years ago
Read 2 more answers
Why are scientists and engineers looking for ways to reduce our dependence on fossil fuels? Help
Alchen [17]
Fossil fuels when burned let out toxins and pollution in the air. Because of that scientists and engineers work together to find ways to not be so dependent on fossil fuels so we are not polluting our air.
8 0
3 years ago
1 // Lab 2 tryIt2A 2 #include 3 using namespace std; 4 5 int main() 6 { int x = 1, y = 3; 7 int X = 2, Y = 4; 8 9 cout <<
padilas [110]

Answer:

Here is the complete program:

#include <iostream>

 using namespace std;    

 int main()

 {  int x = 1, y = 3;  

 int X = 2, Y = 4;  

 cout << "tryIt 2A" <<endl;

   cout << x << y << endl;  

   cout << "x" << "y" << endl;  

   cout << X << " " << Y << endl;

   cout << 2 * x + y << endl;  

   cout << 2 * X + Y << endl;  

   //cout << x + 2*y << endl;  

   cout << "x = ";  

   cout << x;  

   cout << " y = ";  

   cout << y;        

   return 0;

   }

Explanation:

I will explain the code line by line in the comment with each line of code and the output of each cout statement.

  • int x = 1, y = 3;  

This statement assigns value 1 to integer variable x and 3 to int variable y

  • int X = 2, Y = 4;  

This statement assigns value 2 to integer variable X and 4 to int variable Y As C++ is a case sensitive language so variable x and y are different from variables X and Y.

  • cout << "tryIt 2A" <<endl;

This statement has cout which is used to display output on the screen. So the output displayed by this cout statement is:

tryIt2A

  • cout << x << y << endl;  

This statement will print the values stored in x and y variables. So output displayed by cout statement here is 1 and 3. As there is not space or next line specified in the statement so output displayed will look like this:

13

  • cout << "x" << "y" << endl;  

This statement will display x and y but these are not the variable x and y. They are enclosed in double quotation marks so they are treated as strings not variables so the output displayed is:

xy

  • cout << X << " " << Y << endl;

This statement will print the values stored in X and Y variables. So output displayed by cout statement here is 2 and 4. As there is  space " " specified in the statement so 2 and 4 are displayed with a space between them so the output displayed will look like this:

2 4

  • cout << 2 * x + y << endl;  

This statement has an arithmetic operation in which 2 is multiplied by the values stored in variable x and then the result is added by value of y. So  2*1 = 2 and 2 + 3 = 5. So the result produced by this cout statement is:

5

  • cout << 2 * X + Y << endl;  

This will work same as above cout statement but the only difference is that the values of capital X and Y variables are calculated here. So 2 * 2 = 4 and then 4 + 4 = 8. The result produced by this cout statement is:

8

  • //cout << x + 2*y << endl;  

This is a comment because before this statement // is written which is used for single line comment. So compiler ignores comments and will not compile this statement.

  •    cout << "x = ";  

This will display "x = " as it is not variable but it is treated as a line to be displayed on the screen. So cout statement displays:

x =

  • cout << x;

This will print the value stored in x variable as there are no double quotes around x so it is a variable which contains value 1. In the above statement there is no endl so the output of this cout statement is displayed with the output of previous cout statement. So the following line is displayed on screen:

x = 1

  • cout << " y = ";

This will display "y = " as it is not variable but it is treated as a line to be displayed on the screen. In the above statement there is no endl so the output of this cout statement is displayed with the output of previous cout statement. So the following line is displayed on screen

x = 1 y =

  • cout << y;    

This will print the value stored in y variable as there are no double quotes around y so it is a variable which contains value 3. In the above statement there is no endl so the output of this cout statement is displayed with the output of previous cout statement. So the following line is displayed on screen:

x = 1 y = 3

So the output of the entire program along with the program is attached as screenshot.

6 0
4 years ago
Verify if 83 is a term in the arithmetic sequence 11,15,19,23
EleoNora [17]

Answer:

yes, it is

Explanation:

The sequence: (+4)

23,27,31,35,39,43,47,51,55,59,63,67,71,75,79,83

Hope this helps! :)

3 0
3 years ago
Tanya Pierce, President and owner of Florida Now Real Estate is seeking your assistance in designing a database for her business
const2013 [10]

Answer:

the answer is attributes for each entity

5 0
4 years ago
Other questions:
  • A vehicle has a crimped fuel return line. What effect will this have on 5-Gas analyzer gas readings?
    5·2 answers
  • A compressor operates at steady state with Refrigerant 134a as the working fluid. The refrigerant enters at 0.24 MPa, 0°C, with
    8·1 answer
  • Silicon carbide nanowires of diameter D = 15 nm can be grown onto a solid siliconcarbide surface by carefully depositing droplet
    13·1 answer
  • What are the 3 stages of reverse engineering?
    14·1 answer
  • Water flows through a horizontal 60 mm diameter galvanized iron pipe at a rate of 0.02 m3/s. If the pressure drop is 135 kPa per
    9·1 answer
  • Plane wall of material A with internal heat generation is insulated on one side and bounded by a second wall of material B, whic
    10·1 answer
  • all of the following are steps in the problem solving process except a. try, b. reflect, c. debug, d. define
    11·1 answer
  • A cubic transmission casing whose side length is 25cm receives an input from the engine at a rate of 350 hp. If the vehicle's ve
    5·1 answer
  • In a true Brayton cycle, the pressure ratio is 9. Air input temperature to the cycle 300 K pressure is 100 kPa. The maximum temp
    9·1 answer
  • How do I solve this ?
    8·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!