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
diamong [38]
3 years ago
6

An energy system can be approximated to simply show the interactions with its environment including cold air in and warm air out

, heat transfer inflow and power input. Write a first law balance around the system and solve for the rate of work input to the system.
Engineering
1 answer:
Elenna [48]3 years ago
5 0

Answer: The energy system related to your question is missing attached below is the energy system.

answer:

a) Work done = Net heat transfer

  Q1 - Q2 + Q + W = 0

b)  rate of work input ( W ) = 6.88 kW

Explanation:

Assuming CPair = 1.005 KJ/Kg/K

<u>Write the First law balance around the system and rate of work input to the system</u>

First law balance ( thermodynamics ) :

Work done = Net heat transfer

Q1 - Q2 + Q + W = 0 ---- ( 1 )

rate of work input into the system

W = Q2 - Q1 - Q -------- ( 2 )

where : Q2 = mCp T  = 1.65 * 1.005 * 293 = 485.86 Kw

             Q2 = mCp T = 1.65 * 1.005 * 308 = 510.74 Kw

              Q = 18 Kw

Insert values into equation 2 above

W = 6.88 Kw

You might be interested in
It tells the amount of materials to be purchased.
Hitman42 [59]

Answer:

Quantity

Explanation:

Quantity tells the amount of materials to be purchased.

4 0
2 years ago
A water contains 50.40 mg/L as CaCO3 of carbon dioxide, 190.00 mg/L as CaCO3 of Ca2 and 55.00 mg/L as CaCO3 of Mg2 . All of the
Galina-37 [17]

Answer:

Total sludge = 123426kg/d

Explanation:

The reaction is given as;

H2Co3 + Ca(OH)2 ⇆ CaCo3 + 2H20

   1              1                   1              2 moles

Calculating the concentration of C02, we have

Concentration of C02 = concentration of CaCo3/Molecular weight of Caco3

                                     = 50.4/100.09

                                     = 0.5035mol/L

Sludge of Co2 = Conc. of Co2 * Q * MW of CaCo3 *10^-6

                         = 0.5035 * 253.6 *10^6 * 100.09 * 10^-6

                         = 12780kg/d

From the equation Ca2+ + 2HCo3- + Ca(OH)2 ⇄ 2CaCo3 + 2H2O

1 mole of calcium yields 2 moles of CaCo3

Therefore, Concentration of Ca2+ = Conc. of CaCo3/Mw of CaCO3

                                                         = 190-30/100.09

                                                         =1.599mol/L

Calculating sludge of calcium:

Sludge of Ca = 2 * Conc. of ca * Q * mw of CaCO3 * 10^-6

                       = 2 * 1.599 *253.6*10^6* 100.09 * 10^-6

                       = 811742kg/d

From the equation,

Mg2+ +2HCO3- + Ca(OH)2 ⇄ MgCO3 + 2CaCO3 + 2H2O

1 mole of mg yields 2 moles CaCO3 and 1 mole of Mg(OH)2

Concentration of Mg2+ = Conc, of CaCO3 /Mw of CaCo3

                                       = 55- 10/100.09

                                       = 0.4496mol/L

Sludge of Mg = 2 *  Conc. of Mg * Q * mw of CaCO3 * 10^-6 +* Conc. of Mg * Q * mw of Mg(OH)2 * 10^-6

= 2 * 0.4496 * 253.5*10^6 * 100.09 * 10^-6 + 0.4996* 253.5*10^6 58.3 * 10^-6

= 29472kg/d

Total Sludge = Sludge of CO2 + Sludge of Ca + Sludge of Mg

                      12780+ 81174 + 29472

                       = 123426kg/d

6 0
3 years ago
Read 2 more answers
What are some "vital signs" that we consider to tell us about the economy?
Wittaler [7]

Explanation:

if there is a deficit or a surplus

if the budget is good

7 0
3 years ago
Read 2 more answers
How would you design a wheelchair for wheelchair-using basketball players? Would you make it more or less massive?
emmainna [20.7K]
Less, if it’s too big: hard to control and maneuverability for shooting wouldn’t be that good. a smaller wheelchair allows for faster movement and control, along with easier shooting and upper body movement
6 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:
  • The steel water pipe has an inner diameter of 12 in. and a wall thickness of 0.25 in. If the valve A is closed and the water pre
    10·1 answer
  • A Scalar can only be a positive quantity that has a magnitude but no direction ? a)-True b)-False
    5·1 answer
  • . A constant current of 1 ampere is measured flowing into the positive reference terminal of a pair of leads whose voltage we’ll
    10·1 answer
  • an adiabatic compressor receives 1.5 meter cube per second of air at 30 degrees celsius and 101 kpa. The discharge pressure is 5
    11·1 answer
  • Traditional password entry schemes are susceptible to "shoulder surfing" in which an attacker watches an unsuspecting user enter
    13·1 answer
  • 5) Initially, the pressure and temperature of steam inside a solid capsule is at 100-pound force per square inch absolute (psia)
    6·1 answer
  • Which of the following is a direct result of technological improvements in the music industry?
    9·2 answers
  • 1. Differentiate between speed and velocity.<br>​
    9·2 answers
  • What are the four types of physical hazards?
    13·2 answers
  • For binary flash distillation, we discussed in class that there are 8 variables (F, ZA, V, ya, L, XA, P and T) and 4 equations d
    10·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!