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
astraxan [27]
3 years ago
9

(3) Calculate the heat flux through a sheet of brass 7.5 mm (0.30 in.) thick if the temperatures at the two faces are 150°Cand 5

0°C (302°F and 122°F); assume steady-state heat flow.(b) What is the heat loss per hour if the area of the sheet is 0.5 m2 (5.4 ft2)?(c) What is the heat loss per hour if soda—lime glass is used instead of brass?(d) Calculate the heat loss per hour if brass is used and the thickness is increased to 15 mm (0.59 in.).
Engineering
1 answer:
bezimeni [28]3 years ago
5 0

Answer:

a.) 1.453MW/m2,  b.)  2,477,933.33 BTU/hr  c.) 22,733.33 BTU/hr  d.) 1,238,966.67 BTU/hr

Explanation:

Heat flux is the rate at which thermal (heat) energy is transferred per unit surface area. It is measured in W/m2

Heat transfer(loss or gain) is unit of energy per unit time. It is measured in W or BTU/hr

1W = 3.41 BTU/hr

Given parameters:

thickness, t = 7.5mm = 7.5/1000 = 0.0075m

Temperatures 150 C = 150 + 273 = 423 K

                        50 C = 50 + 273 = 323 K

Temperature difference, T = 423 - 323 = 100 K

We are assuming steady heat flow;

a.) Heat flux, Q" = kT/t

K= thermal conductivity of the material

The thermal conductivity of brass, k = 109.0 W/m.K

Heat flux, Q" = \frac{109 * 100}{0.0075} = 1,453,333.33 W/m^{2} \\ Heat flux, Q" = 1.453MW/m^{2} \\

b.) Area of sheet, A = 0.5m2

Heat loss, Q = kAT/t

Heat loss, Q = \frac{109*0.5*100}{0.0075} = 726,666.667W

Heat loss, Q = 726,666.667 * 3.41 = 2,477,933.33 BTU/hr

c.) Material is now given as soda lime glass.

Thermal conductivity of soda lime glass, k is approximately 1W/m.K

Heat loss, Q=\frac{1*0.5*100}{0.0075} = 6,666.67W

Heat loss, Q = 6,666.67 * 3.41 = 22,733.33 BTU/hr

d.) Thickness, t is given as 15mm = 15/1000 = 0.015m

Heat loss, Q=\frac{109*0.5*100}{0.015} =363,333.33W

Heat loss, Q = 363,333.33 * 3.41 = 1,238,966.67 BTU/hr

You might be interested in
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
Are designed to make it easier for employees to get health and safety Information about
iren [92.7K]

Answer:

what the options

Explanation:

4 0
3 years ago
The angle of twist can be computed using the material’s shear modulus if and only if: (a)- The shear stress is still in the elas
ollegr [7]

Answer:

The angle of twist can be computed using the material’s shear modulus if and only if the shear stress is still in the elastic region

Explanation:

The shear modulus (G) is the ratio of shear stress to shear strain. Like the modulus of elasticity, the shear modulus is governed by Hooke’s Law: the relationship between shear stress and shear strain is proportional up to the proportional limit of the material. The angle of twist can be computed using the material’s shear modulus if and only if the shear stress is still in the elastic region.

3 0
3 years ago
Determine the following parameters for the water having quality x=0.7 at 200 kPa:
ra1l [238]

Solution :

Given :

Water have quality x = 0.7 (dryness fraction) at around pressure of 200 kPa

The phase diagram is provided below.

a). The phase is a standard mixture.

b). At pressure, p = 200 kPa, T = $T_{saturated}$

   Temperature = 120.21°C

c). Specific volume

  $v_{f}= 0.001061, \ \ v_g=0.88578 \ m^3/kg$

  $v_x=v_f+x(v_g-v_f)$

       $=0.001061+0.7(0.88578-0.001061)$

       $=0.62036 \ m^3/kg$

d). Specific energy (u_x)

    $u_f=504.5 \ kJ/kg, \ \ u_{fg}=2024.6 \ kJ/kg$

   $u_x=504.5 + 0.7(2024.6)$

         $=1921.72 \ kJ/kg$

e). Specific enthalpy $(h_x)$

   At $h_f = 504.71, \ \ h_{fg} = 2201.6$

   h_x=504.71+(0.7\times 2201.6)

        $= 2045.83 \ kJ/kg$

f). Enthalpy at m = 0.5 kg

  $H=mh_x$

       $= 0.5 \times 2045.83$

       = 1022.91 kJ

7 0
3 years ago
Tech A says that horsepower is a measurement simply of the amount of work being performed. Tech B says that horsepower can be ca
snow_tiger [21]

Answer:

Tech B

Explanation:

Horsepower (hp) refers to a unit of measurement of power in respect of the output of engines or motors.

Horsepower is the common unit of power. It indicates the rate at which work is done.

The formula \frac{rpm*T}{5252}, where rpm is the engine speed, T is the torque, and 5,252 is radians per second.

So,

Tech B is correct

6 0
3 years ago
Other questions:
  • All circuits need three basic parts: an energy source, wires, and the object that is going to change the electrical energy into
    5·2 answers
  • The shaft is hollow from A to B and solid from B to C. The shaft has an outer diameter of 79 mm, and the thickness of the wall o
    6·1 answer
  • A refrigerator operates on average for 10.0 hours an day. If the power rating is the refrigerator is 709 w how much electrical e
    13·1 answer
  • The coefficient of performance of a reversible refrigeration cycle is always (a) greater than, (b) less than, (c) equal to the c
    12·1 answer
  • In a wire, when elongation is 4 cm energy stored is E. if it is stretched by 4 cm, then what amount of elastic potential energy
    15·2 answers
  • How long will it take a Honda Civic to travel 118 miles if it is travelling at an average speed of 72 mph?
    6·1 answer
  • (Blank) welding involves manual welding with equipment anomalously controls one or more of the windy conditions while (blank) we
    7·1 answer
  • Why the power factor is Low in no load test in induction motor ?​
    13·1 answer
  • In an ungrounded electrical systems with conductors installed in grounded metal raceways and enclosures, what is the voltage fro
    9·1 answer
  • A common boundary-crossing problem for engineers is when their home country' values come into sharp contrast with the host count
    7·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!