├── .gitignore ├── LICENSE ├── README.md ├── docs ├── Brookshaw.pdf ├── CollinsANEOSLPSC2014.pdf ├── CollinsPosterLPSC2014.pdf ├── Melosh2007.pdf ├── Stewart-2019-ANEOS_Modifications.pdf ├── Thompson-1970-Improvements-I.pdf ├── Thompson-1990-ANEOS-Input-Manual.pdf ├── Thompson-Lauson-1972-Improvements-II.pdf ├── Thompson-Lauson-1972-Improvements-III.pdf ├── Thompson-Lauson-1972-Improvements-IV.pdf └── Thompson-Lauson-1975-Revised-ANEOS_OCR.pdf ├── example └── tablegrid.txt ├── input ├── dunite_.input ├── quartz_.input └── serpent.input └── src ├── ANDATA.f ├── ANDATB.f ├── ANDATD.f ├── ANDEBY.f ├── ANE2PH.f ├── ANEHPP.f ├── ANEI3.f ├── ANEINI.f ├── ANELSM.f ├── ANEOS.f ├── ANEOS1.f ├── ANEOS2.f ├── ANEOSD.f ├── ANEOSI.f ├── ANEOSS.f ├── ANEOSTEST.f ├── ANEOSV.f ├── ANEOSplot.f ├── ANEVAL.f ├── ANHUG.f ├── ANION1.f ├── ANION2.f ├── ANMARK.f ├── ANMAXW.f ├── ANMTAB.f ├── ANN1AS.f ├── ANN1VL.f ├── ANN2AS.f ├── ANNDPR.f ├── ANPHAS.f ├── ANPHTR.f ├── ANPRTR.f ├── ANSIOF.f ├── ANSMFT.f ├── ANTOMF.f ├── ANUEOS.f ├── ANUSET.f ├── ANWARN.f ├── ANZRTR.f ├── EOS.f ├── EOS_safe.f └── Makefile /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isale-code/M-ANEOS/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isale-code/M-ANEOS/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isale-code/M-ANEOS/HEAD/README.md -------------------------------------------------------------------------------- /docs/Brookshaw.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isale-code/M-ANEOS/HEAD/docs/Brookshaw.pdf -------------------------------------------------------------------------------- /docs/CollinsANEOSLPSC2014.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isale-code/M-ANEOS/HEAD/docs/CollinsANEOSLPSC2014.pdf -------------------------------------------------------------------------------- /docs/CollinsPosterLPSC2014.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isale-code/M-ANEOS/HEAD/docs/CollinsPosterLPSC2014.pdf -------------------------------------------------------------------------------- /docs/Melosh2007.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isale-code/M-ANEOS/HEAD/docs/Melosh2007.pdf -------------------------------------------------------------------------------- /docs/Stewart-2019-ANEOS_Modifications.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isale-code/M-ANEOS/HEAD/docs/Stewart-2019-ANEOS_Modifications.pdf -------------------------------------------------------------------------------- /docs/Thompson-1970-Improvements-I.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isale-code/M-ANEOS/HEAD/docs/Thompson-1970-Improvements-I.pdf -------------------------------------------------------------------------------- /docs/Thompson-1990-ANEOS-Input-Manual.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isale-code/M-ANEOS/HEAD/docs/Thompson-1990-ANEOS-Input-Manual.pdf -------------------------------------------------------------------------------- /docs/Thompson-Lauson-1972-Improvements-II.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isale-code/M-ANEOS/HEAD/docs/Thompson-Lauson-1972-Improvements-II.pdf -------------------------------------------------------------------------------- /docs/Thompson-Lauson-1972-Improvements-III.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isale-code/M-ANEOS/HEAD/docs/Thompson-Lauson-1972-Improvements-III.pdf -------------------------------------------------------------------------------- /docs/Thompson-Lauson-1972-Improvements-IV.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isale-code/M-ANEOS/HEAD/docs/Thompson-Lauson-1972-Improvements-IV.pdf -------------------------------------------------------------------------------- /docs/Thompson-Lauson-1975-Revised-ANEOS_OCR.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isale-code/M-ANEOS/HEAD/docs/Thompson-Lauson-1975-Revised-ANEOS_OCR.pdf -------------------------------------------------------------------------------- /example/tablegrid.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isale-code/M-ANEOS/HEAD/example/tablegrid.txt -------------------------------------------------------------------------------- /input/dunite_.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isale-code/M-ANEOS/HEAD/input/dunite_.input -------------------------------------------------------------------------------- /input/quartz_.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isale-code/M-ANEOS/HEAD/input/quartz_.input -------------------------------------------------------------------------------- /input/serpent.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isale-code/M-ANEOS/HEAD/input/serpent.input -------------------------------------------------------------------------------- /src/ANDATA.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isale-code/M-ANEOS/HEAD/src/ANDATA.f -------------------------------------------------------------------------------- /src/ANDATB.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isale-code/M-ANEOS/HEAD/src/ANDATB.f -------------------------------------------------------------------------------- /src/ANDATD.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isale-code/M-ANEOS/HEAD/src/ANDATD.f -------------------------------------------------------------------------------- /src/ANDEBY.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isale-code/M-ANEOS/HEAD/src/ANDEBY.f -------------------------------------------------------------------------------- /src/ANE2PH.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isale-code/M-ANEOS/HEAD/src/ANE2PH.f -------------------------------------------------------------------------------- /src/ANEHPP.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isale-code/M-ANEOS/HEAD/src/ANEHPP.f -------------------------------------------------------------------------------- /src/ANEI3.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isale-code/M-ANEOS/HEAD/src/ANEI3.f -------------------------------------------------------------------------------- /src/ANEINI.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isale-code/M-ANEOS/HEAD/src/ANEINI.f -------------------------------------------------------------------------------- /src/ANELSM.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isale-code/M-ANEOS/HEAD/src/ANELSM.f -------------------------------------------------------------------------------- /src/ANEOS.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isale-code/M-ANEOS/HEAD/src/ANEOS.f -------------------------------------------------------------------------------- /src/ANEOS1.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isale-code/M-ANEOS/HEAD/src/ANEOS1.f -------------------------------------------------------------------------------- /src/ANEOS2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isale-code/M-ANEOS/HEAD/src/ANEOS2.f -------------------------------------------------------------------------------- /src/ANEOSD.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isale-code/M-ANEOS/HEAD/src/ANEOSD.f -------------------------------------------------------------------------------- /src/ANEOSI.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isale-code/M-ANEOS/HEAD/src/ANEOSI.f -------------------------------------------------------------------------------- /src/ANEOSS.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isale-code/M-ANEOS/HEAD/src/ANEOSS.f -------------------------------------------------------------------------------- /src/ANEOSTEST.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isale-code/M-ANEOS/HEAD/src/ANEOSTEST.f -------------------------------------------------------------------------------- /src/ANEOSV.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isale-code/M-ANEOS/HEAD/src/ANEOSV.f -------------------------------------------------------------------------------- /src/ANEOSplot.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isale-code/M-ANEOS/HEAD/src/ANEOSplot.f -------------------------------------------------------------------------------- /src/ANEVAL.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isale-code/M-ANEOS/HEAD/src/ANEVAL.f -------------------------------------------------------------------------------- /src/ANHUG.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isale-code/M-ANEOS/HEAD/src/ANHUG.f -------------------------------------------------------------------------------- /src/ANION1.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isale-code/M-ANEOS/HEAD/src/ANION1.f -------------------------------------------------------------------------------- /src/ANION2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isale-code/M-ANEOS/HEAD/src/ANION2.f -------------------------------------------------------------------------------- /src/ANMARK.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isale-code/M-ANEOS/HEAD/src/ANMARK.f -------------------------------------------------------------------------------- /src/ANMAXW.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isale-code/M-ANEOS/HEAD/src/ANMAXW.f -------------------------------------------------------------------------------- /src/ANMTAB.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isale-code/M-ANEOS/HEAD/src/ANMTAB.f -------------------------------------------------------------------------------- /src/ANN1AS.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isale-code/M-ANEOS/HEAD/src/ANN1AS.f -------------------------------------------------------------------------------- /src/ANN1VL.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isale-code/M-ANEOS/HEAD/src/ANN1VL.f -------------------------------------------------------------------------------- /src/ANN2AS.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isale-code/M-ANEOS/HEAD/src/ANN2AS.f -------------------------------------------------------------------------------- /src/ANNDPR.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isale-code/M-ANEOS/HEAD/src/ANNDPR.f -------------------------------------------------------------------------------- /src/ANPHAS.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isale-code/M-ANEOS/HEAD/src/ANPHAS.f -------------------------------------------------------------------------------- /src/ANPHTR.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isale-code/M-ANEOS/HEAD/src/ANPHTR.f -------------------------------------------------------------------------------- /src/ANPRTR.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isale-code/M-ANEOS/HEAD/src/ANPRTR.f -------------------------------------------------------------------------------- /src/ANSIOF.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isale-code/M-ANEOS/HEAD/src/ANSIOF.f -------------------------------------------------------------------------------- /src/ANSMFT.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isale-code/M-ANEOS/HEAD/src/ANSMFT.f -------------------------------------------------------------------------------- /src/ANTOMF.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isale-code/M-ANEOS/HEAD/src/ANTOMF.f -------------------------------------------------------------------------------- /src/ANUEOS.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isale-code/M-ANEOS/HEAD/src/ANUEOS.f -------------------------------------------------------------------------------- /src/ANUSET.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isale-code/M-ANEOS/HEAD/src/ANUSET.f -------------------------------------------------------------------------------- /src/ANWARN.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isale-code/M-ANEOS/HEAD/src/ANWARN.f -------------------------------------------------------------------------------- /src/ANZRTR.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isale-code/M-ANEOS/HEAD/src/ANZRTR.f -------------------------------------------------------------------------------- /src/EOS.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isale-code/M-ANEOS/HEAD/src/EOS.f -------------------------------------------------------------------------------- /src/EOS_safe.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isale-code/M-ANEOS/HEAD/src/EOS_safe.f -------------------------------------------------------------------------------- /src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isale-code/M-ANEOS/HEAD/src/Makefile --------------------------------------------------------------------------------