H.K.D.H. Bhadeshia,
Phase Transformations Group,
Department of Materials Science and Metallurgy,
University of Cambridge,
Cambridge, U.K.
Calculates the dislocation density and the strengthening due to dislocations in steel.
| Language: | FORTRAN |
| Product form: | Source code |
From experiments on acicular ferrite [1] it was found that a dislocation density of 3.9x1014m-2 (+/- 1.97x1014m-2) produced a strengthening of 145MPa. As the strengthening has been shown to depend on the square root of the dislocation density [2], the expected strengthening due to a given dislocation density can be calculated from the equation:
where p is the dislocation density and St the strengthening (MPa). The dislocation density, p, in bainitic ferrite and martensite has been measured as function of reaction temperature, T. An empirical formula relating these two parameters is [3]:
MAP_STEEL_DISLOC uses these two equations to calculate the dislocation density and strengthening of a steel for a given reaction temperature.
IFAIL = 1 if the temperature falls outside the empirical range for which the calculation is valid, IFAIL = 0 otherwise.
None.
DOUBLE PRECISION RTEMP,DEN,STR
INTEGER IFAIL
WRITE(*,*) 'Input reaction temperature (Kelvin):'
READ (*,*) RTEMP
CALL MAP_STEEL_DISLOC(RTEMP,DEN,STR,IFAIL)
IF (IFAIL.EQ.1) GOTO 100
WRITE (*,1) DEN,STR
GOTO 110
100 WRITE (6,2)
110 STOP
1 FORMAT ('Density = ',D11.3,' per square metre'
& /'Strengthening = 'F10.3,' MPa')
2 FORMAT ('Temperature falls outside valid range')
END
Input reaction temperature (Kelvin): 700
Density = 0.303D+16 per square metre Strengthening = 403.970 MPa
None.
steel, dislocation density, strengthening
MAP originated from a joint project of the National Physical Laboratory and the University of Cambridge.
MAP Website administration / map@msm.cam.ac.uk