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
Triss [41]
3 years ago
8

1. A glass window of width W = 1 m and height H = 2 m is 5 mm thick and has a thermal conductivity of kg = 1.4 W/m*K. If the inn

er and outer surface temperatures of the glass are 15°C and -20°C. respectively, on a cold winter day, what is the rate of heat loss through the glass?
2. To reduce heat loss through windows, it is customary to use a double pane construction in which adjoining panes are separated by an air space. If the spacing is 10 mm and the glass surfaces in contact with the air have temperatures of 10° C and - 15°C, what is the rate of heat loss from a 1 m times 2 m window? The thermal conductivity of air is ka = 0.024 W/m*K.
Engineering
1 answer:
emmasim [6.3K]3 years ago
5 0

Answer:

1. \dot Q=19600\ W

2. \dot Q=120\ W

Explanation:

1.

Given:

  • height of the window pane, h=2\ m
  • width of the window pane, w=1\ m
  • thickness of the pane, t=5\ mm= 0.005\ m
  • thermal conductivity of the glass pane, k_g=1.4\ W.m^{-1}.K^{-1}
  • temperature of the inner surface, T_i=15^{\circ}C
  • temperature of the outer surface, T_o=-20^{\circ}C

<u>According to the Fourier's law the rate of heat transfer is given as:</u>

\dot Q=k_g.A.\frac{dT}{dx}

here:

A = area through which the heat transfer occurs = 2\times 1=2\ m^2

dT = temperature difference across the thickness of the surface = 35^{\circ}C

dx = t = thickness normal to the surface = 0.005\ m

\dot Q=1.4\times 2\times \frac{35}{0.005}

\dot Q=19600\ W

2.

  • air spacing between two glass panes, dx=0.01\ m
  • area of each glass pane, A=2\times 1=2\ m^2
  • thermal conductivity of air, k_a=0.024\ W.m^{-1}.K^{-1}
  • temperature difference between the surfaces, dT=25^{\circ}C

<u>Assuming layered transfer of heat through the air and the air between the glasses is always still:</u>

\dot Q=k_a.A.\frac{dT}{dx}

\dot Q=0.024\times 2\times \frac{25}{0.01}

\dot Q=120\ W

You might be interested in
A small lake with volume of 160,000 m^3 receives agricultural drainage waters that contain 150 mg / L total dissolved solids (TD
Stels [109]

Answer:

Explanation:

Given that : -

The desirable limit is 500 mg / l , but

allowable upto 2000 mg / l.

The take volume is V = 160.000 m3

V = 160 , 000 x 103 l

The crainage gives 150 mg / l and lake has initialy 100 mg / l

Code of tpr frpm drawn = 150 x 60, 000 x 1000

Ci = 9000 kg / gr

Cl = 100 x 160,000 x 1000

Cl = 16, 000 kg

Since allowable limit = 2000 mg / l

Cn = ( 2000 x 160, 00 x 1000 )

= 320, 000 kg

so, each year the rate increases, by 9000 kg / yr

Read level = ( 320, 000 - 16,000 )

Li = 304, 000 kg

Tr=<u>304,000</u>

      900

=33.77

5 0
3 years ago
Read 2 more answers
List and briefly describe two modern's materials needs
Angelina_Jolie [31]

Answer:

Modern and smart materials for making the products are improved by developing new materials and find new uses for the existing. As, modern industrialization society is increased demand and quality of the product.

Two modern's materials are:

Carbon Fiber: As, carbon fiber is a strong material and it is light in weight. Designers used it because it is five times strong as steel and two times as stiff. Carbon fiber is basically made out of very thin strands of carbon.

Fiber Optics: It is a new technology as, it is used as transparent solid to transmitted light signals.

4 0
4 years ago
How does a truth tables impact the development of a completed circuit? Make sure to use as many keywords as possible to back up
WINSTONCH [101]

Answer:

it is one this so the key word are pfp tpf htf pfp

Explanation:

3 0
3 years ago
Construct an NFAA foe<br>regular expression<br>labi.abb.cob)​
chubhunter [2.5K]

