├── .gitignore ├── README.md ├── examples.py ├── hardness_vs_cooling_rate.py ├── img ├── Fe-1Mn-01C_diagrams.png ├── Fe-1Mn-01C_phase_fraction.png └── hardness_vs_cooling_rate.png ├── literature ├── ASTME112-Table4.png ├── Li et al, 1998 (MetTransB) [A Computational Model for the Prediction of Steel Hardenability].pdf └── Saunders et al.pdf ├── plot_diagrams.py ├── plot_phase_fractions.py ├── requirements.txt └── transformation_models.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthursn/transformation-diagrams/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthursn/transformation-diagrams/HEAD/README.md -------------------------------------------------------------------------------- /examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthursn/transformation-diagrams/HEAD/examples.py -------------------------------------------------------------------------------- /hardness_vs_cooling_rate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthursn/transformation-diagrams/HEAD/hardness_vs_cooling_rate.py -------------------------------------------------------------------------------- /img/Fe-1Mn-01C_diagrams.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthursn/transformation-diagrams/HEAD/img/Fe-1Mn-01C_diagrams.png -------------------------------------------------------------------------------- /img/Fe-1Mn-01C_phase_fraction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthursn/transformation-diagrams/HEAD/img/Fe-1Mn-01C_phase_fraction.png -------------------------------------------------------------------------------- /img/hardness_vs_cooling_rate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthursn/transformation-diagrams/HEAD/img/hardness_vs_cooling_rate.png -------------------------------------------------------------------------------- /literature/ASTME112-Table4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthursn/transformation-diagrams/HEAD/literature/ASTME112-Table4.png -------------------------------------------------------------------------------- /literature/Li et al, 1998 (MetTransB) [A Computational Model for the Prediction of Steel Hardenability].pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthursn/transformation-diagrams/HEAD/literature/Li et al, 1998 (MetTransB) [A Computational Model for the Prediction of Steel Hardenability].pdf -------------------------------------------------------------------------------- /literature/Saunders et al.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthursn/transformation-diagrams/HEAD/literature/Saunders et al.pdf -------------------------------------------------------------------------------- /plot_diagrams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthursn/transformation-diagrams/HEAD/plot_diagrams.py -------------------------------------------------------------------------------- /plot_phase_fractions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthursn/transformation-diagrams/HEAD/plot_phase_fractions.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | numpy 2 | matplotlib 3 | pandas 4 | argparse 5 | scipy 6 | -------------------------------------------------------------------------------- /transformation_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthursn/transformation-diagrams/HEAD/transformation_models.py --------------------------------------------------------------------------------