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
satela [25.4K]
3 years ago
10

The components of an electronic system dissipating 180 W are located in a 1-m-long horizontal duct whose cross section is 16 cm

× 16 cm. The components in the duct are cooled by forced air, which enters at 27 oC at a rate of 0.65 m3 /min. Assuming 85 percent of the heat generated inside is transferred to air flowing through the duct and the remaining 15 percent is lost through the outer surfaces of the duct, determine (a) the exit temperature of air and (b) the highest component surface temperature in the duct. As a first approximation assume flow is fully developed in the channel. Evaluate properties of air at a bulk mean temperature of 35 oC. Is this a good assumption?
Engineering
1 answer:
oee [108]3 years ago
6 0

Answer:

a) The exit temperature is 39.25°C

b) The highest component surface is 132.22°C

c) The average temperature for air equal to 35°C is a good assumption because the air temperature at the inlet will increase due to the result in the heat gain produced by the duct and whose surface is exposed to a flow of hot.

Explanation:

a) The properties of the air at 35°C:

p = density = 1.145 kg/m³

v = 1.655x10⁻⁵m²/s

k = 0.02625 W/m°C

Pr = 0.7268

cp = 1007 J/kg°C

a) The mass flow rate of air is equal to:

m=\rho *V = 1.145*0.65=0.7443kg/min=0.0124kg/s

The exit temperature is:

T=T_{i} +\frac{Q}{m*c_{p} } =27+\frac{0.85*180}{0.0124*1007} =39.25°C

b) The mean fluid velocity is:

V_{m} =\frac{V}{A} =\frac{0.65}{0.16*0.16} =25.4m/min=0.4232m/s

The hydraulic diameter is:

D_{h} =\frac{4A}{p} =\frac{4*0.16*0.16}{4*0.16} =0.16m

The Reynold´s number is:

Re=\frac{VD_{h} }{v} =\frac{0.4232*0.16}{1.655x10^{-5} } =4091.36

Assuming fully developed turbulent flow, the Nusselt number is:

Nu=0.023Re^{0.8} *Pr^{0.4} =0.023*4091.36^{0.8} *0.7268^{0.4} =15.69

h=\frac{k*Nu}{D_{h} } =\frac{0.02625*15.69}{0.16} =2.57W/m^{2} C

The highest component surface temperature is:

T=T_{e} +\frac{\frac{Q}{A} }{h} =39.2+\frac{0.85*\frac{180}{4*0.16*1} }{2.57} =132.22°C

You might be interested in
A four-cylinder, four-stroke internal combustion engine operates at 2800 RPM. The processes within each cylinder are modeled as
Ulleksa [173]

Answer:

1) 287760.4 Hp

2) 18410899.5 kPa

Explanation:

The parameters given are;

p₁ = 14.7 lbf/in² = 101325.9 Pa

v₁ = 0.0196 ft³ = 0.00055501 m³

T₁ = 80°F = 299.8167 K

k = 1.4

Assumptions;

1) Air standard conditions are appropriate

2) There are negligible potential and kinetic energy changes

3) The air behaves as an ideal gas and has constant specific heat capacities of temperature and pressure

1) Process 1 to 2

Isentropic compression

T₂/T₁ = (v₁/v₂)^(1.4 - 1) = 10^0.4

p₂/p₁ = (v₁/v₂)^(1.4)

p₂ = p₁×10^0.4 =  101325.9*10^0.4 = 254519.153 Pa

T₂ = 299.8167*10^0.4 = 753.106 K

p₃ = 1080 lbf/in² = 7,446,338 Pa

Stage 2 to 3 is a constant volume process

p₃/T₃ = p₂/T₂

7,446,338/T₃ =   254519.153/753.106

T₃ = 7,446,338/(254519.153/753.106) = 22033.24 K

T₃/T₄ = (v₁/v₂)^(1.4 - 1) = 10^0.4

T₄ = 22033.24/(10^0.4) = 8771.59 K