Explanation:

Construct an NFA:

Step 1 - Formulate an NFA with Void transitions from its specified regular expression.

Step 2 - Drop and transform the Null Transformation from of the NFA into an analogous DFA.

NDFA corresponding to

RE − 1 (0 + 1)* 0.

5 0
3 years ago
Using a queue.
beks73 [17]

Answer:

// Radix Sort

#include<iostream>

using namespace std;

// function to get max value

int getMaximum(int array[], int n)

{

int max = array[0];

for (int i = 1; i < n; i++)

if (array[i] > max)

max = array[i];

return max;

}

// function to get min value

int getMinimum(int array[], int n)

{

int mn = array[0];

for (int i = 1; i < n; i++)

if (array[i] <mn)

mn= array[i];

return mn;

}

//counting sort

void counterSort(int array[], int n, int expo)

{

int out[100]; // out max

int i, count[10] = {0};

// Store count of occurrences in count[]

for (i = 0; i < n; i++)

count[ (array[i]/expo)%10 ]++;

// Change count[i] so that count[i] now contains actual

// position of this digit in out[]

for (i = 1; i < 10; i++)

count[i] += count[i - 1];

// construct the out max

for (i = n - 1; i >= 0; i--)

{

out[count[ (array[i]/expo)%10 ] - 1] = array[i];

count[ (array[i]/expo)%10 ]--;

}

for (i = 0; i < n; i++)

array[i] = out[i];

}

void counterSortDesc(int array[], int n, int expo)

{

int out[100]; // out max

int i, count[10] = {0};

// Store count of occurrences in count[]

for (i = 0; i < n; i++)

count[ (array[i]/expo)%10 ]++;

for (i = 10; i >=1; i--)

count[i] += count[i - 1];

// construct out max

for (i = 0; i >= n-1; i++)

{

out[count[ (array[i]/expo)%10 ] - 1] = array[i];

count[ (array[i]/expo)%10 ]++;

}

// Copy the out max to array[], so that array[] now

// contains sorted numbers according to current digit

for (i = 0; i < n; i++)

array[i] = out[i];

}

// Radix Sort function

void radixsort(int array[], int n)

{

// get maximum number

int m = getMaximum(array, n);

for (int expo = 1; m/expo > 0; expo *= 10)

counterSort(array, n, expo);

}

void radixsortDesc(int array[], int n)

{

// get minimum number

int m = getMinimum(array, n);

for (int expo = 1; m/expo > 0; expo *= 10)

counterSortDesc(array, n, expo);

}

// print an max

void print(int array[], int n)

{ cout<<"\n";

for (int i = 0; i < n; i++)

cout << array[i] << " ";

}

// Main function

int main()

{

int array[] = {185, 25, 35, 90, 904, 34, 2, 66};

int n = sizeof(array)/sizeof(array[0]);

radixsort(array , n);

print(array, n);

radixsortDesc(array,n);

print(array,n);

return 0;

}

Explanation:

7 0
3 years ago
Other questions:
  • A evolução da malha rodoviária do Brasil é um marco notável
    9·1 answer
  • 3) What kind of bridges direct their load along it's curve and into the
    12·1 answer
  • What Are 2 Properties electromagnets have that permanent magnets do not?
    8·2 answers
  • What are the four types of physical hazards?
    13·2 answers
  • A dual-fluid heat exchanger has 10 lbm/s water entering at 100 F, 20 psia and leaving at 50 F, 20 psia. The other fluid is glyco
    13·1 answer
  • What is the function rule for the line? f(x)=−32x−2f(x)=−23x−2f(x)=32x−2f(x)=−32x+2A coordinate grid with x and y axis ranging f
    6·1 answer
  • What is applied technology?
    14·1 answer
  • What are difference between conic sectional and solids?
    15·1 answer
  • A solid steel shaft ABCDE turns freely in bearings at points A and E. The shaft is driven by the gear at C, which applies a torq
    14·1 answer
  • During a load test, a battery's voltage drops below a specific value. what action should the technician take?
    15·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!