![[MAP Logo]](../../maplogo1.gif) 
Materials Algorithms Project
Program Library
 - Provenance of code.
- Purpose of code.
- Specification.
- Description of subroutine's operation.
- References.
- Parameter descriptions.
- Error indicators.
- Accuracy estimate.
- Any additional information.
- Example of code
- Auxiliary subroutines required.
- Keywords.
- Download source code.
- Links.
H.K.D.H. Bhadeshia,
Phase Transformations Group,
Department of Materials Science and Metallurgy,
University of Cambridge,
Cambridge, U.K.
Top | 
Next
To estimate a value for the volume fraction of martensite.
Top | 
Next | 
Prev
| Language: | FORTRAN | 
| Product form: | Source code | 
SUBROUTINE MAP_STEEL_MART(MS,TQ,VAUST,VMART,VAUSTR)
DOUBLE PRECISION MS,TQ,VAUST,VMART,VAUSTR
Top | 
Next | 
Prev
MAP_STEEL_MART calculates a value for the volume fraction of martensite. An initial value is guessed, and later refined 
using the values of MS and TQ.
Top | 
Next | 
Prev
  - S.A. Khan and H.K.D.H. Bhadeshia, Materials Science and Engineering A, 
      A129, (1990), 257-272.
Top | 
Next | 
Prev
Input parameters
- MS - real
- MS is the martensite-start temperature of the alloy (in centigrade).
 
 
- TQ - real
- TQ is the ambient temperature for the retained austenite calculation.
 
 
- VAUST - real
- VAUST is the volume fraction of austenite.
 
 
Output parameters
- VMART - real
- VMART is the volume fraction of martensite.
 
 
- VAUSTR - real
- VAUSTR is the volume fraction of retained austenite.
 
 
Top | 
Next | 
Prev
None.
Top | 
Next | 
Prev
No information supplied.
Top | 
Next | 
Prev
None.
Top | 
Next | 
Prev
1. Program text
      DOUBLE PRECISION MS,TQ,VAUST,VMART,VAUSTR
      READ (*,*) MS,TQ,VAUST
      CALL MAP_STEEL_MART(MS,TQ,VAUST,VMART,VAUSTR)
      WRITE (*,1) VMART,VAUSTR
      STOP
1     FORMAT (1H ,'volume fraction of martensite = ',F7.3/
     &        1H ,'volume fraction of austenite  = ',F7.3)
      END
2. Program data
400.0  20.0  1.0
3. Program results
 volume fraction of martensite =   0.823
 volume fraction of austenite  =   0.177
Top | 
Next | 
Prev
MAP_STEEL_GMART
MAP_STEEL_GMDASH
Top | 
Next | 
Prev
martensite, volume fraction
Top | 
Next | 
Prev
Download source code
Top | 
Prev