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
VikaD [51]
3 years ago
9

An Ideal gas is being heated in a circular duct as while flowing over an electric heater of 130 kW. The diameter of duct is 500

mm. The gas enters the heating section of the duct at 100 kPa and 27 deg C with a volume flow rate of 15 m3/s. If heat is lost from the gas in the duct to the surroundings at a rate of 80 kW, Calculate the exit temperature of the gas in deg C. (Assume constant pressure, ideal gas, negligible change in kinetic and potential energies and constant specific heat; Cp =1000 J/kg K; R = 500 J/kg K)
Engineering
1 answer:
aleksandrvk [35]3 years ago
4 0

Answer:

Exit temperature = 32°C

Explanation:

We are given;

Initial Pressure;P1 = 100 KPa

Cp =1000 J/kg.K = 1 KJ/kg.k

R = 500 J/kg.K = 0.5 Kj/Kg.k

Initial temperature;T1 = 27°C = 273 + 27K = 300 K

volume flow rate;V' = 15 m³/s

W = 130 Kw

Q = 80 Kw

Using ideal gas equation,

PV' = m'RT

Where m' is mass flow rate.

Thus;making m' the subject, we have;

m' = PV'/RT

So at inlet,

m' = P1•V1'/(R•T1)

m' = (100 × 15)/(0.5 × 300)

m' = 10 kg/s

From steady flow energy equation, we know that;

m'•h1 + Q = m'h2 + W

Dividing through by m', we have;

h1 + Q/m' = h2 + W/m'

h = Cp•T

Thus,

Cp•T1 + Q/m' = Cp•T2 + W/m'

Plugging in the relevant values, we have;

(1*300) - (80/10) = (1*T2) - (130/10)

Q and M negative because heat is being lost.

300 - 8 + 13 = T2

T2 = 305 K = 305 - 273 °C = 32 °C

You might be interested in
Time complexity of merge sort
vovangra [49]

Answer:

The correct answer is "O (n\times Log n)". A further explanation is given below.

Explanation:

  • Throughout all the three instances (worst, average as well as best), the time complexity including its Merge sort seems to be O (n\times Log n) as the merge form often splits the array into two halves together tends to linear time to combine multiple halves.
  • As an unsorted array, it needs an equivalent amount of unnecessary capacity. Therefore, large unsorted arrays are not appropriate for having to search.
6 0
3 years ago
Amanda and Tyler opened a business that specializes in shipping liquids, such as milk, juice, and water, in cylindrical containe
USPshnik [31]

Answer:

circleType.h

#ifndef circleType_H

#define circleType_H

class circleType

{

public:

void print();

void setRadius(double r);

//Function to set the radius.

//Postcondition: if (r >= 0) radius = r;

// otherwise radius = 0;

double getRadius();

//Function to return the radius.

//Postcondition: The value of radius is returned.

double area();

//Function to return the area of a circle.

//Postcondition: Area is calculated and returned.

double circumference();

//Function to return the circumference of a circle.

//Postcondition: Circumference is calculated and returned.

circleType(double r = 0);

//Constructor with a default parameter.

//Radius is set according to the parameter.

//The default value of the radius is 0.0;

//Postcondition: radius = r;

private:

double radius;

};

#endif

circleTypeImpl.cpp

#include <iostream>

#include "circleType.h"

using namespace std;

void circleType::print()

{

cout << "Radius = " << radius

<< ", area = " << area()

<< ", circumference = " << circumference();

}

void circleType::setRadius(double r)

{

if (r >= 0)

radius = r;

else

radius = 0;

}

double circleType::getRadius()

{

return radius;

}

double circleType::area()

{

return 3.1416 * radius * radius;

}

double circleType::circumference()

{

return 2 * 3.1416 * radius;

}

circleType::circleType(double r)

{

setRadius(r);

}

cylinderType.h

#ifndef cylinderType_H

#define cylinderType_H

#include "circleType.h"

class cylinderType: public circleType

