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
il63 [147K]
3 years ago
14

A plane wall, 7.5 cm thick, generates heat internally at the rate of 105W/m3. One side of the wall is insulated and the other si

de is exposed to fluid with T[infinity]= 90 °C and h= 500 W/m2-K. If the thermal conductivity of the wall is 12 W/(m K), calculate the temperature in the center of the wall.
Engineering
1 answer:
lukranit [14]3 years ago
4 0

Answer:

T=128°C

Explanation:

Given Data:

thickness = 7.5 cm ;

internal heat generation rate = q_{s} = 105W/m³ ;

First we have the equation of conduction for steady state withh heat generation as:

k\frac{d^{2}T }{dx^{2} } + q_{s} = 0

by re-arranging it we get

\frac{d^{2}T }{dx^{2} } = - q_{s}/k

Here, q_{s} is the rate of internal heat generation,

          k is thermal conductivity constant

          dT is temperature differential

          dx is differential along x-axis

Now if we integrate both sides w.r.t x, one derivative is removed from left side of equation and and a variable is multiplied to the term on the right side and a unknown integrating constant C is added.

\frac{dT}{dx}= - (q_{s}/k)*x + C -------------------- equation (1)

Now if we apply Dirichlet's first boundary equation at x = 0, dT/dx = 0

we get,

\frac{dT}{dx}= - (q_{s}/k)*x + C

0 = - (q_{s}/k)*0 + C

C = 0

Now put C = 0 in equation 1

we get,

k \frac{dT}{dx}= - q_{s}*x ------------------ equation (2)

Now integrate it w.r.t x

T= - (q_{s}/2k)*x² + C₁ ------------------ equation (3)

Now apply Dirichlet's second boundary condition on equation 2, i.e, x=L,       k\frac{dT}{dx} = h⁻(T-T₀), equation 2 becomes

h⁻(T-T₀) = Lq_{s} ------------------ equation (4)

Put value of T from equation 3 in equation 4

h⁻(- (q_{s}/2k)*L² + C₁-T₀) = Lq_{s}

By rearranging it we get,

C₁= T₀ + q_{s}L[(L/2k)+(1/h⁻)]  ------------------ equation (5)

Now putting value of C₁ from equation 5 in equation 3, we get

T = T₀ + (q_{s}/2k)[L² + 2kL/h⁻]

Now by putting the given values of  T₀ = 90°C, q_{s} = 10 W/m², k = 12 W/mK, L = 0.075m, h⁻ = 500 W/m²K

we get, T= 128°C

You might be interested in
A compressor receives air at 290 K, 95 kPa and shaft work of 5.5 kW from a gasoline engine. It should deliver a mass flow rate o
aev [14]

Answer:

P2 = 3.9 MPa

Explanation:

Given that

T₁ = 290 K

P₁ = 95 KPa

Power P = 5.5 KW

mass flow rate  = 0.01 kg/s

solution

with the help of table A5

here air specific heat and adiabatic exponent is

Cp = 1.004 kJ/kg K

and k = 1.4

so

work rate will be

W = m × Cp × (T2 - T1)              ..........................1

here T2 = W ÷ ( m × Cp) + T1    

so T2 = 5.5 ÷ ( 0.001 × 1.004 ) + 290

T2 = 838 k

so final pressure will be here

P2 = P1 × (\frac{T2}{T1})^\frac{k}{k-1}        ..............2

P2 = 95 × (\frac{838}{290})^\frac{1.4}{1.4-1}

P2 = 3.9 MPa

3 0
2 years ago
Describe the first case where the power of synthesis was used to solve design problems.
Minchanka [31]

The first case where the power of synthesis was applied was in Chile when they had to put 100 families in houses around 40m².

It should be noted that the power of architecture is the fact that it can synthesize a complex entry to a problem.

Chilean architect Alejandro used this in building more than several houses for the poorest communities in Chile. His rigorous and innovative design approach used a social framework that laid a precedent within the profession.

During this period in Chile, a normal middle-class home was about 80m² but he built his in 40m² and it was a good home that managed the resources that were available.

Learn more about synthesis on:

brainly.com/question/884041

6 0
2 years ago
Binary classification algorithm
Mila [183]

Answer:

What is this exactly?

Explanation:

If your asking for the definition, binary classification is the task of classifying the elements of a set into two groups on the basis of a classification rule.

3 0
2 years ago
1) A cylinder has a volume of 20 cubic feet. What is that volume in cubic inches? (1 ft = 12 in) ​
hram777 [196]
Before calculating the volume of this cylinder, we must either convert the diameter to feet or the height to inches. I'll do the latter, to avoid getting a very small number.
Recall that there are
12
inches in
1
foot. Thus, we can state:
12
in.
1
ft.
=
x
4
ft.
x
=
12
in.
×
4
ft.
1
(ft.)
x
=
48
in.
Hence, the cylinder has a height of
48
inches.
Now, we can apply the formula for volume of a cylinder to effectuate our calculation. The formula in question is
V
=
a
base
×
h
, or
V
=
r
2
π
×
h
.
However, we know our diameter but we don't know our radius. As you probably know, the diameter is linked to the radius b the formula
d
=
2
r
. Solving for
r
and substituting:
r
=
d
2
r
=
12
2
r
=
6
∴
The radius of the cylinder measures
6
inches.
V
=
r
2
π
×
h
V
=
6
2
π
×
48
V
=
(
36
×
48
)
π
V
=
1728
π
in
2
Note that this answer is in exact value. Rounded to two decimal places, the volume is
5428.67
in
7 0
2 years ago
Suppose the Bookstore is processing an input file containing the titles of books in order to remove duplicates from their list.
mash [69]

Answer:

books = []

   fp = open("bookTitles.txt")

   for line in fp.readlines():

       title = line.strip()

       if title not in books:

           books.append(title)

   fp.close()

   fout = open("noDuplicates.txt", "w")

   for title in books:

       print(tile, file=fout)

   fout.close()

except FileNotFoundError:

   print("Unable to open bookTitles.txt")

6 0
3 years ago
Other questions:
  • Run the program and observe the output to be: 55 4 250 19. Modify the numsInsert function to insert each item in sorted order. T
    14·1 answer
  • A Coca Cola can with diameter 62 mm and wall thickness 300 um has an internal pressure of 100 kPa. Calculate the principal stres
    9·1 answer
  • A heat pump and a refrigerator are operating between the same two thermal reservoirs. Which one has a higher COP?
    10·1 answer
  • A random sample of 5 hinges is selected from a steady stream of product from a punch press, and the a. b. proportion nonconformi
    12·1 answer
  • 6. Given a sheet of metal that is 1.2 cm wide, 3.8 cm long and 1.0 mm thick with a density of 8.57 g/cm3, calculate the mass of
    8·1 answer
  • 2 definiciones de personas en Técnicos en ingeniería eléctrica y agregar link.<br> Por favor❗❗❗
    13·1 answer
  • Technician A says that to depressurize high-pressure components of the electronic brake control (EBC) system, research the proce
    13·1 answer
  • An HVAC contracting company sent out three work crews to complete three
    10·1 answer
  • What do Engineering Systems achieve?
    8·1 answer
  • What is photosynthesis​
    9·2 answers
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!