Essentials Of Materials Science And Engineering
Essentials Of Materials Science And Engineering
4th Edition
ISBN: 9781337670845
Author: ASKELAND
Publisher: Cengage
Question
Book Icon
Chapter 5, Problem 5.38P
Interpretation Introduction

Interpretation:

The minimum thickness of iron needs to be determined.

Concept introduction:

Calculate the concentration (c1) of hydrogen in atoms/cm3 at the surface of

  0.05Hatom/unitcell

  c1=0.05Hatom unit cell( Lattice parameter)3/unit cell.............(1)

Expert Solution & Answer
Check Mark

Answer to Problem 5.38P

The minimum thickness Δx of iron is 0.179cm.

Explanation of Solution

Calculate the concentration (c1) of hydrogen in atoms/cm3 at the surface of 0.05Hatom/unit cell.

  c1=0.05Hatom/unit cell( Lattice parameter)3/unitcell.........(1)

Form the selected physical properties of the metals table, select the lattice parameter of BCC iron as 2.866A˙.

Convert the unit of lattice parameter of Fe from A˙ to cm.

  Lattice parameter=2.866A˙( 10 8 cm 1 A ˙ )=2.866×108cm

Substitute 2.866×108cm for the lattice parameter in equation (1).

  c1=0.05 H atom/unit cell ( 2.866× 10 8 cm )3/unit=212.4×1019 atoms/cm3

Calculate the concentration (c2) of hydrogen in atoms/cm3 at the other surface of

  0.001Hatom/unitcell.

  c2=0.001Hatom/unitcell( Lattice parameter)3/unit cell

Substitute 2.866×108cm for the lattice parameter.

  c2=0.001Hatom/unit cell ( 2.866× 10 8 cm )3/Unit cell=4.25×1019 atoms/cm3

Calculate the concentration gradient (Δc/Δx) of hydrogen in atoms/cm3.cm.

  ΔcΔx=c2c1Δx

Here, the difference in concentration is Δc and distance is Δx.

Substitute 212.4×1019 atoms/cm3 for c1 and 4.25×1019 atoms/cm3 for c2.

  ΔcΔx=4.25× 10 19  atoms/cm3212.4× 10 19  atoms/cm3Δx=2.081× 10 21  atoms/cm3.cmΔx

Calculate the flux (J) of hydrogen.

  J=ρNAuH

Here, density of hydrogen is ρ, Avogadro number is NA, and atomic mass of hydrogen in g/mol is uH.

From the physical properties of the elements table, select the atomic mass of hydrogen as

  1.0079g/mol.

Consider that loss of hydrogen will not be more than 50 gram per year in each cm2 of iron.

Substitute 50gram/cm3/year for ρ.6.02×1023atoms/mol for NA and 1.0079g/mol for uH.

  J=( 50gram/c m 3 /year)( 6.02× 10 23 atoms/mol)( 1.0079g/mol)( 1year 31.536 × 6 s)=9.47×1017 atoms/cm3.s

Calculate the diffusion coefficient using the Arrhenius type equation relation.

  D=D0exp(QRT).........(2)

Here, diffusion coefficient is D, constant is D0, activation energy is Q, gas constant is R and absolute temperature is T.

Convert the unit temperature form degree Celsius to degree Kelvin.

  T=(400+273)K=673K

From the diffusion data of the selected materials table, select the diffusion constant D0 and activation energy for H in BCC iron as 0.0012 cm2/s and 3600cal/mol.

Substitute 0.0012 cm2/s for D0, 3600cal/mol for Q,1.987cal/mol.K for R, and 673K for T in equation (2).

  D=(0.0012cm2/s)exp( 3600cal/mol ( 1.987 cal/mol.K )( 673K ))=(0.0012)(0.0677)=8.128×105cm2/s

Express the flux (J) of hydrogen related to concentration gradient.

  J=DΔcΔx

Here, diffusion coefficient is D and concentration gradient is Δc/Δx.

Calculate the minimum thickness Δc of iron.

Substitute 9.47×1017 atoms/cm3.s for J,8.128×105cm2/s for D, and

  2.081×1021atoms/cm3.cmΔx for Δc/Δx

  (8.128×105cm2/s)(2.081× 10 21 atoms/cm3.cmΔx)=9.47×1017 atoms/cm3.s

  Δx=2.081× 10 211.165× 10 22Δx=0.179cm

Therefore, the minimum thickness Δx of iron is 0.179cm.

Conclusion

The minimum thickness Δx of iron is 0.179cm.

Want to see more full solutions like this?