{

public:

void print();

void setHeight(double);

double getHeight();

double volume();

double area();

//returns surface area

cylinderType(double = 0, double = 0);

private:

double height;

};

#endif

cylinderTypeImpl.cpp

#include <iostream>

#include "circleType.h"

#include "cylinderType.h"

using namespace std;

cylinderType::cylinderType(double r, double h)

: circleType(r)

{

setHeight(h);

}

void cylinderType::print()

{

cout << "Radius = " << getRadius()

<< ", height = " << height

<< ", surface area = " << area()

<< ", volume = " << volume();

}

void cylinderType::setHeight(double h)

{

if (h >= 0)

height = h;

else

height = 0;

}

double cylinderType::getHeight()

{

return height;

}

double cylinderType::area()

{

return 2 * 3.1416 * getRadius() * (getRadius() + height);

}

double cylinderType::volume()

{

return 3.1416 * getRadius() * getRadius() * height;

}

main.cpp

#include <iostream>

#include <iomanip>

using namespace std;

#include "cylinderType.h"

int main()

{

double radius,height;

double shippingCostPerLi,paintCost,shippingCost=0.0;

 

cout << fixed << showpoint;

cout << setprecision(2);

cout<<"Enter the radius :";

cin>>radius;

 

cout<<"Enter the Height of the cylinder :";

cin>>height;

 

 

cout<<"Enter the shipping cost per liter :$";

cin>>shippingCostPerLi;

 

 

//Creating an instance of CylinderType by passing the radius and height as arguments

cylinderType ct(radius,height);

 

double surfaceArea=ct.area();

double vol=ct.volume();

 

 

shippingCost+=vol*28.32*shippingCostPerLi;

 

char ch;

 

cout<<"Do you want the paint the container (y/n)?";

cin>>ch;

if(ch=='y' || ch=='Y')

{

cout<<"Enter the paint cost per sq foot :$";

cin>>paintCost;    

shippingCost+=surfaceArea*paintCost;    

}    

cout<<"Total Shipping Cost :$"<<shippingCost<<endl;

 

return 0;

}

3 0
3 years ago
Omar owns a stall selling handmade cosmetics, and wants to launch an e-commerce site. He has lots of experience selling his prod
erica [24]

Answer:

He could put up advertisements all over the town and pay a few websites or search engines to have his company and ads be more common. He should also use some designs and make his company's sign very adequate.

6 0
2 years ago
Why do cars have a push start button???​
QveST [7]
To be more easy for them
8 0
3 years ago
What are watts equal to?
Umnica [9.8K]

Answer:

joules per second

equivalent to one ampere under a pressure of one volt.

4 0
3 years ago
Read 2 more answers
Other questions:
  • A photograph of the NASA Apollo 16 Lunar Module (abbreviated by NASA as the LM is shown on the surface of the Moon. Such spacecr
    9·1 answer
  • Small droplets of carbon tetrachloride at 68 °F are formed with a spray nozzle. If the average diameter of the droplets is 200 u
    10·1 answer
  • The current source in the circuit below is given by i S (t) = 18 sin(35t +165) A. A. [6 points] Apply the phasor-domain analysis
    8·1 answer
  • 5. A non-cold-worked brass specimen of average grain size 0.01 mm has a yield strength of 150 MPa. Estimate the yield strength o
    10·1 answer
  • A hydraulic cylinder has a 125-mm diameter piston with hydraulic fluid inside the cylinder and an ambient pressure of 1 bar. Ass
    8·1 answer
  • Given the latent heat of fusion (melting) and the latent heat of vaporisation for water are Δhs = 333.2 kJ/kg and Δhv = 2257 kJ/
    15·1 answer
  • Which phase of project development provides engineers with an opportunity to determine the gaps or problems of the project on pa
    14·1 answer
  • An air conditioning performance check requires the use of a
    10·1 answer
  • PLEASE FIX THIS LUA SCRIPT
    12·2 answers
  • When developing a design proposal, you will need to ask: *
    5·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!