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
fredd [130]
3 years ago
11

Air at 38°C and 97% relative humidity is to be cooled to 14°C and fed into a plant area at a rate of 510m3/min. (a) Calculate th

e rate (kg/min) at which water condenses. (b) Calculate the cooling requirement in tons 1 ton of cooling 12;000 Btu/h, assuming that the enthalpy of water vapor is that of saturated steam at the same temperature and the enthalpy of dry air is given by the expression
Engineering
1 answer:
Katarina [22]3 years ago
3 0

To develop the problem it is necessary to apply the concepts related to the ideal gas law, mass flow rate and total enthalpy.

The gas ideal law is given as,

PV=mRT

Where,

P = Pressure

V = Volume

m = mass

R = Gas Constant

T = Temperature

Our data are given by

T_1 = 38\°C

T_2 = 14\°C

\eta = 97\%

\dot{v} = 510m^3/kg

Note that the pressure to 38°C is 0.06626 bar

PART A) Using the ideal gas equation to calculate the mass flow,

PV = mRT

\dot{m} = \frac{PV}{RT}

\dot{m} = \frac{0.6626*10^{5}*510}{287*311}

\dot{m} = 37.85kg/min

Therfore the mass flow rate at which water condenses, then

\eta = \frac{\dot{m_v}}{\dot{m}}

Re-arrange to find \dot{m_v}

\dot{m_v} = \eta*\dot{m}

\dot{m_v} = 0.97*37.85

\dot{m_v} = 36.72 kg/min

PART B) Enthalpy is given by definition as,

H= H_a +H_v

Where,

H_a= Enthalpy of dry air

H_v= Enthalpy of water vapor

Replacing with our values we have that

H=m*0.0291(38-25)+2500m_v

H = 37.85*0.0291(38-25)-2500*36.72

H = 91814.318kJ/min

In the conversion system 1 ton is equal to 210kJ / min

H = 91814.318kJ/min(\frac{1ton}{210kJ/min})

H = 437.2tons

The cooling requeriment in tons of cooling is 437.2.

You might be interested in
g For this project you are required to perform Matrix operations (Addition, Subtraction and Multiplication). For each of the ope
Kruka [31]

Answer:

C++ code is explained below

Explanation:

#include<iostream>

using namespace std;

//Function Declarations

void add();

void sub();

void mul();

//Main Code Displays Menu And Take User Input

int main()

{

  int choice;

  cout << "\nMenu";

  cout << "\nChoice 1:addition";

  cout << "\nChoice 2:subtraction";

  cout << "\nChoice 3:multiplication";

  cout << "\nChoice 0:exit";

 

  cout << "\n\nEnter your choice: ";

 

  cin >> choice;

 

  cout << "\n";

 

  switch(choice)

  {

      case 1: add();

              break;

             

      case 2: sub();

              break;

             

      case 3: mul();

              break;

     

      case 0: cout << "Exited";

              exit(1);

     

      default: cout << "Invalid";      

  }

  main();  

}

//Addition Of Matrix

void add()

{

  int rows1,cols1,i,j,rows2,cols2;

 

  cout << "\nmatrix1 # of rows: ";

  cin >> rows1;

 

  cout << "\nmatrix1 # of columns: ";

  cin >> cols1;

 

   int m1[rows1][cols1];

 

  //Taking First Matrix

  for(i=0;i<rows1;i++)

      for(j=0;j<cols1;j++)

      {

          cout << "\nEnter element (" << i << "," << j << "): ";

          cin >> m1[i][j];

          cout << "\n";

      }

  //Printing 1st Matrix

  for(i=0;i<rows1;i++)

  {

      for(j=0;j<cols1;j++)

          cout << m1[i][j] << " ";

      cout << "\n";

  }

     

  cout << "\nmatrix2 # of rows: ";

  cin >> rows2;

 

  cout << "\nmatrix2 # of columns: ";

  cin >> cols2;

 

  int m2[rows2][cols2];

  //Taking Second Matrix

  for(i=0;i<rows2;i++)

      for(j=0;j<cols2;j++)

      {

          cout << "\nEnter element (" << i << "," << j << "): ";

          cin >> m2[i][j];

          cout << "\n";

      }

  //Displaying second Matrix

  cout << "\n";

  for(i=0;i<rows2;i++)

  {

      for(j=0;j<cols2;j++)

          cout << m2[i][j] << " ";

      cout << "\n";

  }

  //Displaying Sum of m1 & m2

  if(rows1 == rows2 && cols1 == cols2)

  {

      cout << "\n";

      for(i=0;i<rows1;i++)

      {

          for(j=0;j<cols1;j++)

              cout << m1[i][j]+m2[i][j] << " ";

          cout << "\n";  

      }

  }

  else

      cout << "operation is not supported";

     

  main();

 

}

