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
kotegsom [21]
3 years ago
7

A double-pane insulated window consists of two 1 cm thick pieces of glass separated by a 1.8 cm layer of air. The window measure

s 4 m in width and 3 m in height. The inside air is at 27ºC with a convection coefficient of 12 W/m2K, and the outer surface of the glass is at -10ºC. (a) Sketch the thermal circuit. (b) Find the temperature of the glass surface inside the room. (c) Calculate the heat loss through the window. (d) Which, if any, thermal resistances are negligible (less than 1% of the total)?

Engineering
1 answer:
Elanso [62]3 years ago
8 0

Answer:

(b). T = 22.55 ⁰C

(c). q = 557.8 W

Explanation:

we take follow a step by step process to solving this problem.

from the question, we have that

The two glass pieces is separated by a 1.8 cm distance layer of air.

the thickness of glass piece is 1 cm

width = 4 m

the height = 3 m

(a). the sketch of the thermal circuit is uploaded in the picture below.

(b).  the thermal resistance due to the conduction in the first glass plane is given thus;

R₁ = Lg / Kg A ................(1)

given that Kg rep. the thermal conductivity of the glass plane

A = conduction surface area

Lg = Thickness of glass plane4

taking the thermal conductivity of glass plane as Kg = 0.78 w/mk

inputting values into equation (1) we have,

R₁ = [1 (cm) ˣ 1 (m)/100 (cm)] / [(0.78 w/mk)(4m ˣ 3m)]

R₁ = 1.068 ˣ 10 ⁻³ k/w

Being that we have same thermal resistance in the first and second plane,

therefore R₁ = R₃ = 1.068 ˣ 10 ⁻³ k/w

⇒ Also the thermal resistance between air and glass as a result of the conduction by the layer is given thus

R₂ = La/KaA .....................(2)

given Ka = thermal conductivity of air

A = surface area

La = thickness of air

substituting values into the equation we have

R₂ = [1.8 (cm) ˣ 1 (m)/100 (cm)] / [(0.0262 w/mk)(4m ˣ 3m)]

R₂ = 5.73 ˣ 10⁻² k/w

Given the thermal resistance on the outer surface due to convection, we have

R₄ = 1/hA

inputting value gives R₄ = 1 / (12 w/m² ˣ 12m) = 6.94 ˣ 10⁻³k/w

R₄ = 6.94 ˣ 10⁻³k/w

Finally the sum total of thermal resistance = R₁ + R₂ + R₃ + R₄

R-total = 0.0663 kw

From this we can calculate the rate of heat loss

using  q = Ti - To / R-total ..............(3)

given Ti and To is the inside and outside temperature i.e. 27⁰C and -10⁰C

from equation (3),

q = 27- (-10) / 0.0063 = 557.8 W

q = 557.8 W  

⇒ Applying the heat transfer formula for inside surface glass temperature gives;

q = Ti - T₂ / R₃ + R₄

T₂ = Ti - q (R₃ + R₄)

T₂ = 27 - 557.8 (1.068ˣ10⁻³ + 6.94ˣ10⁻³ ) = 22.55°C

T₂ = 22.55°C

cheers i hope this helps

You might be interested in
What Are 2 Properties electromagnets have that permanent magnets do not?
NikAS [45]

Answer:The distinction between a permanent magnet and an electromagnet is essentially one in how the field is created, not the properties of the field afterwards. So electromagnets still have two poles, still attract ferromagnetic materials, and still have poles that repel other like poles and attract unlike poles.

Explanation:

4 0
2 years ago
Read 2 more answers
The section should span between 10.9 and 13.4 cm (4.30 and 5.30 inches) as measured from the end supports and should be able to
Sergeeva-Olga [200]

Answer:

hello below is missing piece of the complete question

minimum size = 0.3 cm

answer : 0.247 N/mm2

Explanation:

Given data :

section span : 10.9 and 13.4 cm

minimum load applied evenly to the top of span  : 13 N

maximum load for each member ; 4.5 N

lets take each member to be 4.2 cm

Determine the max value of P before truss fails

Taking average value of section span ≈ 12 cm

Given minimum load distributed evenly on top of section span = 13 N  

we will calculate the value of   by applying this formula

= \frac{Wl^2}{12}  =  (0.013 * 0.0144 )/ 12  =  1.56 * 10^-5

next we will consider section ; 4.2 cm * 0.3 cm

hence Z (section modulus ) = BD^2 / 6  

                                             = ( 0.042 * 0.003^2 ) / 6  = 6.3*10^-8

Finally the max value of P( stress ) before the truss fails

= M/Z = ( 1.56 * 10^-5 ) / ( 6.3*10^-8 )  

          = 0.247 N/mm2

5 0
2 years ago
What material resources and intellectual resources were used in self driving cars?
fomenos

Answer: material resources: cameras, light detection and ranging systems, radar, sensors, advanced GPS, and millions of miles of training data, and more

I don't know about the intellectual resources sorry

