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
LenKa [72]
3 years ago
13

2 Consider airflow over a plate surface maintained at a temperature of 220°C. The temperature profile of the airflow is given as

The airflow at 1 atm has a free stream velocity and temperature of 0.08 m/s and 20°C, respectively. Determine the heat flux on the plate surface and the convection heat transfer coefficient of the airflow
Engineering
1 answer:
lutik1710 [3]3 years ago
6 0

Answer:

Heat flux on the plate surface is 1.45 x 10⁴ W/m², Heat transfer coefficient is 72.6 W/m². K

Explanation:

<u>The temperature profile of the airflow is given as</u>

<u>T(y) = T∞ – (T∞ - Ts)exp[(-V/</u>α<u> fluid)y]</u>

<u>Calculate the mean film temperature of air</u>

T(f) = T(s) + T∞/2, where T(s) is the surface temperature of the plate and T∞ is the temperature of free stream

Substitute Ts = 220 C and T∞ = 20 C

T(f) = 220 +20/2 = 120 C

Obtain the properties of air from Table A- 15 (Properties of air at 1 atm pressure) in the text book of from the internet at T(f) = 120 C, which would give us the quantities of thermal diffusivity (α fluid) and the thermal conductivity (k) of air

α fluid = 3.565 x 10⁻⁵ m²/s

k = 0.03235 W/m.k

<u>Calculate the temperature gradient for the given profile</u>

T(y) = T∞ – (T∞ - Ts)exp({-V/α fluid}y)

Where, T∞ is the ambient temperate, V is the free stream velocity of air and y is the temperature displacement thickness

<u>Differentiate the expression with respect to y</u>

dT/dY = - (T∞ - Ts){-V/α fluid}e[(-V/α fluid) x 0]

dT/dy = -(T∞ - Ts){-V/α fluid}

<u>Substitute T∞ = 20 C, Ts = 220 C, V = 0.08 m/s and </u>α<u> = 3.565 x 10⁻⁵ m²/s</u>

dT/dy = - (20 - 220)(-0.08/3.565 x 10⁻⁵)

dT/dy = -448807.8541

<u>Calculate the heat flux on the plate surface</u>

Q = -kdT/dy

K = 0.03235 W/m.k, dT/dy = -448807.8541

Q = -(0.03235)(-448807.8541)

Q = 1.45 x 10⁴ W/m²

Therefore, the heat flux on the plate surface is 1.45 x 10⁴ W/m²

<u>Calculate the heat transfer coefficient</u>

Q = h(Ts - T∞), where h is the transfer coefficient

1.45 x 10⁴ = h(220 - 20)

H = 72.6 W/m2.k

Therefore, the heat transfer coefficient is 72.6 W/m². K

You might be interested in
A 46.0-g meter stick is balanced at its midpoint (50.0 cm, zero point is a left end of stick). Then a 210.0-g weight is hung wit
Anna71 [15]

Clockwise torque due to 100g is 0.1029 Nm and 200g is 1.4406 Nm. Clockwise torque due to stick mass is 0.2254 Nm and Counter-clockwise torque due to normal force is 1.7689 Nm.            

<h3>What is clockwise torque?</h3>

The right-hand rule for cross products determines the direction of torque, which is calculated as the cross product of force and distance. Your thumb will point in the direction of the torque if you place your palm in the direction of the applied force and extend your fingers from the pivot point in that direction.

A related right-hand rule relates the direction of the rotation to the direction of the torque. Your fingers will curl in the direction of rotation if you point your thumb in the direction of the torque.

Positive torques cause counter clockwise rotation, while negative torques cause clockwise rotation.

The sum of all torques must be zero at equilibrium since an object in equilibrium has no net torque.

When the force is applied in a direction perpendicular to the line connecting the pivot and the force, the torque is at its greatest.

You can calculate the torque's magnitude using

                                             \begin{displaymath}\tau =rF_{\bot }=rF\sin \theta .\end{displaymath}

To solve problems involving torques, follow these eight steps: read the issue, create a free-body diagram, locate the pivot point, write down the expressions for all torques, For equilibrium conditions, set the sum of torques to zero, list all known variables, pick the desired variable(s), write down equations involving those variable(s), solve the equations, plug in numbers, and test your solution.