void sub()

{

  int rows1,cols1,i,j,k,rows2,cols2;

  cout << "\nmatrix1 # of rows: ";

  cin >> rows1;

 

  cout << "\nmatrix1 # of columns: ";

  cin >> cols1;

 

   int m1[rows1][cols1];

 

  for(i=0;i<rows1;i++)

      for(j=0;j<cols1;j++)

      {

          cout << "\nEnter element (" << i << "," << j << "): ";

          cin >> m1[i][j];

          cout << "\n";

      }

 

  for(i=0;i<rows1;i++)

  {

      for(j=0;j<cols1;j++)

          cout << m1[i][j] << " ";

      cout << "\n";

  }

     

  cout << "\nmatrix2 # of rows: ";

  cin >> rows2;

 

  cout << "\nmatrix2 # of columns: ";

  cin >> cols2;

 

  int m2[rows2][cols2];

 

  for(i=0;i<rows2;i++)

      for(j=0;j<cols2;j++)

      {

          cout << "\nEnter element (" << i << "," << j << "): ";

          cin >> m2[i][j];

          cout << "\n";

      }

 

  for(i=0;i<rows2;i++)

  {

      for(j=0;j<cols2;j++)

          cout << m1[i][j] << " ";

      cout << "\n";

  }

  cout << "\n";

  //Displaying Subtraction of m1 & m2

  if(rows1 == rows2 && cols1 == cols2)

  {

      for(i=0;i<rows1;i++)

      {

          for(j=0;j<cols1;j++)

              cout << m1[i][j]-m2[i][j] << " ";

          cout << "\n";  

      }

  }

  else

      cout << "operation is not supported";

     

  main();

 

}

void mul()

{

  int rows1,cols1,i,j,k,rows2,cols2,mul[10][10];

  cout << "\nmatrix1 # of rows: ";

  cin >> rows1;

 

  cout << "\nmatrix1 # of columns: ";

  cin >> cols1;

 

   int m1[rows1][cols1];

 

  for(i=0;i<rows1;i++)

      for(j=0;j<cols1;j++)

      {

          cout << "\nEnter element (" << i << "," << j << "): ";

          cin >> m1[i][j];

          cout << "\n";

      }

  cout << "\n";

  for(i=0;i<rows1;i++)

  {

      for(j=0;j<cols1;j++)

          cout << m1[i][j] << " ";

      cout << "\n";

  }

     

  cout << "\nmatrix2 # of rows: ";

  cin >> rows2;

 

  cout << "\nmatrix2 # of columns: ";

  cin >> cols2;

 

  int m2[rows2][cols2];

 

  for(i=0;i<rows2;i++)

      for(j=0;j<cols2;j++)

      {

          cout << "\nEnter element (" << i << "," << j << "): ";

          cin >> m2[i][j];

          cout << "\n";

      }

  cout << "\n";

  //Displaying Matrix 2

  for(i=0;i<rows2;i++)

  {

      for(j=0;j<cols2;j++)

          cout << m2[i][j] << " ";

      cout << "\n";

  }

     

  if(cols1!=rows2)

      cout << "operation is not supported";

  else

  {

      //Initializing results as 0

      for(i = 0; i < rows1; ++i)

  for(j = 0; j < cols2; ++j)

  mul[i][j]=0;

// Multiplying matrix m1 and m2 and storing in array mul.

  for(i = 0; i < rows1; i++)

  for(j = 0; j < cols2; j++)

  for(k = 0; k < cols1; k++)

  mul[i][j] += m1[i][k] * m2[k][j];

// Displaying the result.

  cout << "\n";

  for(i = 0; i < rows1; ++i)

      for(j = 0; j < cols2; ++j)

      {

      cout << " " << mul[i][j];

      if(j == cols2-1)

      cout << endl;

      }

      }  

  main();

 }

5 0
3 years ago
Cavitation usually occurs because:
IgorLugansk [536]

Answer:

B) the liquid accelerated to high velocities.

<em>I</em><em> </em><em>hope</em><em> </em><em>this helps</em><em> </em>

3 0
3 years ago
Which of the following has led to a safer and more prosperous global community within the last century? the Bronze Age composite
sattari [20]

Answer:

The bronze age

4 0
4 years ago
Read 2 more answers
A plate clutch has a single friction surface 9-in OD by 7-in ID. The coefficient of friction is 0.2 and the maximum pressure is
Talja [164]

Answer:

the torque capacity is  30316.369 lb-in

Explanation:

Given data

OD = 9 in

ID = 7 in

coefficient of friction = 0.2

maximum pressure = 1.5 in-kip = 1500 lb

To find out

the torque capacity using the uniform-pressure assumption.

Solution

We know the the torque formula for uniform pressure theory is

