Chapter 12 Dispersion Strengthening by Phase Transmission and Heat Treatment

Example 12_1 pgno:454

In [1]:
from math import log,exp
# Initialisation of Variables
r1=0.111;#Rate of copper in min^-1 at 135 degree celsius
r2=0.004;#Rate of copper in min^-1 at 88 degree celsius
T1=408.;#Temperature in K
T2=361.;#Temperature in K
R=1.987;#Gas constant
Q=20693.;#Change in Rates
slope=(log(r1)-log(r2))/((1/T1)-(1/T2));#Slope of the straight line ploted ln(Growth rate) as a function of 1=T,
A=r1/(exp(-Q/(R*T1)));#Constant
print  "Constant 10**10 A=",A/10**10
print  "Slpoe of the straight line -Q/R",round(2*slope)
#diffrence in asnwer is due to round off error
Constant 10**10 A= 1.35108097784
Slpoe of the straight line -Q/R -20829.0

Example 12_5 pgno:467

In [2]:
# Initialisation of Variables
Fe=6.67;#Carbon percentage in Cementite
G=0.77;#Carbon percentage in  peralite in composition
A=0.0218;#Carbon percentage in Ferrite
#CALCULATIONS
ferrite=((Fe-G)/(Fe-A))*100#Amount of ferrite present in peralite
C=((G-A)/(Fe-A))*100;#Amount of Cementite present in peralite
print "Amount of ferrite present in peralite:",round(ferrite,1)
print "Amount of Cementite present in peralite:",round(C,1)
Amount of ferrite present in peralite: 88.7
Amount of Cementite present in peralite: 11.3

Example 12_6 pgno:469

In [3]:
# Initialisation of Variables
A=0.0218;#Carbon percentage in  primary alpha in percent
Fe=6.67;#Carbon percentage in Cementite in percent
G=0.77;#Carbon percentage in eutectoid composition at 727 degree celsius
C=0.60;#Carbon percentage in Pearlite in percent
#CALCULATIONS
alpha=((Fe-C)/(Fe-A))*100;# Composition of Phase Ferrite in alloy 
Ce=((C-A)/(Fe-A))*100;#Composition of Cementite in percent in alloy
PF=((G-C)/(G-A))*100;#Percentage of microconstituents Primary Ferrite in alloy
P=((C-A)/(G-A))*100;#Percentage of microconstituents Pearlite in alloy
print "Composition of Phase Ferrite in alloy :",round(alpha,1)
print "Composition of Cementite in percent in alloy:",round(Ce,1)
print "Percentage of microconstituents Primary Ferrite in alloy:",round(PF,1)
print "Percentage of microconstituents Pearlite in alloy:", round(P,1)
Composition of Phase Ferrite in alloy : 91.3
Composition of Cementite in percent in alloy: 8.7
Percentage of microconstituents Primary Ferrite in alloy: 22.7
Percentage of microconstituents Pearlite in alloy: 77.3

Example 12_7 pgno:474

In [5]:
# Initialisation of Variables
d=0.001;#Actual distence between one alpha plate to next alpha plate 
S=14;#Spacings between between one alpha plate to next alpha plate 
#CALCULATIONS
lamida=d/S;#The interlamellar spacing between one alpha plate to next alpha plate in Pearlite Microstructure
print "The interlamellar spacing between one alpha plate to next alpha plate in Pearlite Microstructure:",lamida
The interlamellar spacing between one alpha plate to next alpha plate in Pearlite Microstructure: 7.14285714286e-05

Example 12_9 pgno:476

In [4]:
# Initialisation of Variables
M=0.60;#Percentage of Carbon in Martensite at  750 degree celsius
a=50.;#Percentage of Carbon in Austenite at 750 degree celsius
c=0.02;#Percentage of Carbon atoms in Steel 
X=(a/100)*(M-c)+c;#The carbon content of Steel in percentage
print "The carbon content of hypoeutectoid  Steel in percentage:",X
The carbon content of hypoeutectoid  Steel in percentage: 0.31