Subscribe now to access step-by-step solutions to millions of textbook problems written by subject matter experts!
Students have asked these similar questions
Multiple Choice Circle the best answer to each statement. 1. Which geometry attribute deviation(s) can be limited with a profile of a surface tolerance? A. Location B. Orientation C. Form D. All of the above 2. A true profile may be defined with: A. Basic radii B. Basic angles C. Formulas D. All of the above 3. Which modifier may be applied to the profile tolerance value? A B C. D. All of the above 4. The default tolerance zone for a profile tolerance is: A. Non-uniform B. Unilateral C. Bilateral equal distribution D. Bilateral-unequal distribution 5. An advantage of using a profile tolerance in place of a coordinate tolerance is: A. A bonus tolerance is permitted. B. A datum feature sequence may be specified C. A profile tolerance always controls size D. All of the above 6. The shape of the tolerance zone for a profile tolerance is: A. Two parallel planes B. The same as the true profile of the toleranced surface C. Equal bilateral D. Cylindrical when the diameter symbol is speci- fied…
Write a program that reads a list of integers from input and determines if the list is a palindrome (values are identical from first to last and last to first). The input begins with an integer indicating the length of the list that follows. Assume the list will contain a maximum of 20 integers. Output "yes" if the list is a palindrome and "no" otherwise. The output ends with a newline. Hints:   - use a for loop to populate the array based on the specified size (the first number entered)              - use a for loop to check first value with last value, second value with second from end, etc.              - if the values do not match, set a Boolean variable to flag which statement to output (yes or no)   Ex: If the input is (remember to include spaces between the numbers): 6 1 5 9 9 5 1 the output is: yes Ex: If the input is: 5 1 2 3 4 5 the output is: C++ coding
Write a program that reads a list of integers from input and determines if the list is a palindrome (values are identical from first to last and last to first). The input begins with an integer indicating the length of the list that follows. Assume the list will contain a maximum of 20 integers. Output "yes" if the list is a palindrome and "no" otherwise. The output ends with a newline. Hints:   - use a for loop to populate the array based on the specified size (the first number entered)              - use a for loop to check first value with last value, second value with second from end, etc.              - if the values do not match, set a Boolean variable to flag which statement to output (yes or no)   Ex: If the input is (remember to include spaces between the numbers): 6 1 5 9 9 5 1 the output is: yes Ex: If the input is: 5 1 2 3 4 5 the output is: C++ coding

Chapter 5 Solutions

Essentials Of Materials Science And Engineering

Ch. 5 - Prob. 5.11PCh. 5 - Prob. 5.12PCh. 5 - Prob. 5.13PCh. 5 - Prob. 5.14PCh. 5 - Prob. 5.15PCh. 5 - Prob. 5.16PCh. 5 - Prob. 5.17PCh. 5 - Prob. 5.18PCh. 5 - Prob. 5.19PCh. 5 - Prob. 5.20PCh. 5 - Prob. 5.21PCh. 5 - Prob. 5.22PCh. 5 - Prob. 5.23PCh. 5 - Prob. 5.24PCh. 5 - Prob. 5.25PCh. 5 - Prob. 5.26PCh. 5 - Prob. 5.27PCh. 5 - Prob. 5.28PCh. 5 - Prob. 5.29PCh. 5 - Prob. 5.30PCh. 5 - Prob. 5.31PCh. 5 - Prob. 5.32PCh. 5 - Prob. 5.33PCh. 5 - Prob. 5.34PCh. 5 - Prob. 5.35PCh. 5 - Prob. 5.36PCh. 5 - Prob. 5.37PCh. 5 - Prob. 5.38PCh. 5 - Prob. 5.39PCh. 5 - Prob. 5.40PCh. 5 - Prob. 5.41PCh. 5 - Prob. 5.42PCh. 5 - Prob. 5.43PCh. 5 - Prob. 5.44PCh. 5 - Prob. 5.45PCh. 5 - Prob. 5.46PCh. 5 - Prob. 5.47PCh. 5 - Prob. 5.48PCh. 5 - Prob. 5.49PCh. 5 - Prob. 5.50PCh. 5 - Prob. 5.51PCh. 5 - Prob. 5.52PCh. 5 - Prob. 5.53PCh. 5 - Prob. 5.54PCh. 5 - Prob. 5.55PCh. 5 - Prob. 5.56PCh. 5 - Prob. 5.57PCh. 5 - Prob. 5.58PCh. 5 - Prob. 5.59PCh. 5 - Prob. 5.60PCh. 5 - Prob. 5.61PCh. 5 - Prob. 5.62PCh. 5 - Prob. 5.63PCh. 5 - Prob. 5.64PCh. 5 - Prob. 5.65PCh. 5 - Prob. 5.66PCh. 5 - Prob. 5.67PCh. 5 - Prob. 5.68PCh. 5 - Prob. 5.69PCh. 5 - Prob. 5.70PCh. 5 - Prob. 5.71PCh. 5 - Prob. 5.72PCh. 5 - Prob. 5.73PCh. 5 - Prob. 5.74PCh. 5 - Prob. 5.75PCh. 5 - Prob. 5.76PCh. 5 - Prob. 5.77PCh. 5 - Prob. 5.78PCh. 5 - Prob. 5.79PCh. 5 - Prob. 5.80PCh. 5 - Prob. 5.81DPCh. 5 - Prob. 5.82DPCh. 5 - Prob. 5.83DPCh. 5 - Prob. 5.84DPCh. 5 - Prob. 5.85DPCh. 5 - Prob. 5.86CPCh. 5 - Prob. 5.87CPCh. 5 - Prob. 5.88CPCh. 5 - Prob. K5.1KP
Knowledge Booster
Background pattern image
Similar questions
SEE MORE QUESTIONS
Recommended textbooks for you
Text book image
MATLAB: An Introduction with Applications
Engineering
ISBN:9781119256830
Author:Amos Gilat
Publisher:John Wiley & Sons Inc
Text book image
Essentials Of Materials Science And Engineering
Engineering
ISBN:9781337385497
Author:WRIGHT, Wendelin J.
Publisher:Cengage,
Text book image
Industrial Motor Control
Engineering
ISBN:9781133691808
Author:Stephen Herman
Publisher:Cengage Learning
Text book image
Basics Of Engineering Economy
Engineering
ISBN:9780073376356
Author:Leland Blank, Anthony Tarquin
Publisher:MCGRAW-HILL HIGHER EDUCATION
Text book image
Structural Steel Design (6th Edition)
Engineering
ISBN:9780134589657
Author:Jack C. McCormac, Stephen F. Csernak
Publisher:PEARSON
Text book image
Fundamentals of Materials Science and Engineering...
Engineering
ISBN:9781119175483
Author:William D. Callister Jr., David G. Rethwisch
Publisher:WILEY