Clockwise torque due to 100 g                                                                         ⇒ T1 = 0.105* 9.8* 0.1 = 0.1029 Nm

Clockwise torque due to 200 g                                                                                                      ⇒ T2 = 0.210* 9.8* 0.7 = 1.4406 Nm

Clockwise torque due to stick mass                                                                               ⇒ T3 = 0.046* 0.5* 9.8 =0.2254 Nm

Counter-clockwise torque due to normal force                                                                             ⇒ T4 = (0.046 + 0.21 + 0.105)*9.8* 0.5 = 1.7689 Nm

Learn more about torque

brainly.com/question/1544595

#SPJ4

7 0
1 year ago
Write a method printShampooInstructions(), with int parameter numCycles, and void return type. If numCycles is less than 1, prin
kirill [66]

Answer:

// The method is defined with a void return type

// It takes a parameter of integer called numCycles

// It is declared static so that it can be called from a static method

public static void printShampooInstructions(int numCycles){

// if numCycles is less than 1, it display "Too few"

   if (numCycles < 1){

       System.out.println("Too few.");

   }

// else if numCycles is less than 1, it display "Too many"

    else if (numCycles > 4){

       System.out.println("Too many.");

   }

// else it uses for loop to print the number of times to display

// Lather and rinse

  else {

       for(int i = 1; i <= numCycles; i++){

           System.out.println(i + ": Lather and rinse.");

       }

       System.out.println("Done");

       

   }

}

Explanation:

The code snippet is written in Java. The method is declared static so that it can be called from another static method. It has a return type of void. It takes an integer as parameter.

It display "Too few" if the passed integer is less than 1. Or it display "Too much" if the passed integer is more than 4. Else it uses for loop to display "Lather and rinse" based on the passed integer.

8 0
3 years ago
6.1-2. Diffusion of CO, in a Binary Gas Mixture. The gas CO2 is diffusing at stcady state through a tube 0.20 m long having a di
zzz [600]

Answer:

Heat flux of CO₂ in cgs

                 = 170.86 x 10⁻⁹ mol / cm²s

SI units

       170.86 x 10⁻⁸ kmol/m²s  

Explanation:

4 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
Calculate the radius of gyration for a bar of rectangular cross section with thickness t and width w for bending in the directio
SVEN [57.7K]

Answer:

a)R= sqrt( wt³/12wt)

b)R=sqrt(tw³/12wt)

c)R= sqrt ( wt³/12xcos45xwt)

Explanation:

Thickness = t

Width = w

Length od diagonal =sqrt (t² +w²)

Area of raectangle = A= tW

Radius of gyration= r= sqrt( I/A)

a)

Moment of inertia in the direction of thickness I = w t³/12

R= sqrt( wt³/12wt)

b)

Moment of inertia in the direction of width I = t w³/12

R=sqrt(tw³/12wt)

c)

Moment of inertia in the direction of diagonal I= (w t³/12)cos 45=( wt³/12)x 1/sqrt (2)

R= sqrt ( wt³/12xcos45xwt)

4 0
3 years ago
Other questions:
  • Explain the differences between planned and predictive maintenance.
    12·1 answer
  • 11.A heat engine operates between two reservoirs at 800 and 20°C. One-half of the work output of the heat engine is used to driv
    6·1 answer
  • A circular ceramic plate that can be modeled as a blackbody is being heated by an electrical heater. The plate is 30 cm in diame
    15·1 answer
  • Write a function called pyramid(height) that acceptsa parameter ""height"". It then prints a pyramid of that height
    10·1 answer
  • Calculate pressure at the mid-plane of an annular cylinder of iron powder pressed using double-action press. The punch pressure
    12·1 answer
  • A moving-coil instrument, which gives full-scale deflection with 0.015 A has a copper coil having resistance of 1.5 Ohm at 15°C
    7·1 answer
  • Expert Review is done by end users.
    9·1 answer
  • Cual es la definición de la distribución de las instalaciones?
    13·2 answers
  • Which system provides an easier way for people to communicate with a computer than a graphical user interface (GUI)?
    15·1 answer
  • The percentage modulation of AM changes from 50% to 70%. Originally at 50% modulation, carrier power was 70 W. Now, determine th
    15·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!