torque = 2/3 × \pi × coefficient of friction × maximum pressure ( R³ - r³ )    .....................................1

here R = OD/2 = 4.5 in and r = ID/2 = 3.5 in

now put all these value R, r, coefficient of friction and  maximum pressure in equation 1 and we will get here torque

torque = 2/3 × \pi × 0.2 × 1500 ( 4.5³ - 3.5³ )

so the torque =  30316.369 lb-in

3 0
3 years ago
An ideal Otto cycle has a compression ratio of 9.2 and uses air as the working fluid. At the beginning of the compression proces
Allushta [10]

Answer:

(a) The amount of heat transferred to the air, q_{out} is 215.5077 kJ/kg

(b) The net work output, W_{net}, is 308.07 kJ/kg

(c) The thermal efficiency is 58.8%

(d) The Mean Effective Pressure, MEP, is 393.209 kPa

Explanation:

(a) The assumptions made are;

c_p = 1.005 kJ/(kg·K), c_v = 0.718 kJ/(kg·K), R = 0.287 kJ/(kg·K),

Process 1 to 2 is isentropic compression, therefore;

T_{2}= T_{1}\left (\dfrac{v_{1}}{v_{2}}  \right )^{k-1} = 300.15\times 9.2^{0.4} = 729.21 \, K

From;

\dfrac{p_{1}\times v_{1}}{T_{1}} = \dfrac{p_{2}\times v_{2}}{T_{2} }

We have;

p_{2} = \dfrac{p_{1}\times v_{1}\times T_{2}}{T_{1} \times v_{2}} = \dfrac{98\times 9.2\times 729.21}{300.15 } = 2190.43 \, kPa

Process 2 to 3 is reversible constant volume heating, therefore;

\dfrac{p_3}{T_3} =\dfrac{p_2}{T_2}

p₃ = 2 × p₂ = 2 × 2190.43 = 4380.86 kPa

T_3 = \dfrac{p_3 \times T_2}{p_2} =\dfrac{4380.86  \times 729.21}{2190.43} = 1458.42 \, K

Process 3 to 4 is isentropic expansion, therefore;

T_{3}= T_{4}\left (\dfrac{v_{4}}{v_{3}}  \right )^{k-1}

1458.42= T_{4} \times \left (9.2 \right )^{0.4}

T_4 = \dfrac{1458.42}{(9.2)^{0.4}}  = 600.3 \, K

q_{out} = m \times c_v \times (T_4 - T_1) = 0.718  \times (600.3 - 300.15) = 215.5077 \, kJ/kg

The amount of heat transferred to the air, q_{out} = 215.5077 kJ/kg

(b) The net work output, W_{net}, is found as follows;

W_{net} = q_{in} - q_{out}

q_{in} = m \times c_v \times (T_3 - T_2) = 0.718  \times (1458.42 - 729.21) = 523.574 \, kJ/kg

\therefore W_{net} = 523.574 - 215.5077 = 308.07 \, kJ/kg

(c) The thermal efficiency is given by the relation;

\eta_{th} = \dfrac{W_{net}}{q_{in}} \times 100=  \dfrac{308.07}{523.574} \times 100= 58.8\%

(d) From the general gas equation, we have;

V_{1} = \dfrac{m\times R\times T_{1}}{p_{1}} = \dfrac{1\times 0.287\times 300.15}{98} =0.897\, m^{3}/kg

The Mean Effective Pressure, MEP, is given as follows;

MEP =\dfrac{W_{net}}{V_1 - V_2} = \dfrac{W_{net}}{V_1 \times (1- 1/r)}= \dfrac{308.07}{0.897\times (1- 1/9.2)} = 393.209 \, kPa

The Mean Effective Pressure, MEP = 393.209 kPa.

3 0
3 years ago
Other questions:
  • Inspection with considering a variable uses gages to determine if the product is good or bad. True or False?
    15·2 answers
  • if a voltage is applied to a capacitor, current flows easily at first and then slows as the capacitor becomes charged. Inductors
    5·1 answer
  • true or false incident reports, such as situation reports and status reports enhance situational awareness and ensure that perso
    12·1 answer
  • Which of the following is NOT a true statement about construction drawings?
    5·1 answer
  • using the two transistor analogy to explain what happens when an SCR is supplied with some gate current.​
    15·1 answer
  • A particular cloud-to-ground lightning strike lasts 500 µµsec and delivers 30 kA across a potential difference of 100 MV. Assu
    14·1 answer
  • A steam power plant is represented as a heat engine operating between two thermal reservoirs at 800 K and 300 K. The temperature
    14·1 answer
  • Which is the correct way of dual dimensioning using the position method
    7·1 answer
  • Suppose a contract states that the designer should bear the responsibility if substantial differences were found between the des
    13·1 answer
  • How to make text take shape of object in affinity designer
    12·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!