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
kozerog [31]
3 years ago
6

Convection ovens operate on the principle of inducing forced convection inside the oven chamber with a fan. A small cake is to b

e baked in an oven when the con- vection feature is disabled. For this situation, the free convection coefficient associated with the cake and its Steel sheet Concrete pad Ts, s Tb Ts Tsur Vs Pelec t s Lo ε Air T[infinity], h , 56 Chapter 1 ! Introduction CH001.qxd 2/24/11 12:03 PM Page 56 pan is hfr ! 3 W/m2 ! K. The oven air and wall are at temperatures T! ! Tsur ! 180)C. Determine the heat flux delivered to the cake pan and cake batter when they are initially inserted into the oven and are at a tem- perature of Ti ! 24)C. If the convection feature is acti- vated, the forced convection heat transfer coefficient is hfo ! 27 W/m2 ! K. What is the heat flux at the batter or pan surface when the oven is operated in the convection mode? Assume a value of 0.97 for the emissivity of the cake batter and pan.

Engineering
1 answer:
svetlana [45]3 years ago
5 0

complete question:

attached

Answer:

2356.11 W/m^2

6100.11 W/m^2

Explanation:

Assumptions:

1. Steady-state conditions.

2. The cake is placed in a large surrounding.

3. Heat flux delivered to the cake is due to convection and radiation.  

Case 1

Since convection feature is disabled the mode of heat transfer associated with this situation is through free convection and radiation.  

q''(free) = [q''(free convection+q''(radiation) ]W/m^2

            = h_free(T_infinty - T_i) + εσ(T_air^4 - T_i^4)

            = 3 W/m^2K(180°C - 24°C) + 0.97*5.67*10^-8*[(180+273K)^4 -  

               (24+273K)^4 ]

            = 468 +1881.11

            = 2356.11 W/m^2

Case 2

Since convection feature is enabled or activated the mode of heat transfer associated with this situation is through forced convection and radiation.  

q''(free) = [q''(forced convection+q''(radiation) ]W/m^2

            = h_forced(T_infinty - T_i) + εσ(T_air^4 - T_i^4)

            = 27 W/m^2K(180°C - 24°C) + 0.97*5.67*10^-8*[(180+273K)^4 -  

               (24+273K)^4 ]

            = 4212 +1881.11

            = 6100.11 W/m^2

1. The total heat flux is is 2.58 times higher when the convection feature is activated. Therefore the cake will bake faster during this condition.  

2. The contribution of convection heat flux under natural(free) convection is very low as compared to the contribution during forced convection.  

3. The heat transfer due to radiation is same in both the cases.  

4. Only 19.9 % of the total heat flux is contributed by free convection in the first case.  

5. In the second case 69 % of the total heat flux is contributed by forced convection.  

You might be interested in
(10 points) A single crystal in the titanium cable is oriented so that the [001] direction is parallel to the applied load. If t
Ulleksa [173]

Answer:yep

Explanation:

4 0
2 years ago
If you have a hole diameter of 0.250 with a tolerance of ±0.005, what are the limits of the hole size?
sleet_krkn [62]

Answer:

The limits of the hole size are;

The maximum limit of the hole diameter 0.255

The minimum limit of the hole diameter = 0.245

Explanation:

Tolerance is a standardized form of language that can be used to define the intended 'tightness' or 'clearance' degree between mating parts in a mechanical assembly process and in metal joining processes such as welding and brazing processes

In tolerancing, the size used in the description of a part is known as the nominal size while allowable variation of the nominal size that will still allow the part to function properly is known as the tolerance

A tolerance given in the form ±P is known as bilateral tolerancing, with the value being added to or subtracted from the nominal size to get the maximum and minimum allowable limits of the dimensions of the nominal size

Therefore;

The given nominal dimension of the hole diameter = 0.250

The bilateral tolerance of the dimension, = ±0.005

Therefore;

The maximum limit of the diameter of the hole = 0.250 + 0.005 = 0.255

The minimum limit of the diameter of the hole = 0.250 - 0.005 = 0.245

7 0
2 years ago
The mean of 10 numbers is 9, then the sum (total) of these numbers will be​
qwelly [4]

Answer:

90

Explanation:

mean is basically taking the sum of all numbers and then dividing the sum with the number of all given numbers..

here, the mean is 9, total numbers are 10.. so the sum will be 9 multiplied by 10, that is 90.

5 0
2 years ago
Read 2 more answers
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
Ma puteti ajuta cu un argument de 2 pagini despre inlocuirea garniturii de etansare de pe pistonul etrierului de franare la un a
Nitella [24]

Answer:

can you translate

Explanation:

what Is that?

4 0
2 years ago
Other questions:
  • An air-standard cycle with constant specific heats at room temperature is executed in a closed system with 0.003 kg of air and c
    15·1 answer
  • An inventor claims to have developed a power cycle operating between hot and cold reservoirs at 1175 K and 295 K, respectively,
    9·1 answer
  • Suppose that tank holds 1% liquid water by volume and 99% vapor water by volume at a temperature of 185oC. What is the quality?
    10·1 answer
  • Cold water at 20 degrees C and 5000 kg/hr is to be heated by hot water supplied at 80 degrees C and 10,000 kg/hr. You select fro
    14·1 answer
  • List two skills that are useful when working in teams.
    11·2 answers
  • Which happens when a wave passes through an opening
    12·2 answers
  • What is the heart of a set of construction drawing?
    10·1 answer
  • An individual is planning to take an 800-mile trip between two large cities. Three pos-sibilities exist: air, rail, or auto. The
    8·1 answer
  • Might a synchronous motor equally well be called a synchronous inductor
    9·1 answer
  • 1) Which step in the Design Process utilizes technical drawings to provide information necessary to
    8·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!