5 0
3 years ago
Unit for trigonometric functions is always "radian". 1. 10 points: Do NOT submit your MATLAB code for this problem (a) Given f(x
RoseWind [281]

Answer:

Below is the required code.

Explanation:

%% Newton Raphson Method

clear all;

clc;

x0=input('Initial guess:\n');

x=x0;

f=exp(-x)-sin(x)-0.2;

g=-exp(-x)-cos(x);

ep=10;

i=0;

cc=input('Condition of convergence:\n');

while ep>=cc

i=i+1;

temp=x;

x=x-(f/g);

f=exp(-x)-sin(x)-0.2;

g=-exp(-x)-cos(x);

ep=abs(x-temp);

fprintf('x = %6f and error = %6f at iteration = %2f \n',x,ep,i);

end

fprintf('The solution x = %6f \n',x);

%% End of MATLAB Program

Command Window:

(a) First Root:

Initial guess:

1.5

Condition of convergence:

0.01

x = -1.815662 and error = 3.315662 at iteration = 1.000000

x = -0.644115 and error = 1.171547 at iteration = 2.000000

x = 0.208270 and error = 0.852385 at iteration = 3.000000

x = 0.434602 and error = 0.226332 at iteration = 4.000000

x = 0.451631 and error = 0.017029 at iteration = 5.000000

x = 0.451732 and error = 0.000101 at iteration = 6.000000

The solution x = 0.451732

>>

Second Root:

Initial guess:

3.5

Condition of convergence:

0.01

x = 3.300299 and error = 0.199701 at iteration = 1.000000

x = 3.305650 and error = 0.005351 at iteration = 2.000000

The solution x = 3.305650

>>

(b) Guess x=0.5:

Initial guess:

0.5

Condition of convergence:

0.01

x = 0.450883 and error = 0.049117 at iteration = 1.000000

x = 0.451732 and error = 0.000849 at iteration = 2.000000

The solution x = 0.451732

>>

Guess x=1.75:

Initial guess:

1.75

Condition of convergence:

0.01

x = 227.641471 and error = 225.891471 at iteration = 1.000000

x = 218.000998 and error = 9.640473 at iteration = 2.000000

x = 215.771507 and error = 2.229491 at iteration = 3.000000

x = 217.692636 and error = 1.921130 at iteration = 4.000000

x = 216.703197 and error = 0.989439 at iteration = 5.000000

x = 216.970438 and error = 0.267241 at iteration = 6.000000

x = 216.971251 and error = 0.000813 at iteration = 7.000000

The solution x = 216.971251

>>

Guess x=3.0:

Initial guess:

3

Condition of convergence:

0.01

x = 3.309861 and error = 0.309861 at iteration = 1.000000

x = 3.305651 and error = 0.004210 at iteration = 2.000000

The solution x = 3.305651

>>

Guess x=4.7:

Initial guess:

4.7

Condition of convergence:

0.01

x = -1.916100 and error = 1.051861 at iteration = 240.000000

x = -0.748896 and error = 1.167204 at iteration = 241.000000

x = 0.162730 and error = 0.911626 at iteration = 242.000000

x = 0.428332 and error = 0.265602 at iteration = 243.000000

x = 0.451545 and error = 0.023212 at iteration = 244.000000

x = 0.451732 and error = 0.000187 at iteration = 245.000000

The solution x = 0.451732

>>

Explanation:

The two solutions are x =0.451732 and 3.305651 within the range 0 < x< 5.

The initial guess x = 1.75 fails to determine the solution as it's not in the range. So the solution turns to unstable with initial guess x = 1.75.

7 0
3 years ago
List the main activities of exploration??
Trava [24]

Answer:  Exploration includes plethora of activities and depend upon the kind  of exploration a person is doing. But most include some of the basic activities like research , investigation, planning and execution.

Suppose we want to explore new petroleum sites then we would have to start with studying the geography of that area, then according to our research we will analyse the hot spots or the sector where probability of finding of oil field is highest, post that appropriate man power is skilled professionals, tools and machinery will be brought at the site so that execution can take place.

3 0
3 years ago
Other questions:
  • 10. The repair order is a legal document because
    7·1 answer
  • suppose we number the bytes in a w-bit word from 0 (less significant) to w/8-1 (most significant). write code for the followign
    11·1 answer
  • Estimate the theoretical fracture strength (in MPa) of a brittle material if it is known that fracture occurs by the propagation
    8·1 answer
  • 6. PVC boxes are primarily used in new construction because it is simple to
    11·1 answer
  • Water drains at a constant rate through a saturated soil column with a diameter of 1.5 feet and a height of 3 feet. The hydrauli
    11·1 answer
  • If a machine uses LESS effort to overcome a given resistance force (if Fe is less than FR), it has an actual mechanical advantag
    13·1 answer
  • The sports car has a weight of 4900 lblb and center of gravity at GG. If it starts from rest it causes the rear wheels to slip a
    13·1 answer
  • A beam spans 40 feet and carries a uniformly distributed dead load equal to 2.2 klf (not including beam self-weight) and a live
    15·1 answer
  • An aircraft component is fabricated from an aluminum alloy that has a plane strain fracture toughness of 30 . It has been determ
    5·1 answer
  • A 1020 Cold-Drawn steel shaft is to transmit 20 hp while rotating at 1750 rpm. Calculate the transmitted torque in lbs. in. Igno
    6·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!