M. Takahashi
R & D Laboratories-2,
Nippon Steel Corporation,
Chiba 299-12,
Japan.
and
H.K.D.H. Bhadeshia,
Phase Transformations Group,
Department of Materials Science and Metallurgy,
University of Cambridge,
Cambridge, U.K.
Added to MAP: May 1999.
For a given steel composition, MAP_STEEL_BAINTT calculates the C curve for the transformation from austenite to bainite.
| Language: | FORTRAN | 
| Product form: | Source code | 
SUBROUTINE MAP_STEEL_BAINTT(KTEMP,SHEART,C,AC,JT,JTHIGH,JTLOW,T10,T20,W,W1,R,JN)
DOUBLE PRECISION KTEMP(100),SHEART(100),C(8),AC(8),T10,T20,W,W1,R 
INTEGER JT,JTHIGH,JTLOW,JN
For a given steel composition, MAP_STEEL_BAINTT calculates the C curve for the transformation from austenite to bainite [1]. The free energy of transformation from austenite to ferrite, Delta G{gamma alpha}, in pure iron is factorised into magnetic and non-magnetic components; Delta TM and Delta TNM represent the temperature changes, caused by unit concentration of substitutional solute, to the temperature at which Delta G{gamma alpha} is calculated. These values, along with the carbon-carbon interaction energy in austenite, are also given as output parameters.
      DOUBLE PRECISION KTEMP(100),SHEART(100),C(8),AC(8),T10,T20
      DOUBLE PRECISION W,W1,R
      INTEGER JT,JTHIGH,JTLOW,JN,I
C
C  R is the molar gas constant (in Joules per mole per Kelvin, J/(mol K))
C
      R=8.31451D+00
C
      WRITE(*,*) 'Input C  Si  Mn  Ni  Mo  Cr  V  (wt%):'
      READ (*,*) (C(I), I=1,7)
      WRITE(*,*) 'Input T interval, lowest T, highest T (Kelvin):'
      READ (*,*) JT,JTLOW,JTHIGH
      WRITE(*,*) 'Input C-C interaction energy in ferrite (J/mol):'
      READ (*,*) W1
      CALL MAP_STEEL_BAINTT(KTEMP,SHEART,C,AC,JT,JTHIGH,JTLOW,
     &                      T10,T20,W,W1,R,JN)
      WRITE (*,1) W
      WRITE (*,2) T10,T20
      WRITE (*,3) JN
      WRITE (*,4)
      DO 100 I=1,JN
         WRITE (*,5) KTEMP(I),SHEART(I)
  100 CONTINUE
      STOP
    1 FORMAT(//'C-C interaction energy in austenite = 'F10.4,' J/mol')
    2 FORMAT('T10 = ',F10.5/'T20 =',F10.4)
    3 FORMAT('No. of temperature-time calculations made = ',I3)
    4 FORMAT(//' Temperature (K)    Time (seconds)')
    5 FORMAT(F10.1,11X,F10.4)
      END
 Input C  Si  Mn  Ni  Mo  Cr  V  (wt%):
     0.1 0.5  1   0    0   0  0
 Input T interval, lowest T, highest T (Kelvin):
          40          473      873
 Input C-C interaction energy in ferrite (J/mol):
        48570.0
C-C interaction energy in austenite =  8414.5574 J/mol
T10 =   -0.00965
T20 =   -0.4176
No. of temperature-time calculations made =  11
 Temperature (K)    Time (seconds)
     473.0           20713.3090
     513.0            1368.5975
     553.0             168.8970
     593.0              34.3657
     633.0              11.1622
     673.0               5.0913
     713.0               2.8674
     753.0               2.1947
     793.0               2.3621
     833.0               3.6943
     873.0               9.8318
temperature, time, transformation, steel, austenite, bainite
MAP originated from a joint project of the National Physical Laboratory and the University of Cambridge.
MAP Website administration / map@msm.cam.ac.uk
Top | 
Index | 
MAP Homepage