The heat supplied, Q₁ = cv(T₃ - T₂) = 0.718*(22033.24 -753.106) = 15279.14 kJ

The heat rejected = cv(T₄ - T₁) = 0.718*(8771.59 - 299.8167) = 6082.73 kJ

W(net) = The heat supplied - The heat rejected = (15279.14 - 6082.73) = 9196.41 kJ

The power = W(net) × RPM/2*1/60 = 9196.41 * 2800/2*1/60 = 214582.9 kW

The power by the engine = 214582.9 kW = 287760.4 Hp

2) The mean effective pressure, MEP  = W(net)/(v₁ - v₂)

v₁ = 0.00055501 m³

v₁/v₂ = 10

v₂ = v₁/10 = 0.00055501/10 = 0.000055501

MEP  = 9196.41/(0.00055501 -  0.000055501) = 18410899.5 kPa

4 0
3 years ago
The base class Pet has attributes name and age. The derived class Dog inherits attributes from the base class Pet class and incl
Nonamiya [84]

Answer:

Explanation:

class Pet:

   def __init__(self):

       self.name = ''

       self.age = 0

   def print_info(self):

       print('Pet Information:')

       print('   Name:', self.name)

       print('   Age:', self.age)

class Dog(Pet):

   def __init__(self):

       Pet.__init__(self)

       self.breed = ''

def main():

   my_pet = Pet()

   my_dog = Dog()

   pet_name = input()

   pet_age = int(input())

   dog_name = input()

   dog_age = int(input())

   dog_breed = input()

   my_pet.name = pet_name

   my_pet.age = pet_age

   my_pet.print_info()

   my_dog.name = dog_name

   my_dog.age = dog_age

   my_dog.breed = dog_breed

   my_dog.print_info()

   print('   Breed:', my_dog.breed)

main()

3 0
3 years ago
technician A says that in any circuit, electrical current takes the path of least resistance. technician B says that while this
ArbitrLikvidat [17]

Answer:

  technician A is correct

Explanation:

Technician B has circuit topologies confused. In a series circuit, there is only one path for electrical current to take. In a parallel circuit, the current will divide between paths in proportion to the inverse of their resistance. The least resistance path will have the most current.

Technician A is mostly correct.

3 0
3 years ago
A) Total Resistance<br> b) Total Current<br> c) Current and Voltage through each resistor
Varvara68 [4.7K]
C my friend 20 characters suck
3 0
2 years ago
The separation and purification process is used for which of the following purposes?
Svetach [21]

The separation and purification process is used for DEVELOPING VACCINES. The development of vaccines must follow strict guidelines.

A vaccine is a biological preparation used to protect against harmful diseases (e.g., viruses) in a simple and safe manner.

Vaccine purification is a strict process consisting of clarification, concentration and chromatography in order to separate the extract that contains the active principle of the vaccine.

The techniques used for vaccine filtration include membrane filtration, depth filtration and centrifugation.

Learn more about vaccines here:

brainly.com/question/6683555

6 0
2 years ago
Other questions:
  • An 80-L vessel contains 4 kg of refrigerant-134a at a pressure of 160kPa. Determine (a) the temperature, (b) the quality, (c) th
    11·1 answer
  • A thermal energy storage unit consists of a large rectangular channel, which is well insulated on its outer surface and encloses
    7·1 answer
  • Why research and development in Maintenance Engineering?
    6·1 answer
  • A steady‐flow gas furnace supplies hot air at a rate of 850 cfm and conditions of 120F and 1.00 atm. The air splits into two bra
    14·1 answer
  • What are the two safety precautions taken before driving a car​
    12·1 answer
  • A steel wire of diameter 2.000 mm and length 1.000 m is attached between two immovable supports.When the temperature is 60.00 Ce
    9·1 answer
  • What's the difference between a GED and a Diploma?
    12·1 answer
  • A plumbed eyewash station is portable.
    8·1 answer
  • What is the answer???
    10·1 answer
  • A book sitting on a shelf is an example of ____________.
    6·2 answers
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!