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
bekas [8.4K]
3 years ago
5

The hot water needs of an office are met by heating tab water by a heat pump from 16 C to 50 C at an average rate of 0.2 kg/min.

If the COP of this heat pump is 2.8, the required power input is: (a) 1.33 kW (d) 10.2 kW (b) 0.17 kW (c) 0.041 kW
Engineering
1 answer:
Alex777 [14]3 years ago
7 0

Answer:

option B

Explanation:

given,

heating tap water from 16° C to 50° C

at the average rate of 0.2 kg/min

the COP of this heat pump is 2.8

power output = ?

COP = \dfrac{Q_H}{W_{in}}\\W_{in} = \dfrac{Q_H}{COP}\\W_{in} = \dfrac{\dfrac{0.2}{60}\times 4.18\times (50-16)}{2.8}\\W_{in} = 0.169

the required power input is 0.169 kW or 0.17 kW

hence, the correct answer is option B

You might be interested in
Why is tubing sometimes coiled when installed in a car or vechile
andriy [413]

Answer:

Coiled tubing is often used to carry out operations similar to wire lining.

8 0
3 years ago
When the rod is circular, radial lines remain straight and sections perpendicular to the axis do not warp. In this case, the str
Murljashka [212]

The question is incomplete. The complete question is :

The solid rod shown is fixed to a wall, and a torque T = 85N?m is applied to the end of the rod. The diameter of the rod is 46mm .

When the rod is circular, radial lines remain straight and sections perpendicular to the axis do not warp. In this case, the strains vary linearly along radial lines. Within the proportional limit, the stress also varies linearly along radial lines. If point A is located 12 mm from the center of the rod, what is the magnitude of the shear stress at that point?

Solution :

Given data :

Diameter of the rod : 46 mm

Torque, T = 85 Nm

The polar moment of inertia of the shaft is given by :

$J=\frac{\pi}{32}d^4$

$J=\frac{\pi}{32}\times (46)^4$

J = 207.6 mm^4

So the shear stress at point  A is :

$\tau_A =\frac{Tc_A}{J}$

$\tau_A =\frac{85 \times 10^3\times 12 }{207.6}$

$\tau_A = 4913.29 \ MPa$

Therefore, the magnitude of the shear stress at point A is 4913.29 MPa.

3 0
3 years ago
A gas metal arc welder is also known as a _____ welder.<br> A) TIGB) GTAWC) GMAWD) Resistance spot
nignag [31]

Answer:

GMAW

Explanation:

It's literally the initials of that type of welding

7 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
Consider the rigid pressure vessel containing air in the diagram at the
vredina [299]

Answer:

love you

Explanation:

you do good

8 0
3 years ago
Other questions:
  • Define various optical properties of engineering materials
    11·1 answer
  • This is a new technology meant to reduce vehicle roll-overs A. Lane-departure warning B. Anti-lock brakes C. Inspection reports
    7·1 answer
  • HW6P2 (20 points) The recorded daily temperature (°F) in New York City and in Denver, Colorado during the month of January 2014
    10·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
  • What happens to a commercial airline at cruising altitude if the pilot does not touch the throttles?
    12·1 answer
  • Which best describes the body in terms of simple machines?
    6·1 answer
  • The jib crane is supported by a pin at Cand rod AB. The rod can withstand a maximum tension of 40 kN. If the load has a mass of
    11·1 answer
  • An engineer measures a sample of 1200 shafts out of a certain shipment. He finds the shafts have an average diameter of 2.45 inc
    15·1 answer
  • An engineer is trying to build a new measurement tool. Which step should the engineer complete first? A. Design a model of the t
    8·1 answer
  • 8. What is the purpose of the 300 Log?
    12·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!