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
mote1985 [20]
3 years ago
15

Air at T1 = 32°C, p1 = 1 bar, 50% relative humidity enters an insulated chamber operating at steady state with a mass flow rate

of 3 kg/min and mixes with a saturated moist air stream entering at T2 = 7°C, p2 = 1 bar. A single mixed stream exits at T3 = 17°C, p3 = 1 bar. Neglect kinetic and potential energy effects
Determine

(a) the relative humidity and temperature, in °C, of the exiting stream.
Engineering
1 answer:
RUDIKE [14]3 years ago
7 0

Answer:

4.5kg/min

Explanation:

Given parameters

T_1 = 32^0 C,  m_1 = 3 kg/min, T_2 = 7^0 C ,T_3 = 17^0

if we take  

The mass flow rate of the second stream = m_2(kg/min)

The mass flow rate of mixed exit stream = m_3 (kg/min)

Now from mass conservation

m_3 = m_2 + m_1

m_3 = m_2 + 3 (kg/min)

The temperature of the mixed exit stream given as

T_3m_3 = T_2m_2 +T_1m_1\\\\17 ( 3 + m_2) = 7 \times m_2 + 32 \times 3\\\\51 + 17 m_2 = 7 m_2 + 96\\\\10 m_2 = 96 - 51\\\\m_2 = 4.5 kg/min\\\\\\\\

Therefore the mass flow rate of second stream will be 4.5 kg/min.

You might be interested in
According to the video, what are some tasks that Construction Managers perform? Check all that apply.
boyakko [2]

Answer:

C,D,F,G

Explanation:

ANSWER FOR ed

7 0
3 years ago
Read 2 more answers
A thick steel slab ( 7800 kg/m3, 480 J/kg·K, 50 W/m·K) is initially at 300°C and is cooled by water jets impinging on one of its
AleksandrR [38]

Answer: 67.392s

Explanation: detailed calculation is shown below

4 0
3 years ago
Read 2 more answers
In an experiment, the local heat transfer over a flat plate were correlated in the form of local Nusselt number as expressed by
Stells [14]

Answer:

\dfrac{\bar{h}}{h}=\dfrac{5}{4}

Explanation:

Given that

Nu_x=0.035Re_x^{0.8} Pr^{1/3}

We know that

Rex=ρvx/μ

So

Nu_x=0.035Re_x^{0.8} Pr^{1/3}

Nu_x=0.035\times\left(\dfrac{\rho vx}{\mu}\right)^{0.8}Pr^{1/3}

All other quantities are constant only x is a variable in the above equation .so lets take all other quantities as a constant C

Nu_x=C.x^{0.8}=C.x^{4/5}

We also know that

Nux=hx/K

C.x^{4/5}=\dfrac{hx}{k}

m is the constant

h=mx^{-1/5}

This is local heat transfer coefficient

The average value of h given as

\bar{h}=\dfrac{\int_{0}^{L}hdx}{L}

\bar{h}=\dfrac{5m}{4}\times\dfrac{L^{4/5}}{L}

\bar{h}=\dfrac{5m}{4}L^{-1/5}             ---------1

The value of local heat transfer coefficient at x=L

h=mx^{-1/5}

h=mL^{-1/5}            -----------2

From 1 and 2 we can say that

\dfrac{\bar{h}}{h}=\dfrac{5}{4}

8 0
3 years ago
A power company desires to use groundwater from a hot spring to power a heat engine. If the groundwater is at 95 deg C and the a
prisoha [69]

Answer:

W  = 12.8 KW

Explanation:

given data:

mass flow rate = 0.2 kg/s

Engine recieve heat from ground water at 95 degree ( 368 K)  and reject that heat to atmosphere  at 20 degree (293K)

we know that maximum possible efficiency is given as

\eta = 1- \frac{T_L}{T_H}

\eta = 1 - \frac{ 293}{368}

\eta = 0.2038

rate of heat transfer is given as

Q_H = \dot m C_p \Delta T

Q_H = 0.2 * 4.18 8(95 - 20)

Q_H = 62.7 kW

Maximuim power is given as

W = \eta Q_H

W = 0.2038 * 62.7

W  = 12.8 KW

3 0
3 years ago
2.4: Add a method called setValue(), and the description of setValue is: public int setValue(long searchKey) In this method, the
Yanka [14]

Answer:

Below is java code that must be used for the given question:

// highArray.java

// demonstrates array class with high-level interface

// to run this program: C>java HighArrayApp

////////////////////////////////////////////////////////////////

class HighArray

  {

  private long[] a;                 // ref to array a

  private int nElems;               // number of data items

  //-----------------------------------------------------------

  public HighArray(int max)         // constructor

     {

     a = new long[max];                 // create the array

     nElems = 0;                        // no items yet

     }

  //-----------------------------------------------------------

  public setValue find(long searchKey)

     {                              // find specified value

     int j;

     for(j=0; j<nElems; j++)            // for each element,

        if(a[j] == searchKey)           // found item?

           break;                       // exit loop before end

     if(j == nElems)                    // gone to end?

        return false;                   // yes, can't find it

     else

        return true;                    // no, found it

     }  // end find()

  //-----------------------------------------------------------

  public void insert(long value)    // put element into array

     {

     a[nElems] = value;             // insert it

     nElems++;                      // increment size

     }

  //-----------------------------------------------------------

  public void display()             // displays array contents

     {

     for(int j=0; j<nElems; j++)       // for each element,

        System.out.print(a[j] + " ");  // display it

     System.out.println("");

     }

  //-----------------------------------------------------------

  }  // end class HighArray

////////////////////////////////////////////////////////////////

class HighArrayApp

  {

  public static void main(String[] args)

     {

     int maxSize = 100;            // array size

     HighArray arr;                // reference to array

     arr = new HighArray(maxSize); // create the array

     arr.insert(77);               // insert 10 items

     arr.insert(99);

     arr.insert(44);

     arr.insert(55);

     arr.insert(22);

     arr.insert(88);

     arr.insert(11);

     arr.insert(00);

     arr.insert(66);

     arr.insert(33);

     arr.display();                // display items

     int searchKey = 35;           // search for item

     if( arr.find(searchKey) )

        System.out.println("Found " + searchKey);

     else

        System.out.println("Can't find " + searchKey);

     }  // end main()

  }  // end class HighArrayApp

Explanation:

6 0
3 years ago
Other questions:
  • Early American rockets used an RC circuit to set the time for the rocket to begin re-entry after launch (true story). Assume the
    5·1 answer
  • a vehicle is in her repair with a complaint at for heating output during testing and diagnosing air is found to be trapped in th
    15·1 answer
  • Buying shop supplies from the shop owner to work on your own car at home is an ethical practice.
    14·1 answer
  • For a bronze alloy, the stress at which plastic deformation begins is 297 MPa and the modulus of elasticity is 113 GPa. (a) What
    7·1 answer
  • A 1200-kg car moving at 20 km/h is accelerated
    5·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
  • Which component found in fertilizer is a known cancer-causing agent?
    11·2 answers
  • List six clues that indicates that you are approaching an intersection
    10·1 answer
  • What is equation for surface area?
    9·1 answer
  • 17. Swing arm restraints are intended to prevent a vehicle from falling off a lift.
    6·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!