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
Lynna [10]
3 years ago
10

A one-dimensional slab without heat generation has a thickness of 20 mm with surfaces main- tained at temperatures of 275 K and

325 K. Determine the heat flux through the system if it is constructed from (a) pure aluminum, (b) AISI 316 stainless steel, and (c) concrete.
Engineering
1 answer:
vlada-n [284]3 years ago
6 0

Answer:

a) 512.5 KW/m2

b) 40.75 KW/m2

c) 2 KW/m2

Explanation:

Given data;

T_2 = 325 K

T_1 = 275 K

dx = 0.20 mm

a) for aluminium   K = 205 W/m k

heat flux = k \frac{dt}{dx}

               = 205 \frac{325 - 275}{0.02}

               = 512.5 KW/m2

b) for AISI 316 stainless steel

k = 16.3 W/ m k

heat flux = k \frac{dt}{dx}

               = 16.3 \frac{325 - 275}{0.02}

               = 40.75 KW/m2

C) for Concrete

k = 0.8 W/ m k

heat flux = k \frac{dt}{dx}

               = 0.8 \times \frac{325 - 275}{0.02}

               = 2 KW/m2

You might be interested in
g Nuclear power supplies about _______ of all electricity in Europe. Nuclear power supplies about _______ of all electricity in
Alex_Xolod [135]

Answer:

The answer is not in the options. It is one-fourth.

Explanation:

As of 2017, it was recorded that nuclear power supplies 25% of electricity in Europe. That's 1/4 of the total electrical power supply.

5 0
3 years ago
For a steel alloy it has been determined that a carburizing heat treatment of 11.3 h duration will raise the carbon concentratio
diamong [38]

This question is incomplete, the complete question is;

For a steel alloy it has been determined that a carburizing heat treatment of 11.3 h duration at Temperature T1 will raise the carbon concentration to 0.44 wt% at a point 1.8 mm from the surface. A separate experiment is performed at T2 that doubles the diffusion coefficient for carbon in steel.

Estimate the time necessary to achieve the same concentration at a 4.9 mm position for an identical steel and at the same carburizing temperature T2.

Answer:

the required time to achieve the same concentration at a 4.9 is 83.733 hrs

Explanation:

Given the data in the question;

treatment time t₁ = 11.3 hours

Carbon concentration = 0.444 wt%

thickness at surface x₁ = 1.8 mm = 0.0018 m

thickness at identical steel x₂ = 4.9 mm = 0.0049 m

Now, Using Fick's second law inform of diffusion

x^2 / Dt = constant

where D is constant

then

x^2 / t = constant

x^2_1 / t₁ = x^2_2 / t₂

x^2_1 t₂ = t₁x^2_2

t₂ = t₁x^2_2 / x^2_1

t₂ = (x^2_2 / x^2_1)t₁

t₂ = ( x_2 / x_1 )^2 × t₁

so we substitute

t₂ = ( 0.0049  / 0.0018  )^2 × 11.3 hrs

t₂ = 7.41 × 11.3 hrs

t₂ = 83.733 hrs

Therefore, the required time to achieve the same concentration at a 4.9 is 83.733 hrs

8 0
3 years ago
C++ - Green Crud Fibonacci programThe following program is to be written with a loop. You are to write this program three times
Fynjy0 [20]

Answer:

Below is the required code:

Explanation:

Using for loop

#include <iostream>

using namespace std;

int main()

{

    //Initial crud size

    int init = 0;

    int newCrud;

    int next=0;

    //Number of days to simulate

    int no_days;

    int day;

    cout << "Enter initial amount of green crud: ";

    cin >> newCrud;

    cout << "Enter number of days to simulate: ";

    cin >> no_days;

    for (day = 10; day<=no_days; day++)

    {

         if (day % 10 == 0)

         {

             next = newCrud + init;

         }

             newCrud = init;

             init = next;

    }

    if (no_days < 5)

    cout << "\nCrud reproduce only after 5 days minimum.Hence the current amount is "

    << newCrud << " pounds.";

    else

    cout << "On day " << no_days << " you have " << init

    << " pounds of green crud." << endl;

    cout << "\nWould you like to continue? (y or n): ";

    cin >> ans;

         return 0;

}

Output:

         Enter initial amount of green crud: 5

         Enter number of days to simulate: 220

    On day 220 you have 10485760 pounds of green crud.

Using while loop

Program:

#include <iostream>

using namespace std;

int main()

{

    char ans='y';

    while (ans == 'Y' || ans == 'y')

    {

         //Initial crud size

         int init = 0;

         int newCrud;

         int next=0;

         //Number of days to simulate

         int no_days;

         int day;

         cout << "Enter initial amount of green crud:

         ";

         cin >> newCrud;

         cout << "Enter number of days to simulate:

         ";

         cin >> no_days;

         for (day = 10; day<=no_days; day++)

         {

             if (day % 10 == 0)

             {

                  next = newCrud + init;

             }

                  newCrud = init;

                  init = next;

         }

         if (no_days < 5)

         cout << "\nCrud reproduce only after 5 days

         minimum.Hence the current amount is "

         << newCrud << " pounds.";

         else

         cout << "On day " << no_days << " you have "

         << init

         << " pounds of green crud." << endl;

         cout << "\nWould you like to continue? (y or

         n): ";

         cin >> ans;

    }

    return 0;

}

Output:

Enter initial amount of green crud: 5

Enter number of days to simulate: 220

On day 220 you have 10485760 pounds of green crud.

Would you like to continue? (y or n): y

Enter initial amount of green crud: 5

Enter number of days to simulate: 225

On day 225 you have 10485760 pounds of green crud.

Using do while loop

Program:

#include <iostream>

using namespace std;

int main()

{

    char ans;

    do

    {

         //Initial crud size

         int init = 0;

         int newCrud;

         int next=0;

         //Number of days to simulate

         int no_days;

         int day;

         cout << "Enter initial amount of green crud: ";

         cin >> newCrud;

         cout << "Enter number of days to simulate: ";

         cin >> no_days;

         for (day = 10; day<=no_days; day++)

         {

             if (day % 10 == 0)

             {

                  next = newCrud + init;

             }

                  newCrud = init;

                  init = next;

         }

         if (no_days < 5)

         cout << "\nCrud reproduce only after 5 days

         minimum.Hence the current amount is "

         << newCrud << " pounds.";

         else

         

         cout << "On day " << no_days << " you have " <<

         init << " pounds of green crud." << endl;

         cout << "\nWould you like to continue? (y or n):

         ";

         cin >> ans;

    } while (ans == 'Y' || ans == 'y');

    return 0;

}

Output:

Enter initial amount of green crud: 5

Enter number of days to simulate: 220

On day 220 you have 10485760 pounds of green crud.

Would you like to continue? (y or n): y

Enter initial amount of green crud: 5

Enter number of days to simulate: 225

On day 225 you have 10485760 pounds of green crud.

7 0
3 years ago
Consider a cubic workpiece of rigid perfect plastic material with side length lo. The cube is deformed plastically to the shape
Taya2010 [7]

Answer:  ε₁+ε₂+ε₃ = 0

Explanation: Considering the initial and final volume to be constant which gives rise to the relation:-

                         l₀l₀l₀=l₁l₂l₃

                        \frac{lo*lo*lo}{l1*l2*l3}=1.0

                      taking natural log on both sides

                              ln(\frac{(lo*lo*lo)}{l1*l2*l3})=ln(1)

Considering the logarithmic Laws of division and multiplication :

                                ln(AB) = ln(A)+ln(B)

                                ln(A/B) = ln(A)-ln(B)

                           ln(\frac{(l1)}{lo})*ln(\frac{(l2)}{lo})*ln(\frac{(l3)}{lo}) = 0

Use the image attached to see the definition of true strain defined as

                         ln(l1/1o)= ε₁

which then proves that ε₁+ε₂+ε₃ = 0

8 0
3 years ago
A cylinder with a 6.0 in. diameter and 12.0 in. length is put under a compres-sive load of 150 kips. The modulus of elasticity f
jeka94

Answer:

Final Length = 11.992 in

Final Diameter = 6.001 in

Explanation:

First we calculate the cross-sectional area:

Area = A = πr² = π(3 in)² = 28.3 in²

Now, we calculate the stress:

Stress = Compressive Load/Area

Stress = - 150 kips/28.3 in²

Stress = -5.3 ksi

Now,

Modulus of Elasticity = Stress/Longitudinal Strain

8000 ksi = -5.3 ksi/Longitudinal Strain

Longitudinal Strain = -6.63 x 10⁻⁴

but,

Longitudinal Strain = (Final Length - Initial Length)/Initial Length

-6.63 x 10⁻⁴ = (Final Length - 12 in)/12 in

Final Length = (-6.63 x 10⁻⁴)(12 in) + 12 in

<u>Final Length = 11.992 in</u>

we know that:

Poisson's Ratio = - Lateral Strain/Longitudinal Strain

0.35 = - Lateral Strain/(- 6.63 x 10⁻⁴)

Lateral Strain = (0.35)(6.63 x 10⁻⁴)

Lateral Strain = 2.32 x 10⁻⁴

but,

Lateral Strain = (Final Diameter - Initial Diameter)/Initial Diameter

2.32 x 10⁻⁴ = (Final Diameter - 6 in)/6 in

Final Diameter = (2.32 x 10⁻⁴)(6 in) + 6 in

<u>Final Diameter = 6.001 in</u>

8 0
3 years ago
Other questions:
  • Millions of years ago, the Sierra Nevada region began to be uplifted along a crack in Earth's crust. The region on the other sid
    14·1 answer
  • What is Pressure measured from absolute zero pressure called?
    14·1 answer
  • Consider a rectangular fin that is used to cool a motorcycle engine. The fin is 0.15m long and at a temperature of 250C, while t
    5·1 answer
  • According to OSHA standards, the air in the building that John works in is unsafe. The type of regulation that OSHA engages in i
    8·2 answers
  • A motor vehicle has a mass of 1200kg and the road wheels have a radius of 360mm. The engine rotating parts have a moment of iner
    5·1 answer
  • You may have to_______
    14·1 answer
  • Welding and cutting done in confined spaces must
    5·2 answers
  • A tiger cub has a pattern of stripes on it for that is similar to that of his parents where are the instructions stored that pro
    8·1 answer
  • Multiple Choice
    6·1 answer
  • Which of the following is not a function of the cooling system
    8·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!