peritheos 0.5.0__tar.gz → 0.7.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (874) hide show
  1. peritheos-0.7.0/CHANGELOG.md +615 -0
  2. {peritheos-0.5.0 → peritheos-0.7.0}/CITATION.cff +2 -2
  3. {peritheos-0.5.0 → peritheos-0.7.0}/CONTRIBUTING.md +8 -0
  4. peritheos-0.7.0/Cargo.lock +444 -0
  5. peritheos-0.7.0/Cargo.toml +20 -0
  6. {peritheos-0.5.0/peritheos.egg-info → peritheos-0.7.0}/PKG-INFO +121 -34
  7. peritheos-0.7.0/README.md +272 -0
  8. peritheos-0.7.0/crates/peritheos/Cargo.toml +23 -0
  9. peritheos-0.7.0/crates/peritheos/README.md +119 -0
  10. peritheos-0.7.0/crates/peritheos/examples/fit_isothermal.rs +40 -0
  11. peritheos-0.7.0/crates/peritheos/examples/fit_thermal.rs +42 -0
  12. peritheos-0.7.0/crates/peritheos/examples/isothermal_workflow.rs +23 -0
  13. peritheos-0.7.0/crates/peritheos/examples/material_record.rs +46 -0
  14. peritheos-0.7.0/crates/peritheos/examples/propagate_uncertainty.rs +34 -0
  15. peritheos-0.7.0/crates/peritheos/examples/thermal_workflow.rs +27 -0
  16. peritheos-0.7.0/crates/peritheos/src/batch.rs +286 -0
  17. peritheos-0.7.0/crates/peritheos/src/eosmat.rs +2992 -0
  18. peritheos-0.7.0/crates/peritheos/src/error.rs +118 -0
  19. peritheos-0.7.0/crates/peritheos/src/fit/eos.rs +859 -0
  20. peritheos-0.7.0/crates/peritheos/src/fit/mod.rs +2405 -0
  21. peritheos-0.7.0/crates/peritheos/src/hugoniot.rs +224 -0
  22. peritheos-0.7.0/crates/peritheos/src/isothermal.rs +901 -0
  23. peritheos-0.7.0/crates/peritheos/src/lib.rs +534 -0
  24. peritheos-0.7.0/crates/peritheos/src/pressure_calibration.rs +348 -0
  25. peritheos-0.7.0/crates/peritheos/src/quadrature.rs +135 -0
  26. peritheos-0.7.0/crates/peritheos/src/root.rs +230 -0
  27. peritheos-0.7.0/crates/peritheos/src/thermal.rs +2555 -0
  28. peritheos-0.7.0/crates/peritheos/src/validation.rs +53 -0
  29. peritheos-0.7.0/crates/peritheos/tests/batch.rs +237 -0
  30. peritheos-0.7.0/crates/peritheos/tests/data/isothermal_compatibility_cases.json +82 -0
  31. {peritheos-0.5.0 → peritheos-0.7.0/crates/peritheos}/tests/data/literature_reference_cases.json +54 -1
  32. peritheos-0.7.0/crates/peritheos/tests/data/thermal_compatibility_cases.json +57 -0
  33. peritheos-0.7.0/crates/peritheos/tests/eosmat.rs +947 -0
  34. peritheos-0.7.0/crates/peritheos/tests/hugoniot.rs +100 -0
  35. peritheos-0.7.0/crates/peritheos/tests/isothermal.rs +225 -0
  36. peritheos-0.7.0/crates/peritheos/tests/pressure_calibration.rs +103 -0
  37. peritheos-0.7.0/crates/peritheos/tests/thermal.rs +1005 -0
  38. peritheos-0.7.0/crates/peritheos-python/Cargo.toml +24 -0
  39. peritheos-0.7.0/crates/peritheos-python/README.md +5 -0
  40. peritheos-0.7.0/crates/peritheos-python/src/lib.rs +1738 -0
  41. peritheos-0.7.0/crates/peritheos-python/src/native_fit.rs +784 -0
  42. peritheos-0.7.0/docs/adding-materials-and-eos.md +298 -0
  43. peritheos-0.7.0/docs/api-stability.md +93 -0
  44. peritheos-0.7.0/docs/api.md +490 -0
  45. peritheos-0.7.0/docs/catalog.md +133 -0
  46. {peritheos-0.5.0 → peritheos-0.7.0}/docs/dac-thermal-pressure.md +69 -17
  47. peritheos-0.7.0/docs/data/dorfman-2012-cocompression-refit.json +331 -0
  48. peritheos-0.7.0/docs/data/dorogokupets-2010-figure1-digitized.csv +12 -0
  49. peritheos-0.7.0/docs/data/hugoniot-material-inventory.csv +287 -0
  50. peritheos-0.7.0/docs/data/litcurate-eos-candidates.json +84751 -0
  51. peritheos-0.7.0/docs/data/nonproduction-paper-investigations.json +790 -0
  52. peritheos-0.7.0/docs/data/primary-eos-refits.json +31657 -0
  53. peritheos-0.7.0/docs/data/ringwoodite-katsura-2004-table2-pvt.csv +128 -0
  54. peritheos-0.7.0/docs/data/sokolova-2016-figure3-kt-digitized.csv +8 -0
  55. peritheos-0.7.0/docs/development.md +151 -0
  56. peritheos-0.7.0/docs/dioptas-integration.md +201 -0
  57. peritheos-0.7.0/docs/eosmat-schema.md +568 -0
  58. peritheos-0.7.0/docs/epsilon-feooh-suzuki-2016.md +144 -0
  59. peritheos-0.7.0/docs/epsilon-feooh-thompson-2017.md +104 -0
  60. peritheos-0.7.0/docs/equation-reference.md +1021 -0
  61. peritheos-0.7.0/docs/error-handling.md +132 -0
  62. {peritheos-0.5.0 → peritheos-0.7.0}/docs/fitting.md +111 -4
  63. {peritheos-0.5.0 → peritheos-0.7.0}/docs/getting-started.md +59 -1
  64. peritheos-0.7.0/docs/hugoniots.md +282 -0
  65. peritheos-0.7.0/docs/images/sokolova-2016-figure3-validation.svg +2607 -0
  66. peritheos-0.7.0/docs/index.md +90 -0
  67. peritheos-0.7.0/docs/javascripts/mathjax.js +12 -0
  68. peritheos-0.7.0/docs/litcurate-candidate-workflow.md +66 -0
  69. peritheos-0.7.0/docs/literature-reproductions/aip-handbook-cu-vinet-refit.md +69 -0
  70. peritheos-0.7.0/docs/literature-reproductions/akber-knutson-2005-al-perovskites.md +33 -0
  71. peritheos-0.7.0/docs/literature-reproductions/belmonte-2017-mgo.md +35 -0
  72. peritheos-0.7.0/docs/literature-reproductions/boffa-ballaran-2007-cairo3-pv-ppv.md +61 -0
  73. peritheos-0.7.0/docs/literature-reproductions/ca-other-source-exhaustion-2026-09-06.md +62 -0
  74. peritheos-0.7.0/docs/literature-reproductions/caracas-2005-casio3-polymorphs.md +74 -0
  75. peritheos-0.7.0/docs/literature-reproductions/caracas-cohen-2005-chemistry.md +36 -0
  76. peritheos-0.7.0/docs/literature-reproductions/chantel-2012-bridgmanite.md +32 -0
  77. peritheos-0.7.0/docs/literature-reproductions/chen-2018-casio3.md +13 -0
  78. peritheos-0.7.0/docs/literature-reproductions/cohen-lin-2014-fesio3.md +72 -0
  79. peritheos-0.7.0/docs/literature-reproductions/criniti-2021-bridgmanite.md +64 -0
  80. peritheos-0.7.0/docs/literature-reproductions/criniti-2023-fe-bearing-al-phase-d.md +129 -0
  81. peritheos-0.7.0/docs/literature-reproductions/deltacodesdft-metal-eos.md +117 -0
  82. peritheos-0.7.0/docs/literature-reproductions/deltaproject-experimental-reference.md +68 -0
  83. peritheos-0.7.0/docs/literature-reproductions/deng-2006-bridgmanite.md +30 -0
  84. peritheos-0.7.0/docs/literature-reproductions/dewaele-2000-mgo.md +62 -0
  85. peritheos-0.7.0/docs/literature-reproductions/dewaele-2004-six-metals.md +106 -0
  86. peritheos-0.7.0/docs/literature-reproductions/dewaele-2019-static-dac-metals.md +101 -0
  87. peritheos-0.7.0/docs/literature-reproductions/dorfman-2012-cocompression.md +131 -0
  88. peritheos-0.7.0/docs/literature-reproductions/driver-2010-qmc-silica.md +43 -0
  89. peritheos-0.7.0/docs/literature-reproductions/experimental-metal-eos-batch-200.md +85 -0
  90. peritheos-0.7.0/docs/literature-reproductions/finkelstein-2017-mw78.md +154 -0
  91. peritheos-0.7.0/docs/literature-reproductions/fiquet-2000-bridgmanite.md +58 -0
  92. peritheos-0.7.0/docs/literature-reproductions/fu-2023-eos.md +34 -0
  93. peritheos-0.7.0/docs/literature-reproductions/funamori-1996-mgsio3-perovskite.md +137 -0
  94. peritheos-0.7.0/docs/literature-reproductions/funamori-1998-mgal2o4-transformations.md +79 -0
  95. peritheos-0.7.0/docs/literature-reproductions/ghosh-karki-2016-mgo-liquid.md +11 -0
  96. peritheos-0.7.0/docs/literature-reproductions/gong-2004-mg092fe008sio3.md +21 -0
  97. peritheos-0.7.0/docs/literature-reproductions/haavik-2000-wustite.md +15 -0
  98. peritheos-0.7.0/docs/literature-reproductions/hama-suito-1996-mgo.md +14 -0
  99. peritheos-0.7.0/docs/literature-reproductions/hirose-2005-mggeo3-post-perovskite.md +47 -0
  100. peritheos-0.7.0/docs/literature-reproductions/holland-2013-ncfmas-modified-tait.md +47 -0
  101. peritheos-0.7.0/docs/literature-reproductions/inbar-cohen-1995-mgo.md +19 -0
  102. peritheos-0.7.0/docs/literature-reproductions/iucr-2005-s0108767305096972.md +12 -0
  103. peritheos-0.7.0/docs/literature-reproductions/jackson-2006-ferropericlase-elasticity.md +15 -0
  104. peritheos-0.7.0/docs/literature-reproductions/jacobs-oonk-2000-mgo.md +17 -0
  105. peritheos-0.7.0/docs/literature-reproductions/karki-1997-mgo.md +35 -0
  106. peritheos-0.7.0/docs/literature-reproductions/karki-2002-akimotoite.md +63 -0
  107. peritheos-0.7.0/docs/literature-reproductions/katsura-2009-bridgmanite.md +120 -0
  108. peritheos-0.7.0/docs/literature-reproductions/kawai-2012-nal-cf.md +151 -0
  109. peritheos-0.7.0/docs/literature-reproductions/kiefer-2002-fe-bridgmanite.md +34 -0
  110. peritheos-0.7.0/docs/literature-reproductions/koemets-2023-silicate-perovskites.md +61 -0
  111. peritheos-0.7.0/docs/literature-reproductions/kubo-2000-aluminous-bridgmanite.md +139 -0
  112. peritheos-0.7.0/docs/literature-reproductions/kubo-2006-mggeo3-post-perovskite.md +114 -0
  113. peritheos-0.7.0/docs/literature-reproductions/lakshtanov-2007-alh-stishovite-elasticity.md +15 -0
  114. peritheos-0.7.0/docs/literature-reproductions/lee-wan-2008-mgo-pressure-correction.md +63 -0
  115. peritheos-0.7.0/docs/literature-reproductions/leonov-2017-magnesiowustite.md +46 -0
  116. peritheos-0.7.0/docs/literature-reproductions/li-zeng-2009-mgsio3.md +40 -0
  117. peritheos-0.7.0/docs/literature-reproductions/litcurate-source-exhaustion-citation-audit.md +78 -0
  118. peritheos-0.7.0/docs/literature-reproductions/liu-2010-mgsio3-post-perovskite.md +19 -0
  119. peritheos-0.7.0/docs/literature-reproductions/mao-1991-bridgmanites.md +31 -0
  120. peritheos-0.7.0/docs/literature-reproductions/mao-2011-dolomite-iii.md +103 -0
  121. peritheos-0.7.0/docs/literature-reproductions/mao-2011-ferropericlase.md +118 -0
  122. peritheos-0.7.0/docs/literature-reproductions/marcondes-2020-ferropericlase.md +34 -0
  123. peritheos-0.7.0/docs/literature-reproductions/martin-2007-cairo3.md +13 -0
  124. peritheos-0.7.0/docs/literature-reproductions/matsui-2012-ferropericlase.md +54 -0
  125. peritheos-0.7.0/docs/literature-reproductions/mccarthy-harrison-1994-mgo.md +19 -0
  126. peritheos-0.7.0/docs/literature-reproductions/metsue-2012-bridgmanite.md +73 -0
  127. peritheos-0.7.0/docs/literature-reproductions/mgo-oxide-litcurate-exhaustion.md +346 -0
  128. peritheos-0.7.0/docs/literature-reproductions/mgsio3-source-exhaustion.md +101 -0
  129. peritheos-0.7.0/docs/literature-reproductions/miyajima-2025-quenched-davemaoite.md +33 -0
  130. peritheos-0.7.0/docs/literature-reproductions/mookherjee-2015-365a-phase.md +113 -0
  131. peritheos-0.7.0/docs/literature-reproductions/mookherjee-2019-phase-egg-hp.md +16 -0
  132. peritheos-0.7.0/docs/literature-reproductions/myhill-2022-anisotropic-eos.md +11 -0
  133. peritheos-0.7.0/docs/literature-reproductions/oganov-wang-chizmeshya-karki-eos-audit.md +224 -0
  134. peritheos-0.7.0/docs/literature-reproductions/redfern-1993-magnesite.md +26 -0
  135. peritheos-0.7.0/docs/literature-reproductions/sakai-2025-nine-materials.md +98 -0
  136. peritheos-0.7.0/docs/literature-reproductions/satta-2025-delta-alooh-elasticity.md +16 -0
  137. peritheos-0.7.0/docs/literature-reproductions/sherman-1993-stishovite.md +117 -0
  138. peritheos-0.7.0/docs/literature-reproductions/shieh-2006-natural-pyroxene-pv-ppv.md +108 -0
  139. peritheos-0.7.0/docs/literature-reproductions/shukla-2016-ferric-al-bridgmanite.md +35 -0
  140. peritheos-0.7.0/docs/literature-reproductions/sinogeikin-2004-mgsio3-elasticity.md +16 -0
  141. peritheos-0.7.0/docs/literature-reproductions/solomatova-2016-ferropericlase.md +52 -0
  142. peritheos-0.7.0/docs/literature-reproductions/speziale-2007-ferropericlase.md +82 -0
  143. peritheos-0.7.0/docs/literature-reproductions/sun-2010-50-solids-morse-eos.md +80 -0
  144. peritheos-0.7.0/docs/literature-reproductions/taniguchi-1995-casilicates.md +16 -0
  145. peritheos-0.7.0/docs/literature-reproductions/tranche-b-mineral-eos-audit.md +226 -0
  146. peritheos-0.7.0/docs/literature-reproductions/tranche-c-zero-yield-audits.md +220 -0
  147. peritheos-0.7.0/docs/literature-reproductions/tsuchiya-2004-mgsio3-phase-transition.md +10 -0
  148. peritheos-0.7.0/docs/literature-reproductions/tsuchiya-2004-post-perovskite-elasticity.md +10 -0
  149. peritheos-0.7.0/docs/literature-reproductions/vanpeteghem-2002-delta-alooh.md +30 -0
  150. peritheos-0.7.0/docs/literature-reproductions/wu-2013-fe-bridgmanite.md +24 -0
  151. peritheos-0.7.0/docs/literature-reproductions/wu-2016-feal-phase-d.md +15 -0
  152. peritheos-0.7.0/docs/literature-reproductions/xiao-2013-srsio3.md +29 -0
  153. peritheos-0.7.0/docs/literature-reproductions/xu-2020-al-bearing-phase-d.md +120 -0
  154. peritheos-0.7.0/docs/literature-reproductions/xu-2024-al-bearing-superhydrous-phase-b.md +211 -0
  155. peritheos-0.7.0/docs/literature-reproductions/yang-2015-ferropericlase.md +27 -0
  156. peritheos-0.7.0/docs/literature-reproductions/zhang-2025-hcp-iron.md +141 -0
  157. peritheos-0.7.0/docs/literature-reproductions/zhang-bukowinski-1991-oxides.md +17 -0
  158. peritheos-0.7.0/docs/literature-reproductions/zhang-weidner-1999-aluminous-perovskite.md +100 -0
  159. peritheos-0.7.0/docs/literature-reproductions/zhang-wentzcovitch-2022-anharmonic-pv-ppv.md +44 -0
  160. peritheos-0.7.0/docs/literature-reproductions/zhu-2025-pressure-standards.md +31 -0
  161. peritheos-0.7.0/docs/literature-reproductions.md +2085 -0
  162. peritheos-0.7.0/docs/material-eos-candidates.md +513 -0
  163. peritheos-0.7.0/docs/mgo-jacobsen-2008.md +122 -0
  164. peritheos-0.7.0/docs/models.md +138 -0
  165. peritheos-0.7.0/docs/notebooks/aragonite-eos-fitting.ipynb +661 -0
  166. peritheos-0.7.0/docs/notebooks/birch-murnaghan-f-f-diagnostic.ipynb +251 -0
  167. peritheos-0.7.0/docs/notebooks/compare-gold-pressure-scales.ipynb +322 -0
  168. peritheos-0.7.0/docs/notebooks/compare-room-temperature-eos.ipynb +374 -0
  169. peritheos-0.7.0/docs/notebooks/dac-temperature-sensitivity.ipynb +399 -0
  170. peritheos-0.7.0/docs/notebooks/data/martinez-1996-aragonite-table3.csv +65 -0
  171. peritheos-0.7.0/docs/notebooks/eosmat-roundtrip.ipynb +326 -0
  172. peritheos-0.7.0/docs/notebooks/exploring-material-library.ipynb +280 -0
  173. peritheos-0.7.0/docs/notebooks/fit-to-prediction-uncertainty.ipynb +364 -0
  174. peritheos-0.7.0/docs/notebooks/normalize-mixed-pressure-scales.ipynb +506 -0
  175. peritheos-0.7.0/docs/notebooks/pressure-calibration-quickstart.ipynb +346 -0
  176. peritheos-0.7.0/docs/notebooks/thermal-eos-state-surfaces.ipynb +323 -0
  177. peritheos-0.7.0/docs/paper-investigation-ledger.md +1298 -0
  178. peritheos-0.7.0/docs/pressure-scale-normalization.md +475 -0
  179. peritheos-0.7.0/docs/pressure-standards.md +638 -0
  180. peritheos-0.7.0/docs/primary-eos-refits.md +3505 -0
  181. peritheos-0.7.0/docs/qin-2023-naalsio4-eos.md +124 -0
  182. peritheos-0.7.0/docs/references.md +434 -0
  183. {peritheos-0.5.0 → peritheos-0.7.0}/docs/requirements.txt +2 -0
  184. peritheos-0.7.0/docs/research/hugoniot-candidate-catalog.md +165 -0
  185. peritheos-0.7.0/docs/ross-angel-1999-perovskites.md +90 -0
  186. peritheos-0.7.0/docs/rust-api.md +181 -0
  187. peritheos-0.7.0/docs/rust-completion-plan.md +48 -0
  188. peritheos-0.7.0/docs/rust-migration.md +287 -0
  189. peritheos-0.7.0/docs/scirs2-feasibility.md +193 -0
  190. peritheos-0.7.0/docs/sokolova-dorogokupets-equation-audit.md +224 -0
  191. peritheos-0.7.0/docs/source-audits.md +114 -0
  192. {peritheos-0.5.0 → peritheos-0.7.0}/docs/thermoelastic-properties.md +1 -1
  193. {peritheos-0.5.0 → peritheos-0.7.0}/docs/uncertainty.md +8 -2
  194. peritheos-0.7.0/docs/units.md +119 -0
  195. peritheos-0.7.0/docs/validation.md +401 -0
  196. peritheos-0.7.0/mkdocs.yml +100 -0
  197. peritheos-0.7.0/peritheos/__init__.py +176 -0
  198. peritheos-0.7.0/peritheos/catalog.py +233 -0
  199. peritheos-0.7.0/peritheos/catalog_compat.py +97 -0
  200. peritheos-0.7.0/peritheos/catalog_search.py +472 -0
  201. peritheos-0.7.0/peritheos/data/__init__.py +1 -0
  202. peritheos-0.7.0/peritheos/data/datasets/aip-handbook-table4d12-cu.csv +26 -0
  203. peritheos-0.7.0/peritheos/data/datasets/akimotoite-reynard-1996-table1-compression.csv +17 -0
  204. peritheos-0.7.0/peritheos/data/datasets/akimotoite-siersch-2021-table2-compression.csv +55 -0
  205. peritheos-0.7.0/peritheos/data/datasets/al-bearing-phase-d-xu-2020-earthchem-pvt.csv +29 -0
  206. peritheos-0.7.0/peritheos/data/datasets/almandine-milani-2015-table-a3-compression.csv +15 -0
  207. peritheos-0.7.0/peritheos/data/datasets/alumina-dewaele-2013-table1-compression.csv +54 -0
  208. peritheos-0.7.0/peritheos/data/datasets/alumina-rh2o3-ii-shi-2022-table-s2-pvt.csv +76 -0
  209. peritheos-0.7.0/peritheos/data/datasets/alumina-shi-2022-table-s1-pvt.csv +76 -0
  210. peritheos-0.7.0/peritheos/data/datasets/aluminum-dewaele-2004-table1-compression.csv +41 -0
  211. peritheos-0.7.0/peritheos/data/datasets/aragonite-martinez-1996-table3-pvt.csv +65 -0
  212. peritheos-0.7.0/peritheos/data/datasets/argon-hcp-wittlinger-1997-figure3-digitized.csv +10 -0
  213. peritheos-0.7.0/peritheos/data/datasets/boron-phosphide-le-godec-2014-figure2-digitized.csv +18 -0
  214. peritheos-0.7.0/peritheos/data/datasets/bridgmanite-chantel-2012-table1-density-velocity.csv +12 -0
  215. peritheos-0.7.0/peritheos/data/datasets/bridgmanite-criniti-2021-table1-density.csv +15 -0
  216. peritheos-0.7.0/peritheos/data/datasets/bridgmanite-fiquet-2000-table1-298k-pv.csv +26 -0
  217. peritheos-0.7.0/peritheos/data/datasets/bridgmanite-katsura-2009-corrected-table1-pvt.csv +90 -0
  218. peritheos-0.7.0/peritheos/data/datasets/bridgmanite-saxena-1999-table1-pvt.csv +38 -0
  219. peritheos-0.7.0/peritheos/data/datasets/bridgmanite-tange-2012-table1-pvt.csv +43 -0
  220. peritheos-0.7.0/peritheos/data/datasets/bridgmanite-vanpeteghem-2006-table1-compression.csv +13 -0
  221. peritheos-0.7.0/peritheos/data/datasets/bridgmanite-wolf-2015-table2-pvt.csv +43 -0
  222. peritheos-0.7.0/peritheos/data/datasets/ca-perovskite-kawai-2014-table1-isochors.csv +61 -0
  223. peritheos-0.7.0/peritheos/data/datasets/ca-perovskite-mao-1989-table1-compression.csv +47 -0
  224. peritheos-0.7.0/peritheos/data/datasets/ca-perovskite-shim-2000-jgr-table1-dac-pvt.csv +35 -0
  225. peritheos-0.7.0/peritheos/data/datasets/ca-perovskite-shim-2000-table1-pv.csv +11 -0
  226. peritheos-0.7.0/peritheos/data/datasets/ca-perovskite-wang-1996-table1-room-temperature.csv +15 -0
  227. peritheos-0.7.0/peritheos/data/datasets/ca0988mg0918fe0078mn0016c2o6-mao-2011-figure3-dolomite-iii-digitized.csv +26 -0
  228. peritheos-0.7.0/peritheos/data/datasets/ca0988mg0918fe0078mn0016c2o6-mao-2011-figure3-fe-dolomite-digitized.csv +8 -0
  229. peritheos-0.7.0/peritheos/data/datasets/cairo3-martin-2007-table1a-compression.csv +16 -0
  230. peritheos-0.7.0/peritheos/data/datasets/cairo3-perovskite-boffa-ballaran-2007-table1-compression.csv +12 -0
  231. peritheos-0.7.0/peritheos/data/datasets/cairo3-post-perovskite-boffa-ballaran-2007-table1-compression.csv +12 -0
  232. peritheos-0.7.0/peritheos/data/datasets/calcite-redfern-1999-table1-compression.csv +15 -0
  233. peritheos-0.7.0/peritheos/data/datasets/calcium-carbonate-post-aragonite-lv-2020-supplementary-table-pvt.csv +132 -0
  234. peritheos-0.7.0/peritheos/data/datasets/calcium-germanate-perovskite-ross-1999-table1-compression.csv +10 -0
  235. peritheos-0.7.0/peritheos/data/datasets/calcium-titanate-perovskite-ross-1999-table1-compression.csv +12 -0
  236. peritheos-0.7.0/peritheos/data/datasets/cao-richet-1988-table1-compression.csv +20 -0
  237. peritheos-0.7.0/peritheos/data/datasets/cementite-scott-2001-figure3-digitized.csv +22 -0
  238. peritheos-0.7.0/peritheos/data/datasets/cerium-dioxide-gerward-2005-figure3a-digitized.csv +22 -0
  239. peritheos-0.7.0/peritheos/data/datasets/chidester_2021_kcl_pvt.csv +156 -0
  240. peritheos-0.7.0/peritheos/data/datasets/chromium-anzellini-2022-table2-compression.csv +120 -0
  241. peritheos-0.7.0/peritheos/data/datasets/cobalt-dewaele-2008-table2-compression.csv +26 -0
  242. peritheos-0.7.0/peritheos/data/datasets/cobalt-hcp-fujihisa-1996-figure3-digitized.csv +9 -0
  243. peritheos-0.7.0/peritheos/data/datasets/coesite-iv-bykova-2018-table10-calc-pv.csv +4 -0
  244. peritheos-0.7.0/peritheos/data/datasets/coesite-levien-1981-table7-pv.csv +10 -0
  245. peritheos-0.7.0/peritheos/data/datasets/coesite-v-bykova-2018-table10-calc-pv.csv +2 -0
  246. peritheos-0.7.0/peritheos/data/datasets/coo-clendenen-1966-table3-smoothed-compression.csv +10 -0
  247. peritheos-0.7.0/peritheos/data/datasets/copper-dewaele-2004-table1-compression.csv +43 -0
  248. peritheos-0.7.0/peritheos/data/datasets/copper-sakai-2025-table-s9-rs-eos-grid.csv +27 -0
  249. peritheos-0.7.0/peritheos/data/datasets/cscl-campbell-1994-table1-compression.csv +14 -0
  250. peritheos-0.7.0/peritheos/data/datasets/cscl-yagi-1978-table1-compression.csv +10 -0
  251. peritheos-0.7.0/peritheos/data/datasets/cubic-boron-nitride-datchi-2007-table4-pvt.csv +67 -0
  252. peritheos-0.7.0/peritheos/data/datasets/delta-alooh-vanpeteghem-2002-table1-pv.csv +10 -0
  253. peritheos-0.7.0/peritheos/data/datasets/deltacodesdft-metal-eos-parameters.csv +51 -0
  254. peritheos-0.7.0/peritheos/data/datasets/deltacodesdft-metal-eos-source.json +2116 -0
  255. peritheos-0.7.0/peritheos/data/datasets/deltaproject-experimental-reference-parameters.csv +43 -0
  256. peritheos-0.7.0/peritheos/data/datasets/deltaproject-experimental-reference-source.json +250 -0
  257. peritheos-0.7.0/peritheos/data/datasets/deltaproject-knittle-1995-b0prime-reconstruction.csv +33 -0
  258. peritheos-0.7.0/peritheos/data/datasets/diamond-dewaele-2008-table1-pvt.csv +58 -0
  259. peritheos-0.7.0/peritheos/data/datasets/dorfman-2012-tables-s1-s6-cocompression.LICENSE.md +16 -0
  260. peritheos-0.7.0/peritheos/data/datasets/dorfman-2012-tables-s1-s6-cocompression.csv +369 -0
  261. peritheos-0.7.0/peritheos/data/datasets/epsilon-feooh-gleason-2008-deposit-table2-pvt.csv +50 -0
  262. peritheos-0.7.0/peritheos/data/datasets/epsilon-feooh-suzuki-2016-table1-pvt.csv +34 -0
  263. peritheos-0.7.0/peritheos/data/datasets/epsilon-feooh-thompson-2017-supplement-table-s1.csv +18 -0
  264. peritheos-0.7.0/peritheos/data/datasets/experimental-metal-eos-batch-200.csv +201 -0
  265. peritheos-0.7.0/peritheos/data/datasets/fa50-bridgmanite-koemets-2023-supplement-table3.csv +19 -0
  266. peritheos-0.7.0/peritheos/data/datasets/fa50-bridgmanite-zhu-2020-zenodo-latticeparameters.csv +45 -0
  267. peritheos-0.7.0/peritheos/data/datasets/fayalite-bejina-2021-table1-pvt-elastic.csv +61 -0
  268. peritheos-0.7.0/peritheos/data/datasets/fe-bearing-al-phase-d-criniti-2023-table1-compression.csv +27 -0
  269. peritheos-0.7.0/peritheos/data/datasets/fe3s-fei-2000-figure2-digitized.csv +14 -0
  270. peritheos-0.7.0/peritheos/data/datasets/feh2-pepin-2014-figure3-digitized.csv +15 -0
  271. peritheos-0.7.0/peritheos/data/datasets/feh3-pepin-2014-figure3-digitized.csv +16 -0
  272. peritheos-0.7.0/peritheos/data/datasets/feo-fischer-2011-table-s1-pvt.csv +53 -0
  273. peritheos-0.7.0/peritheos/data/datasets/ferropericlase-fe27-jacobsen-2002-table5-compression.csv +11 -0
  274. peritheos-0.7.0/peritheos/data/datasets/fes-ono-2006-table1-compression.csv +9 -0
  275. peritheos-0.7.0/peritheos/data/datasets/fesio3-liquid-sun-2019-table1-pvt.csv +47 -0
  276. peritheos-0.7.0/peritheos/data/datasets/forsterite-finkelstein-2014-table2-compression.csv +26 -0
  277. peritheos-0.7.0/peritheos/data/datasets/goethite-gleason-2008-deposit-table1-pvt.csv +66 -0
  278. peritheos-0.7.0/peritheos/data/datasets/gold-dewaele-2004-table1-compression.csv +38 -0
  279. peritheos-0.7.0/peritheos/data/datasets/gold-fei-2007-figure1-digitized.csv +7 -0
  280. peritheos-0.7.0/peritheos/data/datasets/gold-fratanduono-2021-table-s3-compression.csv +120 -0
  281. peritheos-0.7.0/peritheos/data/datasets/gold-sakai-2025-table-s9-rs-eos-grid.csv +27 -0
  282. peritheos-0.7.0/peritheos/data/datasets/gold-takemura-2008-table3-compression.csv +87 -0
  283. peritheos-0.7.0/peritheos/data/datasets/graphite-hanfland-1989-figure2-digitized.csv +11 -0
  284. peritheos-0.7.0/peritheos/data/datasets/hematite-schouwink-2011-table1-compression.csv +11 -0
  285. peritheos-0.7.0/peritheos/data/datasets/hexagonal-boron-nitride-muhammad-2024-figure5c-digitized.csv +37 -0
  286. peritheos-0.7.0/peritheos/data/datasets/ice-vi-bezacier-2014-table1-pvt.csv +46 -0
  287. peritheos-0.7.0/peritheos/data/datasets/ice-vii-bezacier-2014-table1-pvt.csv +93 -0
  288. peritheos-0.7.0/peritheos/data/datasets/ice-vii-frank-2004-table1-pvt.csv +72 -0
  289. peritheos-0.7.0/peritheos/data/datasets/ice-viii-besson-1994-table2-structure.csv +9 -0
  290. peritheos-0.7.0/peritheos/data/datasets/iridium-anzellini-2025-tables-s1-s3-pvt.csv +123 -0
  291. peritheos-0.7.0/peritheos/data/datasets/iron-carbide-fe7c3-prescher-2015-table-s4-compression.csv +28 -0
  292. peritheos-0.7.0/peritheos/data/datasets/iron-dewaele-2006-epaps-compression.csv +64 -0
  293. peritheos-0.7.0/peritheos/data/datasets/iron-mao-1990-table1-compression.csv +33 -0
  294. peritheos-0.7.0/peritheos/data/datasets/iron-sakai-2025-table-s9-rs-eos-grid.csv +27 -0
  295. peritheos-0.7.0/peritheos/data/datasets/iron-zhang-2025-tables-s1-s3-s4-pvt.csv +1314 -0
  296. peritheos-0.7.0/peritheos/data/datasets/jacobsen-2005-table1-compression.csv +17 -0
  297. peritheos-0.7.0/peritheos/data/datasets/jadeite-zhao-1997-table1-pvt.csv +32 -0
  298. peritheos-0.7.0/peritheos/data/datasets/kbr-b1-dewaele-2012-table2-compression.csv +31 -0
  299. peritheos-0.7.0/peritheos/data/datasets/kbr-b2-dewaele-2012-table1-compression.csv +122 -0
  300. peritheos-0.7.0/peritheos/data/datasets/kcl-b1-dewaele-2012-table2-compression.csv +31 -0
  301. peritheos-0.7.0/peritheos/data/datasets/kcl-campbell-1991-table1-compression.csv +15 -0
  302. peritheos-0.7.0/peritheos/data/datasets/kcl-dewaele-2012-table1-compression.csv +124 -0
  303. peritheos-0.7.0/peritheos/data/datasets/kcl-tateno-2019-table-s1-pvt.csv +40 -0
  304. peritheos-0.7.0/peritheos/data/datasets/kcl-walker-2002-table2-pvt.csv +40 -0
  305. peritheos-0.7.0/peritheos/data/datasets/lead-dewaele-2019-table2-compression.csv +18 -0
  306. peritheos-0.7.0/peritheos/data/datasets/lead-hcp-kuznetsov-2002-figure3-digitized.csv +22 -0
  307. peritheos-0.7.0/peritheos/data/datasets/lead-sulfide-knorr-2003-figure2-digitized.csv +34 -0
  308. peritheos-0.7.0/peritheos/data/datasets/lif-dewaele-2019-table4-pv.csv +61 -0
  309. peritheos-0.7.0/peritheos/data/datasets/lithium-hanfland-1999-table1-compression.csv +27 -0
  310. peritheos-0.7.0/peritheos/data/datasets/magnesiowustite-fe56-jacobsen-2002-table4-compression.csv +12 -0
  311. peritheos-0.7.0/peritheos/data/datasets/magnesiowustite-fe75-jacobsen-2002-table5-compression.csv +8 -0
  312. peritheos-0.7.0/peritheos/data/datasets/magnesiowustite-mw78-finkelstein-2017-table2-compression.csv +31 -0
  313. peritheos-0.7.0/peritheos/data/datasets/magnesite-ross-1997-table1-pv.csv +20 -0
  314. peritheos-0.7.0/peritheos/data/datasets/magnesite-vocadlo-1999-table1-energy-volume.csv +10 -0
  315. peritheos-0.7.0/peritheos/data/datasets/magnesite-yu-2024-table-s1-pvt.csv +75 -0
  316. peritheos-0.7.0/peritheos/data/datasets/magnesium-stinton-2014-figure1-bcc-digitized.csv +58 -0
  317. peritheos-0.7.0/peritheos/data/datasets/magnesium-stinton-2014-figure1-hcp-digitized.csv +40 -0
  318. peritheos-0.7.0/peritheos/data/datasets/magnetite-mao-1974-table3-compression.csv +14 -0
  319. peritheos-0.7.0/peritheos/data/datasets/majorite-yagi-1992-table1-compression.csv +11 -0
  320. peritheos-0.7.0/peritheos/data/datasets/manganese-alpha-magad-weiss-2021-figure2-digitized.csv +20 -0
  321. peritheos-0.7.0/peritheos/data/datasets/mg0490fe0483ti0027o-solomatova-2016-table1-pv.csv +46 -0
  322. peritheos-0.7.0/peritheos/data/datasets/mg0490fe0483ti0027o-solomatova-2016-table3-crossover-grid.csv +37 -0
  323. peritheos-0.7.0/peritheos/data/datasets/mg075fe025o-mao-2011-figure1-300k-digitized.csv +43 -0
  324. peritheos-0.7.0/peritheos/data/datasets/mg075fe025o-matsui-2012-table2-pvt.csv +40 -0
  325. peritheos-0.7.0/peritheos/data/datasets/mg080fe020o-speziale-2007-table1-pv.csv +31 -0
  326. peritheos-0.7.0/peritheos/data/datasets/mg083fe017o-matsui-2012-table1-pvt.csv +35 -0
  327. peritheos-0.7.0/peritheos/data/datasets/mg087fe013sio3-bridgmanite-wolf-2015-table1-pvt.csv +154 -0
  328. peritheos-0.7.0/peritheos/data/datasets/mg088fe010al014si090o3-bridgmanite-fu-2023-table-s2-pv.csv +44 -0
  329. peritheos-0.7.0/peritheos/data/datasets/mg088fe010al014si090o3-bridgmanite-fu-2024-table-s1-cif-pv.csv +23 -0
  330. peritheos-0.7.0/peritheos/data/datasets/mg090fe009al0005ca0005sio3-shieh-2006-figure2-ppv-digitized.csv +14 -0
  331. peritheos-0.7.0/peritheos/data/datasets/mg090fe009al0005ca0005sio3-shieh-2006-figure2-pv-digitized.csv +13 -0
  332. peritheos-0.7.0/peritheos/data/datasets/mg092fe008sio3-gong-2004-table1-shock.csv +14 -0
  333. peritheos-0.7.0/peritheos/data/datasets/mg095al010si095o3-bridgmanite-daniel-2004-table1-compression.csv +43 -0
  334. peritheos-0.7.0/peritheos/data/datasets/mg09al02si09o3-bridgmanite-kubo-2000-table1-compression.csv +11 -0
  335. peritheos-0.7.0/peritheos/data/datasets/mg09fe01sio3-bridgmanite-mao-2015-table-s1-pv.csv +98 -0
  336. peritheos-0.7.0/peritheos/data/datasets/mgal2o4-cafe2o4-funamori-1998-text-pv.csv +3 -0
  337. peritheos-0.7.0/peritheos/data/datasets/mgal2o4-cati2o4-funamori-1998-text-pv.csv +3 -0
  338. peritheos-0.7.0/peritheos/data/datasets/mgfe-perovskite-knittle-1987-table2-compression.csv +6 -0
  339. peritheos-0.7.0/peritheos/data/datasets/mgfe60o-richet-1989-table2-compression.csv +18 -0
  340. peritheos-0.7.0/peritheos/data/datasets/mgfe94o-dobrosavljevic-2019-table-s1-compression.csv +29 -0
  341. peritheos-0.7.0/peritheos/data/datasets/mggeo3-post-perovskite-hirose-2005-table3-pv.csv +10 -0
  342. peritheos-0.7.0/peritheos/data/datasets/mggeo3-post-perovskite-kubo-2006-table-s1-pv.csv +26 -0
  343. peritheos-0.7.0/peritheos/data/datasets/mgo-belmonte-2017-table4-300k.csv +9 -0
  344. peritheos-0.7.0/peritheos/data/datasets/mgo-dewaele-2000-table2-pvt.csv +62 -0
  345. peritheos-0.7.0/peritheos/data/datasets/mgo-duffy-1995-figure2-digitized.csv +18 -0
  346. peritheos-0.7.0/peritheos/data/datasets/mgo-jacobsen-2008-table1-helium-compression.csv +53 -0
  347. peritheos-0.7.0/peritheos/data/datasets/mgo-jacobsen-2008-table2-kcl-compression.csv +27 -0
  348. peritheos-0.7.0/peritheos/data/datasets/mgo-li-2006-table1-elasticity.csv +19 -0
  349. peritheos-0.7.0/peritheos/data/datasets/mgo-luo-2023-tables2-3-pvt.csv +577 -0
  350. peritheos-0.7.0/peritheos/data/datasets/mgo-oganov-2003-table3-pv.csv +9 -0
  351. peritheos-0.7.0/peritheos/data/datasets/mgo-sakai-2025-table-s9-rs-eos-grid.csv +27 -0
  352. peritheos-0.7.0/peritheos/data/datasets/mgo-speziale-2001-table1-compression.csv +33 -0
  353. peritheos-0.7.0/peritheos/data/datasets/mgsio3-post-perovskite-mosenfelder-2009-table2-shock.csv +7 -0
  354. peritheos-0.7.0/peritheos/data/datasets/mgsio3-post-perovskite-ono-2006-table2-compression.csv +7 -0
  355. peritheos-0.7.0/peritheos/data/datasets/mgsio3-post-perovskite-sakai-2016-table-s1-pvt.csv +36 -0
  356. peritheos-0.7.0/peritheos/data/datasets/mgsio3-post-perovskite-sakai-2016-table-s5-model-grid.csv +531 -0
  357. peritheos-0.7.0/peritheos/data/datasets/mgsioh6-365a-mookherjee-2015-supplement-table1-pv.csv +96 -0
  358. peritheos-0.7.0/peritheos/data/datasets/molybdenum-carbide-haines-2001-figure2-digitized.csv +17 -0
  359. peritheos-0.7.0/peritheos/data/datasets/molybdenum-dewaele-2008-table2-compression.csv +30 -0
  360. peritheos-0.7.0/peritheos/data/datasets/molybdenum-sakai-2025-table-s9-rs-eos-grid.csv +27 -0
  361. peritheos-0.7.0/peritheos/data/datasets/na088al099fe013si094o4-qin-2023-table-s4-pv.csv +11 -0
  362. peritheos-0.7.0/peritheos/data/datasets/na093al102si100o4-qin-2023-table-s3-pv.csv +23 -0
  363. peritheos-0.7.0/peritheos/data/datasets/naalsio4-dubrovinsky-2002-figure2-digitized.csv +20 -0
  364. peritheos-0.7.0/peritheos/data/datasets/nacl-b2-heinz-1984-table1-compression.csv +15 -0
  365. peritheos-0.7.0/peritheos/data/datasets/nacl_b2-sakai-2025-table-s9-rs-eos-grid.csv +27 -0
  366. peritheos-0.7.0/peritheos/data/datasets/namg2al5sio12-cf-kawai-2012-figure2d-vector-digitized.csv +9 -0
  367. peritheos-0.7.0/peritheos/data/datasets/namg2al5sio12-nal-kawai-2012-figure2c-vector-digitized.csv +7 -0
  368. peritheos-0.7.0/peritheos/data/datasets/neon-fei-2007-figure5-digitized.csv +14 -0
  369. peritheos-0.7.0/peritheos/data/datasets/neon-hemley-1989-table1-compression.csv +22 -0
  370. peritheos-0.7.0/peritheos/data/datasets/nickel-dewaele-2008-table2-compression.csv +43 -0
  371. peritheos-0.7.0/peritheos/data/datasets/nickel-oxide-noguchi-1999-table1-shock.csv +9 -0
  372. peritheos-0.7.0/peritheos/data/datasets/niobium-takemura-2006-table1-compression.csv +44 -0
  373. peritheos-0.7.0/peritheos/data/datasets/nis-campbell-1993-table1-compression.csv +17 -0
  374. peritheos-0.7.0/peritheos/data/datasets/orthoenstatite-angel-jackson-2002-figure2b-digitized.csv +16 -0
  375. peritheos-0.7.0/peritheos/data/datasets/osmium-takemura-2004-table1-compression.csv +29 -0
  376. peritheos-0.7.0/peritheos/data/datasets/palladium-baty-2024-table-s1-compression.csv +79 -0
  377. peritheos-0.7.0/peritheos/data/datasets/palladium-fedotenko-2020-table1-compression.csv +16 -0
  378. peritheos-0.7.0/peritheos/data/datasets/palladium-frost-2023-tables-i-iii-compression.csv +94 -0
  379. peritheos-0.7.0/peritheos/data/datasets/phase-a-crichton-2002-table1-compression.csv +13 -0
  380. peritheos-0.7.0/peritheos/data/datasets/phase-d-shieh-2000-table2-pv.csv +12 -0
  381. peritheos-0.7.0/peritheos/data/datasets/phase-h-tsuchiya-mookherjee-2015-table1-pv.csv +13 -0
  382. peritheos-0.7.0/peritheos/data/datasets/platinum-dewaele-2004-table1-compression.csv +37 -0
  383. peritheos-0.7.0/peritheos/data/datasets/platinum-holmes-1989-table3-shock.csv +8 -0
  384. peritheos-0.7.0/peritheos/data/datasets/platinum-sakai-2025-table-s9-rs-eos-grid.csv +27 -0
  385. peritheos-0.7.0/peritheos/data/datasets/praseodymium-dioxide-gerward-2005-figure3b-digitized.csv +19 -0
  386. peritheos-0.7.0/peritheos/data/datasets/pyrope-milani-2015-table-a2-compression.csv +13 -0
  387. peritheos-0.7.0/peritheos/data/datasets/quartz-angel-1997-table1-compression.csv +24 -0
  388. peritheos-0.7.0/peritheos/data/datasets/rbcl-campbell-1994-table1-compression.csv +25 -0
  389. peritheos-0.7.0/peritheos/data/datasets/rhenium-anzellini-2014-table3-compression.csv +60 -0
  390. peritheos-0.7.0/peritheos/data/datasets/rhenium-sakai-2025-table-s9-rs-eos-grid.csv +27 -0
  391. peritheos-0.7.0/peritheos/data/datasets/rhodium-rodrigo-ramon-2024-table2-compression.csv +52 -0
  392. peritheos-0.7.0/peritheos/data/datasets/ringwoodite-meng-1994-table1-pvt.csv +33 -0
  393. peritheos-0.7.0/peritheos/data/datasets/ruthenium-anzellini-2019-table1-compression.csv +117 -0
  394. peritheos-0.7.0/peritheos/data/datasets/rutile-hazen-finger-1981-table1-sno2-geo2-compression.csv +9 -0
  395. peritheos-0.7.0/peritheos/data/datasets/seifertite-sun-2019-dataset-s2-pvt.csv +21 -0
  396. peritheos-0.7.0/peritheos/data/datasets/shen-smith-2026-table-s1-volumes.csv +3512 -0
  397. peritheos-0.7.0/peritheos/data/datasets/silicon-anzellini-2019-tables1-4-6-7-compression.csv +142 -0
  398. peritheos-0.7.0/peritheos/data/datasets/silicon-carbide-b1-miozzi-2018-data-set-s1-eos.csv +349 -0
  399. peritheos-0.7.0/peritheos/data/datasets/silicon-carbide-b3-miozzi-2018-data-set-s1-eos.csv +105 -0
  400. peritheos-0.7.0/peritheos/data/datasets/silver-dewaele-2008-table2-compression.csv +35 -0
  401. peritheos-0.7.0/peritheos/data/datasets/sio2-cacl2-sun-2019-dataset-s1-pvt.csv +49 -0
  402. peritheos-0.7.0/peritheos/data/datasets/sno2-ono-2000-table2-pvt.csv +41 -0
  403. peritheos-0.7.0/peritheos/data/datasets/sro-b2-sato-1981-table1-compression.csv +14 -0
  404. peritheos-0.7.0/peritheos/data/datasets/sro-liu-1973-table2-compression.csv +12 -0
  405. peritheos-0.7.0/peritheos/data/datasets/srsio3-xiao-2013-table1-pv.csv +18 -0
  406. peritheos-0.7.0/peritheos/data/datasets/stishovite-andrault-2003-tables1-2-compression.csv +25 -0
  407. peritheos-0.7.0/peritheos/data/datasets/stishovite-wang-2012-table1-pvt.csv +57 -0
  408. peritheos-0.7.0/peritheos/data/datasets/sun-2010-table2-morse-eos-parameters.csv +51 -0
  409. peritheos-0.7.0/peritheos/data/datasets/tantalum-cynn-1999-table2-compression.csv +21 -0
  410. peritheos-0.7.0/peritheos/data/datasets/tantalum-dewaele-2004-table1-compression.csv +37 -0
  411. peritheos-0.7.0/peritheos/data/datasets/titanium-alpha-dewaele-2015-table4-compression.csv +5 -0
  412. peritheos-0.7.0/peritheos/data/datasets/titanium-omega-dewaele-2015-table4-compression.csv +42 -0
  413. peritheos-0.7.0/peritheos/data/datasets/tungsten-dewaele-2004-table1-compression.csv +43 -0
  414. peritheos-0.7.0/peritheos/data/datasets/tungsten-sakai-2025-table-s9-rs-eos-grid.csv +27 -0
  415. peritheos-0.7.0/peritheos/data/datasets/wadsleyite-katsura-2009-table1-pvt.csv +86 -0
  416. peritheos-0.7.0/peritheos/data/datasets/zinc-dewaele-2008-table2-compression.csv +44 -0
  417. peritheos-0.7.0/peritheos/data/datasets/zinc-oxide-rocksalt-hanna-2011-figure4-bulk-digitized.csv +21 -0
  418. peritheos-0.7.0/peritheos/data/datasets/zinc-oxide-wurtzite-hanna-2011-figure2-bulk-digitized.csv +18 -0
  419. peritheos-0.7.0/peritheos/data/datasets/zircon-hazen-1979-table1-compression.csv +12 -0
  420. peritheos-0.7.0/peritheos/data/datasets/zirconium-alpha-mchardy-2026-table-s6-compression.csv +67 -0
  421. peritheos-0.7.0/peritheos/data/datasets/zirconium-beta-mchardy-2026-table-s8-compression.csv +72 -0
  422. peritheos-0.7.0/peritheos/data/datasets/zirconium-omega-mchardy-2026-table-s7-compression.csv +42 -0
  423. peritheos-0.7.0/peritheos/data/eosmat-v3.schema.json +883 -0
  424. peritheos-0.7.0/peritheos/data/materials/README.md +157 -0
  425. peritheos-0.7.0/peritheos/data/materials/__init__.py +1 -0
  426. peritheos-0.7.0/peritheos/data/materials/ag_sun_2010_legacy.eosmat +951 -0
  427. peritheos-0.7.0/peritheos/data/materials/akimotoite.eosmat +1256 -0
  428. peritheos-0.7.0/peritheos/data/materials/al2o3_perovskite.eosmat +294 -0
  429. peritheos-0.7.0/peritheos/data/materials/al2o3_post_perovskite.eosmat +178 -0
  430. peritheos-0.7.0/peritheos/data/materials/al2o3_sun_2010_legacy.eosmat +267 -0
  431. peritheos-0.7.0/peritheos/data/materials/al_bearing_phase_d.eosmat +411 -0
  432. peritheos-0.7.0/peritheos/data/materials/al_sun_2010_legacy.eosmat +719 -0
  433. peritheos-0.7.0/peritheos/data/materials/almandine.eosmat +235 -0
  434. peritheos-0.7.0/peritheos/data/materials/alpha_quartz.eosmat +365 -0
  435. peritheos-0.7.0/peritheos/data/materials/alumina.eosmat +531 -0
  436. peritheos-0.7.0/peritheos/data/materials/alumina_rh2o3_ii.eosmat +310 -0
  437. peritheos-0.7.0/peritheos/data/materials/aluminum.eosmat +1231 -0
  438. peritheos-0.7.0/peritheos/data/materials/aragonite.eosmat +245 -0
  439. peritheos-0.7.0/peritheos/data/materials/argon_hcp.eosmat +254 -0
  440. peritheos-0.7.0/peritheos/data/materials/au_sun_2010_legacy.eosmat +951 -0
  441. peritheos-0.7.0/peritheos/data/materials/b4c.eosmat +1108 -0
  442. peritheos-0.7.0/peritheos/data/materials/barium_bcc.eosmat +374 -0
  443. peritheos-0.7.0/peritheos/data/materials/be_sun_2010_legacy.eosmat +719 -0
  444. peritheos-0.7.0/peritheos/data/materials/beryllium_hcp.eosmat +421 -0
  445. peritheos-0.7.0/peritheos/data/materials/bismuth_a7.eosmat +406 -0
  446. peritheos-0.7.0/peritheos/data/materials/boron_nitride.eosmat +453 -0
  447. peritheos-0.7.0/peritheos/data/materials/boron_nitride_hexagonal.eosmat +272 -0
  448. peritheos-0.7.0/peritheos/data/materials/boron_phosphide.eosmat +239 -0
  449. peritheos-0.7.0/peritheos/data/materials/breyite.eosmat +139 -0
  450. peritheos-0.7.0/peritheos/data/materials/bridgmanite.eosmat +4211 -0
  451. peritheos-0.7.0/peritheos/data/materials/ca0988mg0918fe0078mn0016c2o6_dolomite.eosmat +338 -0
  452. peritheos-0.7.0/peritheos/data/materials/ca0988mg0918fe0078mn0016c2o6_dolomite_iii.eosmat +534 -0
  453. peritheos-0.7.0/peritheos/data/materials/ca_perovskite.eosmat +4112 -0
  454. peritheos-0.7.0/peritheos/data/materials/ca_perovskite_tetragonal.eosmat +780 -0
  455. peritheos-0.7.0/peritheos/data/materials/ca_sun_2010_legacy.eosmat +719 -0
  456. peritheos-0.7.0/peritheos/data/materials/cadmium_hcp.eosmat +374 -0
  457. peritheos-0.7.0/peritheos/data/materials/cairo3_perovskite.eosmat +401 -0
  458. peritheos-0.7.0/peritheos/data/materials/cairo3_post_perovskite.eosmat +625 -0
  459. peritheos-0.7.0/peritheos/data/materials/calcite.eosmat +229 -0
  460. peritheos-0.7.0/peritheos/data/materials/calcium_carbonate_post_aragonite.eosmat +429 -0
  461. peritheos-0.7.0/peritheos/data/materials/calcium_fcc.eosmat +390 -0
  462. peritheos-0.7.0/peritheos/data/materials/calcium_germanate_perovskite.eosmat +373 -0
  463. peritheos-0.7.0/peritheos/data/materials/calcium_titanate_perovskite.eosmat +375 -0
  464. peritheos-0.7.0/peritheos/data/materials/cao.eosmat +223 -0
  465. peritheos-0.7.0/peritheos/data/materials/cao_b2.eosmat +227 -0
  466. peritheos-0.7.0/peritheos/data/materials/casio2o5_titanite.eosmat +140 -0
  467. peritheos-0.7.0/peritheos/data/materials/casio3_perovskite_i4mmm.eosmat +301 -0
  468. peritheos-0.7.0/peritheos/data/materials/casio3_perovskite_im3.eosmat +301 -0
  469. peritheos-0.7.0/peritheos/data/materials/casio3_perovskite_imma.eosmat +301 -0
  470. peritheos-0.7.0/peritheos/data/materials/casio3_perovskite_p42nmc.eosmat +301 -0
  471. peritheos-0.7.0/peritheos/data/materials/casio3_perovskite_p4mbm.eosmat +301 -0
  472. peritheos-0.7.0/peritheos/data/materials/casio3_perovskite_pnma.eosmat +301 -0
  473. peritheos-0.7.0/peritheos/data/materials/casio3_perovskite_r3c.eosmat +301 -0
  474. peritheos-0.7.0/peritheos/data/materials/casio3_perovskite_tetragonal.eosmat +174 -0
  475. peritheos-0.7.0/peritheos/data/materials/cd_sun_2010_legacy.eosmat +719 -0
  476. peritheos-0.7.0/peritheos/data/materials/cementite.eosmat +255 -0
  477. peritheos-0.7.0/peritheos/data/materials/cerium_dioxide.eosmat +252 -0
  478. peritheos-0.7.0/peritheos/data/materials/cesium_bcc.eosmat +374 -0
  479. peritheos-0.7.0/peritheos/data/materials/chromium.eosmat +525 -0
  480. peritheos-0.7.0/peritheos/data/materials/co_sun_2010_legacy.eosmat +719 -0
  481. peritheos-0.7.0/peritheos/data/materials/cobalt_hcp.eosmat +759 -0
  482. peritheos-0.7.0/peritheos/data/materials/coesite.eosmat +397 -0
  483. peritheos-0.7.0/peritheos/data/materials/coesite_iv.eosmat +276 -0
  484. peritheos-0.7.0/peritheos/data/materials/coesite_v.eosmat +275 -0
  485. peritheos-0.7.0/peritheos/data/materials/coo.eosmat +229 -0
  486. peritheos-0.7.0/peritheos/data/materials/copper.eosmat +1274 -0
  487. peritheos-0.7.0/peritheos/data/materials/cr_sun_2010_legacy.eosmat +719 -0
  488. peritheos-0.7.0/peritheos/data/materials/csbr_sun_2010_legacy.eosmat +267 -0
  489. peritheos-0.7.0/peritheos/data/materials/cscl.eosmat +290 -0
  490. peritheos-0.7.0/peritheos/data/materials/cu_sun_2010_legacy.eosmat +1289 -0
  491. peritheos-0.7.0/peritheos/data/materials/delta_alooh.eosmat +335 -0
  492. peritheos-0.7.0/peritheos/data/materials/diamond.eosmat +1237 -0
  493. peritheos-0.7.0/peritheos/data/materials/e_feooh.eosmat +592 -0
  494. peritheos-0.7.0/peritheos/data/materials/e_feooh_hc_low_spin.eosmat +410 -0
  495. peritheos-0.7.0/peritheos/data/materials/fayalite.eosmat +329 -0
  496. peritheos-0.7.0/peritheos/data/materials/fe.eosmat +678 -0
  497. peritheos-0.7.0/peritheos/data/materials/fe088sio3_bridgmanite.eosmat +149 -0
  498. peritheos-0.7.0/peritheos/data/materials/fe093o_rhombohedral.eosmat +407 -0
  499. peritheos-0.7.0/peritheos/data/materials/fe2o3.eosmat +292 -0
  500. peritheos-0.7.0/peritheos/data/materials/fe3o4.eosmat +243 -0
  501. peritheos-0.7.0/peritheos/data/materials/fe3s.eosmat +405 -0
  502. peritheos-0.7.0/peritheos/data/materials/fe_bearing_al_phase_d.eosmat +667 -0
  503. peritheos-0.7.0/peritheos/data/materials/feh2.eosmat +349 -0
  504. peritheos-0.7.0/peritheos/data/materials/feh3.eosmat +270 -0
  505. peritheos-0.7.0/peritheos/data/materials/feo.eosmat +874 -0
  506. peritheos-0.7.0/peritheos/data/materials/feo_b8_2.eosmat +293 -0
  507. peritheos-0.7.0/peritheos/data/materials/ferropericlase_fe27.eosmat +376 -0
  508. peritheos-0.7.0/peritheos/data/materials/fes.eosmat +243 -0
  509. peritheos-0.7.0/peritheos/data/materials/fesio3_bridgmanite.eosmat +294 -0
  510. peritheos-0.7.0/peritheos/data/materials/fesio3_liquid.eosmat +237 -0
  511. peritheos-0.7.0/peritheos/data/materials/fesio3_post_perovskite.eosmat +233 -0
  512. peritheos-0.7.0/peritheos/data/materials/fesio3_post_perovskite_ii.eosmat +255 -0
  513. peritheos-0.7.0/peritheos/data/materials/forsterite.eosmat +339 -0
  514. peritheos-0.7.0/peritheos/data/materials/gallium_alpha.eosmat +247 -0
  515. peritheos-0.7.0/peritheos/data/materials/geo2_rutile.eosmat +278 -0
  516. peritheos-0.7.0/peritheos/data/materials/goethite.eosmat +335 -0
  517. peritheos-0.7.0/peritheos/data/materials/gold.eosmat +2883 -0
  518. peritheos-0.7.0/peritheos/data/materials/graphite.eosmat +233 -0
  519. peritheos-0.7.0/peritheos/data/materials/hafnium_hcp.eosmat +364 -0
  520. peritheos-0.7.0/peritheos/data/materials/ice_vi.eosmat +302 -0
  521. peritheos-0.7.0/peritheos/data/materials/ice_vii.eosmat +464 -0
  522. peritheos-0.7.0/peritheos/data/materials/iceviii.eosmat +535 -0
  523. peritheos-0.7.0/peritheos/data/materials/in_sun_2010_legacy.eosmat +719 -0
  524. peritheos-0.7.0/peritheos/data/materials/indium_bct.eosmat +374 -0
  525. peritheos-0.7.0/peritheos/data/materials/indium_nitride.eosmat +168 -0
  526. peritheos-0.7.0/peritheos/data/materials/iridium.eosmat +580 -0
  527. peritheos-0.7.0/peritheos/data/materials/iron.eosmat +2208 -0
  528. peritheos-0.7.0/peritheos/data/materials/iron_carbide_fe7c3.eosmat +341 -0
  529. peritheos-0.7.0/peritheos/data/materials/k_sun_2010_legacy.eosmat +267 -0
  530. peritheos-0.7.0/peritheos/data/materials/kbr_b1.eosmat +210 -0
  531. peritheos-0.7.0/peritheos/data/materials/kbr_b2.eosmat +210 -0
  532. peritheos-0.7.0/peritheos/data/materials/kcl.eosmat +1331 -0
  533. peritheos-0.7.0/peritheos/data/materials/kcl_b1.eosmat +210 -0
  534. peritheos-0.7.0/peritheos/data/materials/kf_sun_2010_legacy.eosmat +267 -0
  535. peritheos-0.7.0/peritheos/data/materials/ki_sun_2010_legacy.eosmat +267 -0
  536. peritheos-0.7.0/peritheos/data/materials/klb1_ca_perovskite.eosmat +187 -0
  537. peritheos-0.7.0/peritheos/data/materials/klb1_ferropericlase.eosmat +314 -0
  538. peritheos-0.7.0/peritheos/data/materials/klb1_mg_perovskite.eosmat +183 -0
  539. peritheos-0.7.0/peritheos/data/materials/larnite.eosmat +139 -0
  540. peritheos-0.7.0/peritheos/data/materials/lead_fcc.eosmat +446 -0
  541. peritheos-0.7.0/peritheos/data/materials/lead_hcp.eosmat +435 -0
  542. peritheos-0.7.0/peritheos/data/materials/li_bcc.eosmat +220 -0
  543. peritheos-0.7.0/peritheos/data/materials/li_sun_2010_legacy.eosmat +267 -0
  544. peritheos-0.7.0/peritheos/data/materials/libr_sun_2010_legacy.eosmat +267 -0
  545. peritheos-0.7.0/peritheos/data/materials/licl_sun_2010_legacy.eosmat +267 -0
  546. peritheos-0.7.0/peritheos/data/materials/lif_b1.eosmat +205 -0
  547. peritheos-0.7.0/peritheos/data/materials/lif_sun_2010_legacy.eosmat +267 -0
  548. peritheos-0.7.0/peritheos/data/materials/lii_sun_2010_legacy.eosmat +267 -0
  549. peritheos-0.7.0/peritheos/data/materials/lithium_9r.eosmat +382 -0
  550. peritheos-0.7.0/peritheos/data/materials/lutetium_hcp.eosmat +199 -0
  551. peritheos-0.7.0/peritheos/data/materials/magnesiowustite_fe56.eosmat +377 -0
  552. peritheos-0.7.0/peritheos/data/materials/magnesiowustite_fe75.eosmat +377 -0
  553. peritheos-0.7.0/peritheos/data/materials/magnesite.eosmat +768 -0
  554. peritheos-0.7.0/peritheos/data/materials/magnesium_bcc.eosmat +234 -0
  555. peritheos-0.7.0/peritheos/data/materials/magnesium_hcp.eosmat +553 -0
  556. peritheos-0.7.0/peritheos/data/materials/majorite.eosmat +1051 -0
  557. peritheos-0.7.0/peritheos/data/materials/manganese_alpha.eosmat +431 -0
  558. peritheos-0.7.0/peritheos/data/materials/manganese_fcc_afm.eosmat +215 -0
  559. peritheos-0.7.0/peritheos/data/materials/manifest.json +40 -0
  560. peritheos-0.7.0/peritheos/data/materials/mercury_bct_dft.eosmat +199 -0
  561. peritheos-0.7.0/peritheos/data/materials/mg0125fe0875o.eosmat +198 -0
  562. peritheos-0.7.0/peritheos/data/materials/mg0215fe0762vac0023o_b1.eosmat +754 -0
  563. peritheos-0.7.0/peritheos/data/materials/mg025fe075o.eosmat +198 -0
  564. peritheos-0.7.0/peritheos/data/materials/mg0375fe0625o.eosmat +198 -0
  565. peritheos-0.7.0/peritheos/data/materials/mg0490fe0483ti0027o.eosmat +554 -0
  566. peritheos-0.7.0/peritheos/data/materials/mg05fe05al05si05o3_bridgmanite.eosmat +1112 -0
  567. peritheos-0.7.0/peritheos/data/materials/mg05fe05o.eosmat +198 -0
  568. peritheos-0.7.0/peritheos/data/materials/mg061fe039o.eosmat +592 -0
  569. peritheos-0.7.0/peritheos/data/materials/mg0625fe0375o.eosmat +198 -0
  570. peritheos-0.7.0/peritheos/data/materials/mg065fe035o.eosmat +338 -0
  571. peritheos-0.7.0/peritheos/data/materials/mg073fe027o.eosmat +409 -0
  572. peritheos-0.7.0/peritheos/data/materials/mg075fe025o.eosmat +1179 -0
  573. peritheos-0.7.0/peritheos/data/materials/mg075fe025sio3_bridgmanite.eosmat +271 -0
  574. peritheos-0.7.0/peritheos/data/materials/mg080fe020o.eosmat +332 -0
  575. peritheos-0.7.0/peritheos/data/materials/mg080fe020sio3_bridgmanite.eosmat +132 -0
  576. peritheos-0.7.0/peritheos/data/materials/mg083fe017o.eosmat +606 -0
  577. peritheos-0.7.0/peritheos/data/materials/mg0875fe0125o.eosmat +198 -0
  578. peritheos-0.7.0/peritheos/data/materials/mg087fe013sio3_bridgmanite.eosmat +495 -0
  579. peritheos-0.7.0/peritheos/data/materials/mg088fe010al014si090o3_bridgmanite.eosmat +1077 -0
  580. peritheos-0.7.0/peritheos/data/materials/mg090fe009al0005ca0005sio3_bridgmanite.eosmat +429 -0
  581. peritheos-0.7.0/peritheos/data/materials/mg090fe009al0005ca0005sio3_post_perovskite.eosmat +628 -0
  582. peritheos-0.7.0/peritheos/data/materials/mg090fe010o.eosmat +338 -0
  583. peritheos-0.7.0/peritheos/data/materials/mg092fe008o.eosmat +210 -0
  584. peritheos-0.7.0/peritheos/data/materials/mg092fe008sio3_bridgmanite.eosmat +282 -0
  585. peritheos-0.7.0/peritheos/data/materials/mg09375al0125si09375o3_bridgmanite.eosmat +178 -0
  586. peritheos-0.7.0/peritheos/data/materials/mg09375al0125si09375o3_post_perovskite.eosmat +178 -0
  587. peritheos-0.7.0/peritheos/data/materials/mg09375fe00625o.eosmat +752 -0
  588. peritheos-0.7.0/peritheos/data/materials/mg09375fe00625sio3_bridgmanite.eosmat +736 -0
  589. peritheos-0.7.0/peritheos/data/materials/mg095al010si095o3_bridgmanite.eosmat +742 -0
  590. peritheos-0.7.0/peritheos/data/materials/mg096875fe003125o.eosmat +304 -0
  591. peritheos-0.7.0/peritheos/data/materials/mg0991fe0008mn0001co3_magnesite.eosmat +262 -0
  592. peritheos-0.7.0/peritheos/data/materials/mg09al02si09o3_bridgmanite.eosmat +636 -0
  593. peritheos-0.7.0/peritheos/data/materials/mg09fe01sio3_bridgmanite.eosmat +553 -0
  594. peritheos-0.7.0/peritheos/data/materials/mg7si2o8.eosmat +575 -0
  595. peritheos-0.7.0/peritheos/data/materials/mg_sun_2010_legacy.eosmat +719 -0
  596. peritheos-0.7.0/peritheos/data/materials/mgal00625h00625si09375o3_bridgmanite.eosmat +178 -0
  597. peritheos-0.7.0/peritheos/data/materials/mgal00625h00625si09375o3_post_perovskite.eosmat +178 -0
  598. peritheos-0.7.0/peritheos/data/materials/mgal0125si0875o29375_bridgmanite.eosmat +178 -0
  599. peritheos-0.7.0/peritheos/data/materials/mgal0125si0875o29375_post_perovskite.eosmat +178 -0
  600. peritheos-0.7.0/peritheos/data/materials/mgal2o4_cafe2o4.eosmat +358 -0
  601. peritheos-0.7.0/peritheos/data/materials/mgal2o4_cati2o4.eosmat +358 -0
  602. peritheos-0.7.0/peritheos/data/materials/mgfe60o.eosmat +518 -0
  603. peritheos-0.7.0/peritheos/data/materials/mgfe94o_b1.eosmat +404 -0
  604. peritheos-0.7.0/peritheos/data/materials/mgfe94o_rhombohedral.eosmat +364 -0
  605. peritheos-0.7.0/peritheos/data/materials/mggeo3_post_perovskite.eosmat +970 -0
  606. peritheos-0.7.0/peritheos/data/materials/mgo.eosmat +5757 -0
  607. peritheos-0.7.0/peritheos/data/materials/mgo_b2.eosmat +146 -0
  608. peritheos-0.7.0/peritheos/data/materials/mgo_liquid.eosmat +137 -0
  609. peritheos-0.7.0/peritheos/data/materials/mgo_sun_2010_legacy.eosmat +267 -0
  610. peritheos-0.7.0/peritheos/data/materials/mgsio3_liquid.eosmat +151 -0
  611. peritheos-0.7.0/peritheos/data/materials/mgsio3_post_perovskite.eosmat +2309 -0
  612. peritheos-0.7.0/peritheos/data/materials/mgsioh6_365a_phase.eosmat +749 -0
  613. peritheos-0.7.0/peritheos/data/materials/mo_sun_2010_legacy.eosmat +951 -0
  614. peritheos-0.7.0/peritheos/data/materials/molybdenum.eosmat +1628 -0
  615. peritheos-0.7.0/peritheos/data/materials/molybenum_carbide_mo2c.eosmat +451 -0
  616. peritheos-0.7.0/peritheos/data/materials/na088al099fe013si094o4_calcium_ferrite.eosmat +474 -0
  617. peritheos-0.7.0/peritheos/data/materials/na093al102si100o4_calcium_ferrite.eosmat +484 -0
  618. peritheos-0.7.0/peritheos/data/materials/na_sun_2010_legacy.eosmat +267 -0
  619. peritheos-0.7.0/peritheos/data/materials/naalsi2o6.eosmat +318 -0
  620. peritheos-0.7.0/peritheos/data/materials/naalsio4_calcium_ferrite.eosmat +303 -0
  621. peritheos-0.7.0/peritheos/data/materials/nabr_sun_2010_legacy.eosmat +267 -0
  622. peritheos-0.7.0/peritheos/data/materials/nacl_b1.eosmat +219 -0
  623. peritheos-0.7.0/peritheos/data/materials/nacl_b2.eosmat +558 -0
  624. peritheos-0.7.0/peritheos/data/materials/nacl_sun_2010_legacy.eosmat +267 -0
  625. peritheos-0.7.0/peritheos/data/materials/naf_sun_2010_legacy.eosmat +267 -0
  626. peritheos-0.7.0/peritheos/data/materials/nai_sun_2010_legacy.eosmat +267 -0
  627. peritheos-0.7.0/peritheos/data/materials/namg2al5sio12_cf.eosmat +491 -0
  628. peritheos-0.7.0/peritheos/data/materials/namg2al5sio12_nal.eosmat +432 -0
  629. peritheos-0.7.0/peritheos/data/materials/nb_sun_2010_legacy.eosmat +719 -0
  630. peritheos-0.7.0/peritheos/data/materials/nd_sun_2010_legacy.eosmat +267 -0
  631. peritheos-0.7.0/peritheos/data/materials/neon_fcc.eosmat +757 -0
  632. peritheos-0.7.0/peritheos/data/materials/ni_sun_2010_legacy.eosmat +719 -0
  633. peritheos-0.7.0/peritheos/data/materials/nickel.eosmat +745 -0
  634. peritheos-0.7.0/peritheos/data/materials/nickel_oxide.eosmat +531 -0
  635. peritheos-0.7.0/peritheos/data/materials/niobium.eosmat +821 -0
  636. peritheos-0.7.0/peritheos/data/materials/nis.eosmat +213 -0
  637. peritheos-0.7.0/peritheos/data/materials/orthoenstatite.eosmat +292 -0
  638. peritheos-0.7.0/peritheos/data/materials/osmium.eosmat +554 -0
  639. peritheos-0.7.0/peritheos/data/materials/palladium.eosmat +1348 -0
  640. peritheos-0.7.0/peritheos/data/materials/pb_sun_2010_legacy.eosmat +719 -0
  641. peritheos-0.7.0/peritheos/data/materials/pbs_b1.eosmat +258 -0
  642. peritheos-0.7.0/peritheos/data/materials/pd_sun_2010_legacy.eosmat +838 -0
  643. peritheos-0.7.0/peritheos/data/materials/perovskite_orthorhombic.eosmat +1391 -0
  644. peritheos-0.7.0/peritheos/data/materials/phase_d.eosmat +798 -0
  645. peritheos-0.7.0/peritheos/data/materials/phase_egg.eosmat +1145 -0
  646. peritheos-0.7.0/peritheos/data/materials/phase_h.eosmat +235 -0
  647. peritheos-0.7.0/peritheos/data/materials/platinum.eosmat +2552 -0
  648. peritheos-0.7.0/peritheos/data/materials/polonium_simple_cubic.eosmat +191 -0
  649. peritheos-0.7.0/peritheos/data/materials/potassium_bcc.eosmat +374 -0
  650. peritheos-0.7.0/peritheos/data/materials/praseodymium_dioxide.eosmat +252 -0
  651. peritheos-0.7.0/peritheos/data/materials/pseudowollastonite.eosmat +139 -0
  652. peritheos-0.7.0/peritheos/data/materials/pt_sun_2010_legacy.eosmat +951 -0
  653. peritheos-0.7.0/peritheos/data/materials/pyrope.eosmat +235 -0
  654. peritheos-0.7.0/peritheos/data/materials/rb_sun_2010_legacy.eosmat +267 -0
  655. peritheos-0.7.0/peritheos/data/materials/rbbr_sun_2010_legacy.eosmat +267 -0
  656. peritheos-0.7.0/peritheos/data/materials/rbcl.eosmat +209 -0
  657. peritheos-0.7.0/peritheos/data/materials/rbcl_sun_2010_legacy.eosmat +267 -0
  658. peritheos-0.7.0/peritheos/data/materials/rbf_sun_2010_legacy.eosmat +267 -0
  659. peritheos-0.7.0/peritheos/data/materials/rbi_sun_2010_legacy.eosmat +267 -0
  660. peritheos-0.7.0/peritheos/data/materials/rhenium.eosmat +995 -0
  661. peritheos-0.7.0/peritheos/data/materials/rhodium.eosmat +530 -0
  662. peritheos-0.7.0/peritheos/data/materials/ringwoodite.eosmat +240 -0
  663. peritheos-0.7.0/peritheos/data/materials/rubidium_bcc.eosmat +374 -0
  664. peritheos-0.7.0/peritheos/data/materials/ruthenium.eosmat +558 -0
  665. peritheos-0.7.0/peritheos/data/materials/scandium_hcp.eosmat +363 -0
  666. peritheos-0.7.0/peritheos/data/materials/seifertite.eosmat +362 -0
  667. peritheos-0.7.0/peritheos/data/materials/silica_cacl2.eosmat +245 -0
  668. peritheos-0.7.0/peritheos/data/materials/silicon.eosmat +276 -0
  669. peritheos-0.7.0/peritheos/data/materials/silicon_carbide_b1.eosmat +213 -0
  670. peritheos-0.7.0/peritheos/data/materials/silicon_carbide_b3.eosmat +232 -0
  671. peritheos-0.7.0/peritheos/data/materials/silicon_v.eosmat +275 -0
  672. peritheos-0.7.0/peritheos/data/materials/silicon_vii.eosmat +275 -0
  673. peritheos-0.7.0/peritheos/data/materials/silicon_x.eosmat +275 -0
  674. peritheos-0.7.0/peritheos/data/materials/silver.eosmat +936 -0
  675. peritheos-0.7.0/peritheos/data/materials/sio2_stv_andr.eosmat +1186 -0
  676. peritheos-0.7.0/peritheos/data/materials/sn_sun_2010_legacy.eosmat +719 -0
  677. peritheos-0.7.0/peritheos/data/materials/sno2.eosmat +278 -0
  678. peritheos-0.7.0/peritheos/data/materials/sno2_cubic_27gpa.eosmat +318 -0
  679. peritheos-0.7.0/peritheos/data/materials/sno2_pa_3_at_48gpa.eosmat +318 -0
  680. peritheos-0.7.0/peritheos/data/materials/sodium_9r.eosmat +382 -0
  681. peritheos-0.7.0/peritheos/data/materials/solid_h2_sun_2010_legacy.eosmat +386 -0
  682. peritheos-0.7.0/peritheos/data/materials/sro.eosmat +205 -0
  683. peritheos-0.7.0/peritheos/data/materials/sro_b2.eosmat +204 -0
  684. peritheos-0.7.0/peritheos/data/materials/srsio3_6h_perovskite.eosmat +127 -0
  685. peritheos-0.7.0/peritheos/data/materials/srsio3_cubic_perovskite.eosmat +356 -0
  686. peritheos-0.7.0/peritheos/data/materials/strontium_fcc.eosmat +397 -0
  687. peritheos-0.7.0/peritheos/data/materials/ta_sun_2010_legacy.eosmat +951 -0
  688. peritheos-0.7.0/peritheos/data/materials/tantalum.eosmat +1474 -0
  689. peritheos-0.7.0/peritheos/data/materials/technetium_hcp.eosmat +199 -0
  690. peritheos-0.7.0/peritheos/data/materials/th_sun_2010_legacy.eosmat +719 -0
  691. peritheos-0.7.0/peritheos/data/materials/thallium_hcp.eosmat +364 -0
  692. peritheos-0.7.0/peritheos/data/materials/ti_sun_2010_legacy.eosmat +838 -0
  693. peritheos-0.7.0/peritheos/data/materials/tin_alpha.eosmat +382 -0
  694. peritheos-0.7.0/peritheos/data/materials/titanium_alpha.eosmat +519 -0
  695. peritheos-0.7.0/peritheos/data/materials/titanium_omega.eosmat +206 -0
  696. peritheos-0.7.0/peritheos/data/materials/tl_sun_2010_legacy.eosmat +719 -0
  697. peritheos-0.7.0/peritheos/data/materials/tungsten.eosmat +1456 -0
  698. peritheos-0.7.0/peritheos/data/materials/v_sun_2010_legacy.eosmat +719 -0
  699. peritheos-0.7.0/peritheos/data/materials/vanadium_bcc.eosmat +374 -0
  700. peritheos-0.7.0/peritheos/data/materials/w_sun_2010_legacy.eosmat +951 -0
  701. peritheos-0.7.0/peritheos/data/materials/wadsleyite.eosmat +355 -0
  702. peritheos-0.7.0/peritheos/data/materials/wollastonite.eosmat +139 -0
  703. peritheos-0.7.0/peritheos/data/materials/yttrium_hcp.eosmat +374 -0
  704. peritheos-0.7.0/peritheos/data/materials/zinc_hcp.eosmat +596 -0
  705. peritheos-0.7.0/peritheos/data/materials/zinc_oxide_rocksalt.eosmat +263 -0
  706. peritheos-0.7.0/peritheos/data/materials/zinc_oxide_wurtzite.eosmat +267 -0
  707. peritheos-0.7.0/peritheos/data/materials/zircon.eosmat +292 -0
  708. peritheos-0.7.0/peritheos/data/materials/zirconium_alpha.eosmat +569 -0
  709. peritheos-0.7.0/peritheos/data/materials/zirconium_beta.eosmat +236 -0
  710. peritheos-0.7.0/peritheos/data/materials/zirconium_omega.eosmat +256 -0
  711. peritheos-0.7.0/peritheos/data/materials/zn_sun_2010_legacy.eosmat +838 -0
  712. peritheos-0.7.0/peritheos/data/materials/zr_sun_2010_legacy.eosmat +719 -0
  713. peritheos-0.7.0/peritheos/data/pressure-calibrations.json +353 -0
  714. peritheos-0.7.0/peritheos/data/primary-source-audit.json +15188 -0
  715. peritheos-0.7.0/peritheos/diagnostics.py +185 -0
  716. {peritheos-0.5.0 → peritheos-0.7.0}/peritheos/eos/__init__.py +335 -36
  717. peritheos-0.7.0/peritheos/eos/hugoniot.py +9 -0
  718. {peritheos-0.5.0 → peritheos-0.7.0}/peritheos/eos/rt/__init__.py +8 -0
  719. peritheos-0.7.0/peritheos/eos/rt/baonza.py +37 -0
  720. {peritheos-0.5.0 → peritheos-0.7.0}/peritheos/eos/rt/bm.py +13 -42
  721. peritheos-0.7.0/peritheos/eos/rt/holzapfel.py +141 -0
  722. {peritheos-0.5.0 → peritheos-0.7.0}/peritheos/eos/rt/murnaghan.py +5 -9
  723. {peritheos-0.5.0 → peritheos-0.7.0}/peritheos/eos/rt/natural_strain.py +11 -31
  724. peritheos-0.7.0/peritheos/eos/rt/rydberg_stacey.py +55 -0
  725. peritheos-0.7.0/peritheos/eos/rt/sun_morse.py +50 -0
  726. {peritheos-0.5.0 → peritheos-0.7.0}/peritheos/eos/rt/tait.py +10 -6
  727. {peritheos-0.5.0 → peritheos-0.7.0}/peritheos/eos/rt/vinet.py +5 -9
  728. peritheos-0.7.0/peritheos/eos/thermal/__init__.py +40 -0
  729. peritheos-0.7.0/peritheos/eos/thermal/dorogokupets_oganov.py +235 -0
  730. peritheos-0.7.0/peritheos/eos/thermal/double_debye_helmholtz.py +670 -0
  731. {peritheos-0.5.0 → peritheos-0.7.0}/peritheos/eos/thermal/holland_powell.py +31 -1
  732. peritheos-0.7.0/peritheos/eos/thermal/linear.py +426 -0
  733. peritheos-0.7.0/peritheos/eos/thermal/mie_gruneisen.py +565 -0
  734. peritheos-0.5.0/peritheos/eos/thermal/sokolova2016.py → peritheos-0.7.0/peritheos/eos/thermal/multi_oscillator.py +87 -16
  735. peritheos-0.7.0/peritheos/eos/thermal/sokolova2016.py +16 -0
  736. peritheos-0.7.0/peritheos/eosmat.py +1231 -0
  737. peritheos-0.7.0/peritheos/errors.py +147 -0
  738. {peritheos-0.5.0 → peritheos-0.7.0}/peritheos/fitting.py +530 -51
  739. peritheos-0.7.0/peritheos/hugoniot.py +195 -0
  740. peritheos-0.7.0/peritheos/materials.py +4246 -0
  741. peritheos-0.7.0/peritheos/pressure_calibrations.py +1351 -0
  742. {peritheos-0.5.0 → peritheos-0.7.0}/peritheos/uncertainty.py +115 -73
  743. peritheos-0.7.0/peritheos/units.py +225 -0
  744. peritheos-0.7.0/peritheos/utils.py +68 -0
  745. {peritheos-0.5.0 → peritheos-0.7.0}/pyproject.toml +34 -8
  746. peritheos-0.7.0/scripts/apply_primary_source_audit.py +3461 -0
  747. peritheos-0.7.0/scripts/audit_dewaele_2019_static_dac.py +389 -0
  748. peritheos-0.7.0/scripts/build_deltacodesdft_metal_eos.py +650 -0
  749. peritheos-0.7.0/scripts/build_experimental_metal_eos_batch_200.py +1208 -0
  750. peritheos-0.7.0/scripts/build_sun_2010_morse_materials.py +271 -0
  751. peritheos-0.7.0/scripts/build_zhang_2025_hcp_iron.py +757 -0
  752. peritheos-0.7.0/scripts/compare_external_black_boxes.py +123 -0
  753. peritheos-0.7.0/scripts/generate_hugoniot_material_inventory.py +69 -0
  754. peritheos-0.7.0/scripts/generate_paper_investigation_ledger.py +408 -0
  755. peritheos-0.7.0/scripts/generate_sokolova_figure3_validation.py +241 -0
  756. peritheos-0.7.0/scripts/generate_source_audit_index.py +79 -0
  757. peritheos-0.7.0/scripts/import_dioptas_eos_database.py +199 -0
  758. peritheos-0.7.0/scripts/import_litcurate_eos_candidates.py +673 -0
  759. peritheos-0.7.0/scripts/reproduce_aip_handbook_cu_vinet_refit.py +127 -0
  760. peritheos-0.7.0/scripts/reproduce_akber_knutson_2005_al_perovskites.py +72 -0
  761. peritheos-0.7.0/scripts/reproduce_belmonte_2017_mgo.py +54 -0
  762. peritheos-0.7.0/scripts/reproduce_ca_other_source_exhaustion.py +71 -0
  763. peritheos-0.7.0/scripts/reproduce_caracas_2005_casio3_polymorphs.py +51 -0
  764. peritheos-0.7.0/scripts/reproduce_chantel_2012_bridgmanite.py +71 -0
  765. peritheos-0.7.0/scripts/reproduce_chen_2018_casio3.py +35 -0
  766. peritheos-0.7.0/scripts/reproduce_cohen_lin_2014_fesio3.py +119 -0
  767. peritheos-0.7.0/scripts/reproduce_criniti_2021_bridgmanite.py +84 -0
  768. peritheos-0.7.0/scripts/reproduce_datchi_2007_cbn.py +109 -0
  769. peritheos-0.7.0/scripts/reproduce_deltacodesdft_metal_eos.py +120 -0
  770. peritheos-0.7.0/scripts/reproduce_deltaproject_experimental_reference.py +278 -0
  771. peritheos-0.7.0/scripts/reproduce_deng_2006_bridgmanite.py +38 -0
  772. peritheos-0.7.0/scripts/reproduce_dewaele_2000_mgo_table3.py +31 -0
  773. peritheos-0.7.0/scripts/reproduce_dorfman_2012_cocompression.py +531 -0
  774. peritheos-0.7.0/scripts/reproduce_fiquet_2000_bridgmanite.py +97 -0
  775. peritheos-0.7.0/scripts/reproduce_fu_2023_eos.py +73 -0
  776. peritheos-0.7.0/scripts/reproduce_fu_2024_bridgmanite.py +162 -0
  777. peritheos-0.7.0/scripts/reproduce_funamori_1998_mgal2o4.py +72 -0
  778. peritheos-0.7.0/scripts/reproduce_ghosh_karki_2016_mgo_liquid.py +34 -0
  779. peritheos-0.7.0/scripts/reproduce_gong_2004_mg092fe008sio3.py +49 -0
  780. peritheos-0.7.0/scripts/reproduce_hama_suito_1996_mgo.py +38 -0
  781. peritheos-0.7.0/scripts/reproduce_hirose_2005_mggeo3.py +65 -0
  782. peritheos-0.7.0/scripts/reproduce_holland_2013_modified_tait.py +136 -0
  783. peritheos-0.7.0/scripts/reproduce_karki_1997_mgo.py +98 -0
  784. peritheos-0.7.0/scripts/reproduce_karki_2002_akimotoite.py +82 -0
  785. peritheos-0.7.0/scripts/reproduce_katsura_2004_ringwoodite.py +171 -0
  786. peritheos-0.7.0/scripts/reproduce_katsura_2009_bridgmanite.py +79 -0
  787. peritheos-0.7.0/scripts/reproduce_kawai_2012_nal_cf.py +124 -0
  788. peritheos-0.7.0/scripts/reproduce_kiefer_2002_fe_bridgmanite.py +51 -0
  789. peritheos-0.7.0/scripts/reproduce_koemets_2023_fa50_bridgmanite.py +120 -0
  790. peritheos-0.7.0/scripts/reproduce_kubo_2000_aluminous_bridgmanite.py +162 -0
  791. peritheos-0.7.0/scripts/reproduce_kubo_2006_mggeo3_post_perovskite.py +140 -0
  792. peritheos-0.7.0/scripts/reproduce_lee_wan_2008_mgo.py +92 -0
  793. peritheos-0.7.0/scripts/reproduce_leonov_2017_magnesiowustite.py +65 -0
  794. peritheos-0.7.0/scripts/reproduce_li_zeng_2009_mgsio3.py +72 -0
  795. peritheos-0.7.0/scripts/reproduce_liu_2010_mgsio3_post_perovskite.py +35 -0
  796. peritheos-0.7.0/scripts/reproduce_mao_1991_bridgmanites.py +41 -0
  797. peritheos-0.7.0/scripts/reproduce_mao_2011_dolomite.py +148 -0
  798. peritheos-0.7.0/scripts/reproduce_mao_2011_ferropericlase.py +135 -0
  799. peritheos-0.7.0/scripts/reproduce_marcondes_2020_ferropericlase.py +51 -0
  800. peritheos-0.7.0/scripts/reproduce_martin_2007_cairo3.py +41 -0
  801. peritheos-0.7.0/scripts/reproduce_matsui_2012_ferropericlase.py +124 -0
  802. peritheos-0.7.0/scripts/reproduce_metsue_2012_bridgmanite.py +77 -0
  803. peritheos-0.7.0/scripts/reproduce_mgsio3_source_exhaustion.py +105 -0
  804. peritheos-0.7.0/scripts/reproduce_mookherjee_2015_365a_phase.py +187 -0
  805. peritheos-0.7.0/scripts/reproduce_mookherjee_2019_phase_egg_hp.py +59 -0
  806. peritheos-0.7.0/scripts/reproduce_noguchi_2013_casio3.py +60 -0
  807. peritheos-0.7.0/scripts/reproduce_oganov_wang_chizmeshya_eos.py +163 -0
  808. peritheos-0.7.0/scripts/reproduce_qin_2023_naalsio4.py +161 -0
  809. peritheos-0.7.0/scripts/reproduce_redfern_1993_magnesite.py +39 -0
  810. peritheos-0.7.0/scripts/reproduce_sakai_2025_nine_materials.py +52 -0
  811. peritheos-0.7.0/scripts/reproduce_shieh_2006_natural_pyroxene.py +144 -0
  812. peritheos-0.7.0/scripts/reproduce_solomatova_2016_ferropericlase.py +90 -0
  813. peritheos-0.7.0/scripts/reproduce_somayazulu_2023_b4c.py +301 -0
  814. peritheos-0.7.0/scripts/reproduce_speziale_2007_ferropericlase.py +134 -0
  815. peritheos-0.7.0/scripts/reproduce_sun_2010_morse_eos.py +73 -0
  816. peritheos-0.7.0/scripts/reproduce_suzuki_2016_epsilon_feooh.py +146 -0
  817. peritheos-0.7.0/scripts/reproduce_tranche_b_mineral_eos.py +190 -0
  818. peritheos-0.7.0/scripts/reproduce_vanpeteghem_2002_delta_alooh.py +52 -0
  819. peritheos-0.7.0/scripts/reproduce_wu_2013_fe_bridgmanite.py +49 -0
  820. peritheos-0.7.0/scripts/reproduce_xiao_2013_srsio3.py +53 -0
  821. peritheos-0.7.0/scripts/reproduce_yang_2015_ferropericlase.py +47 -0
  822. peritheos-0.7.0/scripts/reproduce_zhang_2025_hcp_iron.py +246 -0
  823. peritheos-0.7.0/scripts/reproduce_zhang_bukowinski_1991_oxides.py +34 -0
  824. peritheos-0.7.0/scripts/reproduce_zhang_driver_thermoelastic_eos.py +70 -0
  825. peritheos-0.7.0/scripts/reproduce_zhu_2025_pressure_standards.py +49 -0
  826. peritheos-0.7.0/scripts/validate_primary_eos_refits.py +2885 -0
  827. peritheos-0.7.0/scripts/verify-rust-packages.sh +27 -0
  828. peritheos-0.5.0/CHANGELOG.md +0 -149
  829. peritheos-0.5.0/MANIFEST.in +0 -9
  830. peritheos-0.5.0/PKG-INFO +0 -214
  831. peritheos-0.5.0/README.md +0 -184
  832. peritheos-0.5.0/docs/api-stability.md +0 -39
  833. peritheos-0.5.0/docs/api.md +0 -150
  834. peritheos-0.5.0/docs/development.md +0 -46
  835. peritheos-0.5.0/docs/equation-reference.md +0 -432
  836. peritheos-0.5.0/docs/index.md +0 -51
  837. peritheos-0.5.0/docs/models.md +0 -77
  838. peritheos-0.5.0/docs/references.md +0 -55
  839. peritheos-0.5.0/docs/units.md +0 -65
  840. peritheos-0.5.0/docs/validation.md +0 -79
  841. peritheos-0.5.0/mkdocs.yml +0 -55
  842. peritheos-0.5.0/peritheos/__init__.py +0 -16
  843. peritheos-0.5.0/peritheos/eos/rt/holzapfel.py +0 -197
  844. peritheos-0.5.0/peritheos/eos/thermal/__init__.py +0 -15
  845. peritheos-0.5.0/peritheos/eos/thermal/mie_gruneisen.py +0 -277
  846. peritheos-0.5.0/peritheos/units.py +0 -101
  847. peritheos-0.5.0/peritheos/utils.py +0 -119
  848. peritheos-0.5.0/peritheos.egg-info/SOURCES.txt +0 -67
  849. peritheos-0.5.0/peritheos.egg-info/requires.txt +0 -2
  850. peritheos-0.5.0/peritheos.egg-info/top_level.txt +0 -1
  851. peritheos-0.5.0/setup.cfg +0 -4
  852. peritheos-0.5.0/tests/test_bm.py +0 -195
  853. peritheos-0.5.0/tests/test_eos_api.py +0 -102
  854. peritheos-0.5.0/tests/test_fitting.py +0 -479
  855. peritheos-0.5.0/tests/test_holzapfel.py +0 -157
  856. peritheos-0.5.0/tests/test_literature_reference_cases.py +0 -63
  857. peritheos-0.5.0/tests/test_murnaghan.py +0 -58
  858. peritheos-0.5.0/tests/test_natural_strain.py +0 -61
  859. peritheos-0.5.0/tests/test_numerical_stress.py +0 -271
  860. peritheos-0.5.0/tests/test_package_metadata.py +0 -17
  861. peritheos-0.5.0/tests/test_tait.py +0 -73
  862. peritheos-0.5.0/tests/test_thermal_mie_gruneisen.py +0 -145
  863. peritheos-0.5.0/tests/test_thermal_sokolova.py +0 -392
  864. peritheos-0.5.0/tests/test_thermoelastic_api.py +0 -134
  865. peritheos-0.5.0/tests/test_uncertainty.py +0 -546
  866. peritheos-0.5.0/tests/test_units.py +0 -43
  867. peritheos-0.5.0/tests/test_vinet.py +0 -97
  868. {peritheos-0.5.0 → peritheos-0.7.0}/CODE_OF_CONDUCT.md +0 -0
  869. {peritheos-0.5.0 → peritheos-0.7.0}/LICENSE +0 -0
  870. {peritheos-0.5.0 → peritheos-0.7.0}/SECURITY.md +0 -0
  871. {peritheos-0.5.0 → peritheos-0.7.0}/SUPPORT.md +0 -0
  872. {peritheos-0.5.0 → peritheos-0.7.0}/docs/project-policies.md +0 -0
  873. {peritheos-0.5.0 → peritheos-0.7.0}/peritheos/constants.py +0 -0
  874. /peritheos-0.5.0/peritheos.egg-info/dependency_links.txt → /peritheos-0.7.0/peritheos/py.typed +0 -0
@@ -0,0 +1,615 @@
1
+ # Changelog
2
+
3
+ All notable changes to Peritheos are documented here. The project follows
4
+ [Semantic Versioning](https://semver.org/).
5
+
6
+ ## [Unreleased]
7
+
8
+ ## [0.7.0] - 2026-09-07
9
+
10
+ ### Added
11
+
12
+ - Added a 200-record experimental-metal EOS tranche, the Baonza pseudospinodal
13
+ EOS with native evaluation and fitting support, and the phase-specific hcp-Pb
14
+ material card. The expanded catalog now contains 286 materials and 813
15
+ primary-source-validated EOS records.
16
+ - Added seven primary-source-validated LitCurate EOS records from four papers:
17
+ two Kubo et al. (2000) Mg0.9Al0.2Si0.9O3 bridgmanite BM3 fits, two Kubo et
18
+ al. (2006) MgGeO3 post-perovskite sensitivity fits, two Matsui et al. (2012)
19
+ high-spin ferropericlase BM3-MGD models, and the Koemets et al. (2023) FA50
20
+ Pnma bridgmanite BM2. Complete source tables, phase-specific fit masks,
21
+ deterministic reproductions, pressure-scale provenance, and explicit
22
+ accept/hold/reject decisions for every same-paper LitCurate row are bundled.
23
+ - Added a generated paper-level investigation ledger covering every audited
24
+ primary source, including coefficient discrepancies, unavailable direct
25
+ refits, and papers withheld or deferred without a production EOS record.
26
+
27
+ - Added a primary-source-validated absolute-zero Vinet-MGD EOS for cubic boron
28
+ nitride from Datchi et al. (2007). The explicit absolute thermal-pressure
29
+ baseline reproduces all 66 Table IV states at 0.584 GPa RMSE and the paper's
30
+ independent 300 K zero-pressure volume.
31
+ - Added Suzuki's (2016) epsilon-FeOOH BM3 thermal EOS with an explicit
32
+ reference-temperature linear-expansivity convention, all 33 Table 1 P-V-T
33
+ observations, and a refit recovering every free coefficient within 0.40
34
+ published standard deviations.
35
+ - Added Noguchi et al.'s (2013) non-default 700 K BM2-MGD CaSiO3 perovskite
36
+ EOS, preserving its cubic-phase domain, Fei et al. Pt calibration, and
37
+ staged-refit parity without redistributing the subscription-only table.
38
+ - Audited Katsura et al.'s (2004) 127-row ringwoodite dataset and documented
39
+ why its thermal EOS remains excluded: the published coefficients cannot be
40
+ reproduced with the chemically required seven-atom normalization.
41
+ - Added Fu et al. (2024) BM2 and BM3 records for Fe-Al-bearing bridgmanite,
42
+ with the complete 22-row primary compression dataset, Au pressure-scale
43
+ provenance, independent reproduction, and record-specific tests.
44
+ - Added phase-restricted principal Hugoniots for B1 MgO and B1 NiO. The MgO
45
+ relation preserves the published coefficients and uncertainties; the NiO
46
+ relation is a documented OLS derivation from all eight published final-state
47
+ observations with the elastic precursor excluded.
48
+ - Added primary-source-validated Sun et al. (2016, 2022) CaSiO3-perovskite
49
+ records: a 300 K tetragonal I4/mcm BM3 isotherm with the published Z=1
50
+ volume converted to the conventional Z=4 cell, and a high-temperature cubic
51
+ Pm-3m BM3-Mie-Gruneisen-Debye EOS with explicit metastable-reference-state,
52
+ phase-validity, and Fei et al. Pt pressure-scale metadata.
53
+ - Added the Luo et al. (2023) B1-MgO pressure scale as a 0 K Vinet curve plus
54
+ the published absolute second-order thermal-pressure polynomial, with all
55
+ five new shock states and the complete 576-value Tables II--III P-V-T grid.
56
+ - Added the primary-source-audited Dewaele et al. (2000) B1-MgO BM3-MGD EOS
57
+ and all 61 P-V-T observations from its Table 2. The record preserves the
58
+ Jamieson platinum pressure basis, distinguishes adopted, fitted, and fixed
59
+ quantities, reproduces the paper's 145 GPa BM3 benchmark at `V/V0=0.667`,
60
+ and recovers `q` within combined two-sigma uncertainty from the 41 new heated
61
+ rows with `gamma0` fixed as in the source's staged procedure. The paper's
62
+ Murnaghan, Vinet, logarithmic, and alternate
63
+ BM3 rows are documented as comparison fits rather than duplicate EOS records.
64
+ - Added a primary-source-validated Vinet--Mie--Gruneisen--Debye EOS for cubic
65
+ CaSiO3 perovskite from Kawai and Tsuchiya (2014), together with all 60
66
+ published Table 1 isochor benchmarks, explicit computational provenance,
67
+ source inconsistencies, and a documented raw-data/refit limitation.
68
+ - Added the Wang et al. (2012) stishovite Vinet-Mie--Gruneisen--Debye EOS and
69
+ all 56 Table 1 P-V-T observations with simultaneous Au calibrant volumes and
70
+ printed uncertainties. The source's equally successful BM3 alternative,
71
+ 300 K thermal reference correction, Tsuchiya (2003) Au calibration lineage,
72
+ numerical Table 3 checks, and an errors-in-variables parity refit are fully
73
+ documented.
74
+ - Added the two distinct Reynard et al. (1996) MgSiO3-akimotoite BM3 fits on
75
+ the ruby-fluorescence and preferred ice-VII pressure assignments, together
76
+ with all 16 Table 1 unit-cell observations, paired ice-VII calibrant volumes,
77
+ pressure-scale provenance, independent high-pressure reproductions, and
78
+ parity-checked refits with the published 212 GPa bulk modulus held fixed.
79
+ - Added the Schulze et al. (2018) Phase Egg single-crystal BM3 EOS and all 16
80
+ printed compression rows, with the excluded ambient observation flagged and
81
+ the 15-row fit independently reproduced. The record distinguishes the
82
+ analyzed `Al0.98Si0.92H1.39O4` composition from the ideal `AlSiO3OH`
83
+ structural model, traces the hydrogen coordinate to Schmidt et al. (1998),
84
+ and explains why the paper's Vanpeteghem-data refit is not a second EOS for
85
+ the 2018 specimen. The Dewaele et al. (2008) ruby calibration used by the
86
+ experiment is now executable and linked explicitly.
87
+ - Added one primary-sourced static 0 K Phase Egg LP BM3 record from Mookherjee
88
+ et al. (2019), including the official 11-row supplementary P-V grid,
89
+ diffraction-ready Schmidt et al. (1998) structure, published-value
90
+ reproduction, and diagnostic coefficient-parity refit. The canonical final
91
+ DOI is `10.2138/am-2019-6694`; the 2018 accepted-manuscript DOI is retained
92
+ only as source lineage to prevent a duplicate publication record.
93
+ - Added the selected Shi et al. (2022) Rh2O3(II)-type Al2O3 BM3-MGD thermal
94
+ EOS as a distinct `Pbcn` phase, with all 75 official supplementary P-T-V
95
+ observations, published uncertainties, Pt pressure-scale provenance,
96
+ source-state reproduction, and an independent errors-in-variables refit.
97
+ The audit documents all eight corundum/Rh2O3(II) sensitivity fits and avoids
98
+ treating LitCurate's flattened BM3 rows as independent isothermal records.
99
+
100
+ - Added the Campbell and Heinz (1994) RbCl-B2 BM3 material, including all 24
101
+ Table 1 observations and a parity-checked refit. Corrected the CsCl resource,
102
+ which had mistakenly contained an incomplete subset of the RbCl table, and
103
+ added all nine Yagi (1978) CsCl compression ratios needed for the complete
104
+ 22-point parity reproduction.
105
+
106
+ - Added Birch-Murnaghan Eulerian finite-strain/normalized-stress diagnostics,
107
+ including first-order P-V error propagation and fitted-model curves. The
108
+ numerical API is plotting-library independent; an executable notebook shows
109
+ how to produce the conventional F-f plot with Matplotlib.
110
+
111
+ - Added phase-specific linear `Us`-`up` shock Hugoniot EOSs in Python and Rust,
112
+ including Rankine--Hugoniot pressure-volume inversion, velocity, density,
113
+ energy, tangent-modulus, uncertainty propagation, OLS/WLS/errors-in-variables
114
+ fitting, JSON-serializable fit results, and typed precursor, mass-basis, and
115
+ branch-domain APIs. Hugoniots remain in `Material.eos_records`, with filtered
116
+ `hugoniot_records` and `equilibrium_records` views and category-scoped
117
+ defaults. Loading history and transformed-branch identity are independent;
118
+ record evaluation enforces the declared branch domain, while `V0`, `rho0`,
119
+ formula units, and molar mass are cross-validated. Structured derivation
120
+ metadata covers coefficients obtained from SESAME or published tables.
121
+ - Added a bundled executable pressure-calibration library for the Mao (1978),
122
+ Mao--Xu--Bell (1986), Dewaele (2004, 2008), Holzapfel (2005), and
123
+ Dorogokupets--Oganov (2007), and IPPS-Ruby2020 ruby R1 scales in Python and
124
+ Rust, together with the Akahama--Kawamura (2006) and Eremets et al. (2023)
125
+ diamond-anvil Raman-edge scales. All 34
126
+ identified ruby-calibrated material records now link to an exact calibration
127
+ identifier. Public APIs convert ruby scales through the R1 wavelength ratio,
128
+ diamond scales through the Raman wavenumber ratio, transform XRD pressure
129
+ scales through virtual same-standard volumes, and recursively normalize a
130
+ material EOS through its recorded calibration graph. An explicit edge
131
+ registry preserves the sources and transformations for simultaneous and
132
+ jointly optimized cross-calibrations. New records add the Fratanduono (2021)
133
+ Au anchor and the Tateno (2019) and Chidester (2021) B2-KCl thermal EOSs; the
134
+ complete 155-row Chidester KCl/Pt-derived-pressure table is bundled. The
135
+ complete Dorogokupets--Oganov (2007) Pt four-oscillator thermal EOS is now
136
+ implemented in Python and Rust and makes the Chidester KCl-to-Pt edge
137
+ executable, including the published KCl-effective-to-Pt-surface temperature
138
+ transformation.
139
+ Observation-level re-reduction from paired measured calibrant volumes remains
140
+ available as a separate operation. A dedicated pressure-scale normalization
141
+ guide documents valid same-standard, ruby, and cross-material paths, the
142
+ qualifying literature, validity and uncertainty rules, and current library
143
+ coverage. A set-level route helper now finds and ranks XRD-standard targets
144
+ reachable from every supplied EOS, with an executable notebook covering
145
+ direct, optical, recursive, and temperature-transforming routes.
146
+ - Added the complete 51-row Somayazulu et al. (2023) B4C P-V-T table as a
147
+ provenance-bearing `.eosmat` dataset, linked it to new MGD and Berman thermal
148
+ records, and added a reproducible comparison of published, effective-
149
+ variance, and latent-coordinate fits. The open-source EosFit engine audit
150
+ also adds an explicit truncated-quadratic `berman` reference-volume law in
151
+ Python, Rust, and the interchange schema. An opt-in
152
+ `b4c_somayazulu_2023_berman_refit` record carries the EosFit7c public-data
153
+ refit alongside, without replacing, the published parameterization; generic
154
+ refit lineage and fit-provenance fields make that distinction machine-readable.
155
+ - Added typed `search_materials()` and `search_eos_records()` discovery across
156
+ identity and aliases, formula and phase, equation family, DOI and reference,
157
+ thermal/caloric capability, uncertainty, scientific-validation status, and
158
+ closed calibration ranges with explicit `contains` or `overlaps` semantics.
159
+ - Failed material, record, and raw-document identifier lookups now suggest
160
+ close stable identifiers.
161
+ - Calibration discovery treats missing bounds as unknown rather than unbounded,
162
+ and material searches require all record-level criteria to match one record.
163
+ - Added forward DAC-confinement prediction through
164
+ `volume_with_dac_confinement(P_cold, T, f_dac=...)`, together with an explicit
165
+ reference-relative `thermal_pressure_increment()` for displaying the full
166
+ thermal increment, retained confinement pressure, and total hot pressure.
167
+ Python material records and the Rust scalar, batch, and `.eosmat` APIs expose
168
+ the same workflow in their public volume conventions.
169
+ - Added `DoubleDebyeLogMomentHelmholtz` in Python and Rust together with the
170
+ primary-source-validated Correa et al. (2008) diamond record. The complete
171
+ Helmholtz model implements the Vinet cold curve, logarithmic-moment
172
+ double-Debye weights, zero-point motion, and the published $T^2$
173
+ anharmonic contribution, with pressure, volume, energy, entropy, and heat
174
+ capacity evaluation.
175
+ - Added optional reference-isotherm anchoring to both double-Debye Helmholtz
176
+ models. A numeric `Tr` subtracts the simulated ionic and anharmonic
177
+ contribution at that temperature before adding it to `rt_eos`; `Tr=null` in
178
+ `.eosmat` preserves the literal 0 K cold-curve formulation. The catalog now
179
+ includes Correa- and Benedict-thermal diamond variants anchored to the
180
+ experimental Dewaele 298 K Vinet isotherm.
181
+ - Added a shared Python/Rust error contract with domain-specific Python
182
+ exceptions, stable machine-readable codes and context, Rust error-kind
183
+ accessors, preserved fitting source chains, and native-extension parity.
184
+ - Added interpreted Rust `EosFitResult` parameters, latent states, profiled
185
+ covariance, standard errors, correlation, and fit statistics.
186
+ - Added public Rust `.eosmat` validation, serialization, and save APIs with
187
+ extension-preserving canonical and legacy round trips.
188
+ - Added PEP 561 typing metadata and a repository-wide `mypy` CI gate.
189
+ - Added array-aware pressure and temperature conversions to `peritheos.units`,
190
+ plus conventional-cell to formula-molar-volume conversion in both directions.
191
+ - Added separate complete-Python and native Rust coverage gates and
192
+ property-oriented native-versus-compatibility tests.
193
+ - Added workflow-oriented Rust API documentation, six executable core and
194
+ fitting examples, docs.rs metadata, and warning-free rustdoc/doctest CI.
195
+
196
+ ### Changed
197
+
198
+ - Corrected the B2-KCl refit reproductions for Walker (2002), Tateno et al.
199
+ (2019), and Chidester et al. (2021). Walker now follows the source's staged,
200
+ unweighted preferred
201
+ fit. Tateno now uses the final published `gamma0=2.3`, `q=0.8`, integrated-
202
+ Gruneisen Debye law, and the correctly aligned official Supplemental Table S1
203
+ workbook rather than the split accepted-manuscript table. Chidester now uses
204
+ the source's full simultaneous fit scope—123 Dewaele room-temperature rows
205
+ plus 155 new high-temperature rows—and the integrated-Gruneisen Debye law,
206
+ eliminating the false `q=0` boundary and recovering all five coefficients.
207
+ - Unified the normal Python material API with the bundled `.eosmat` library.
208
+ `list_materials()` and `list_eos_records()` now return all bundled materials
209
+ and directly executable records in deterministic identifier order. Historical
210
+ pressure-scale identifiers and constants remain numerically stable
211
+ compatibility lookups after a record-by-record audit, while
212
+ `get_material_document()` remains the advanced raw-document API.
213
+ - Canonical identifiers now take precedence over historical convenience names.
214
+ In particular, `get_material("diamond")` returns the complete seven-record
215
+ document-built material instead of the former five-record convenience
216
+ grouping; all historical diamond records remain available by their record
217
+ identifiers and compatibility constants.
218
+ - EOS records now evaluate extrapolated states by default. Published ranges are
219
+ treated as calibration/data coverage, with opt-in enforcement through
220
+ `check_validity=True`; `within_calibration_range()` is the preferred coverage
221
+ query and `within_validity()` remains a compatibility alias.
222
+ - Documented the factor-of-two normalization conflict between the Correa (2008)
223
+ and Benedict (2014) diamond anharmonic terms while preserving each published
224
+ equation and coefficient literally. For the published diamond parameters the
225
+ coefficient is volume independent, so this discrepancy affects caloric
226
+ quantities but not direct $P(V,T)$ or $V(P,T)$ evaluation.
227
+ - Expanded Python fallback, Rust batch, error-category, thermal-domain, and
228
+ `.eosmat` validation tests; raised the branch-aware Python coverage floor to
229
+ 90% and the Rust line-coverage floor to 85%.
230
+ - Consolidated the public `peritheos-core` and `peritheos-fit` Rust crates into
231
+ one `peritheos` crate. Fitting and uncertainty APIs now live under
232
+ `peritheos::fit`; the Python API is unchanged.
233
+ - Deprecated the old `peritheos.utils` pressure and temperature conversion
234
+ imports in favor of the consolidated `peritheos.units` API.
235
+ - Reworked the getting-started documentation around validated material records,
236
+ clarified source-build requirements, and grouped contributor-only design
237
+ documents outside the main user navigation.
238
+
239
+ ## [0.6.0] - 2026-09-01
240
+
241
+ ### Added
242
+
243
+ - Added the generic `DoubleDebyeHelmholtz` full-free-energy EOS with a Vinet
244
+ 0 K cold curve, volume-dependent double-Debye modes and weights, zero-point
245
+ motion, a volume-dependent $T^2$ correction, analytic pressure, normal
246
+ pressure/volume/temperature inversion, fitting support, and documented
247
+ Benedict et al. diamond parameters as an example rather than model defaults.
248
+ The public Rust core implements the same Helmholtz, pressure, caloric, and
249
+ inversion equations and loads the model through native `.eosmat` dispatch.
250
+ - Added the Benedict et al. (2014) diamond coefficients as an audited material
251
+ record in both the curated catalog and bundled `.eosmat` library, with
252
+ explicit per-atom/conventional-cell conversion and cold-curve caveats.
253
+ - Added DAC two-volume temperature inversion for absolute Helmholtz models by
254
+ defining the confined thermal pressure relative to the 300 K isotherm; the
255
+ material-record wrapper accepts conventional-cell volumes directly.
256
+ - Added native Rust loading for canonical Peritheos format-3 and legacy
257
+ Dioptas format-2 `.eosmat` files, with executable runtime-dispatched EOS
258
+ records, preserved JSON extensions, and automatic conventional-cell to
259
+ molar-volume conversion for energy-based thermal models.
260
+ - Added eight executable notebook tutorials covering pressure calibration,
261
+ material-library exploration, `.eosmat` round trips, room-temperature EOS
262
+ and gold-scale comparisons, thermal state surfaces, DAC temperature
263
+ sensitivity, and fit-to-prediction uncertainty propagation.
264
+
265
+ ### Fixed
266
+
267
+ - Corrected the scientific provenance of all eleven Sokolova pressure scales:
268
+ their reference inputs and final coefficients originate in Sokolova et al.
269
+ (2013), Tables 1 and 4, while the 2016 paper is the spreadsheet
270
+ implementation/correction source. Each material record now carries structured
271
+ source lineage and fitting-data caveats. The misleading `_sokolova_2016`
272
+ record identifiers and public constants were removed in favor of
273
+ `_sokolova_2013`; `Sokolova2016` remains the corrected calculator formalism.
274
+ - Replaced the migrated InN BM3/experimental-volume hybrid with Muñoz and
275
+ Kunc's published theoretical wurtzite Murnaghan fit, including a reference
276
+ volume reconstructed from their Table 1 theoretical lattice constants.
277
+ - Made the Campbell--Heinz B2-KCl entry an explicit two-primary-source
278
+ composite: its absolute `V0` and propagated error now follow from the
279
+ published B2/B1 volume ratio and Dewaele et al.'s B1 reference volume.
280
+ - Consolidated duplicate `majorite`/`mgsio3-maj` materials, corrected the
281
+ Hanfland lithium equation family from BM3 to its combined-phase Vinet form,
282
+ and removed the unsupported Fei-FeO and Hixson-W standalone BM3 records.
283
+ - Resolved the remaining primary-source blockers for CsCl, magnetite, Li,
284
+ majorite, MW60 magnesiowuestite, NiS, phase D, cubic SnO2, and SrO B1/B2.
285
+ Corrected equation orders, cell conventions, phases, fitted-versus-fixed
286
+ flags, ranges, and all printed parameter errors. Phase D now has distinct
287
+ AntA and AntB reference-volume records, and the inherited unsupported
288
+ majorite error and tenfold SnO2 volume-error transcription are removed.
289
+ - Marked the published parameter errors for 14 Al, Cu, W, Ni, Ag, diamond,
290
+ alpha/omega-Ti, Si-V/Si-VII/Si-X, Re, corundum, and LiF records as 95%
291
+ confidence half-widths. File-loaded uncertainty propagation now converts
292
+ these intervals to normal-equivalent standard errors instead of treating
293
+ them as one-standard-deviation errors.
294
+ - Corrected the imported Dioptas Fei et al. (2007) Au and Ne records to use
295
+ `MieGruneisenDebye` with `debye_temperature_law="variable_exponent"` rather
296
+ than the implicit `integrated_gruneisen` default. The `.eosmat` records
297
+ preserve the original behavior and cite equation 3 in explicit
298
+ migration-correction metadata.
299
+ - Corrected the Hazen--Finger (1979) zircon record from an inconsistent BM2
300
+ representation to BM3 with the published assumed `K0' = 6.5`, including the
301
+ reported `V0` uncertainty.
302
+ - Corrected the Holmes et al. (1989) platinum record from BM3 to its published
303
+ universal (Vinet) isotherm, restored its model reference volume and
304
+ 0--550 GPa static range, and represented Equation (12) with the published
305
+ constant thermal-pressure coefficient.
306
+ - Restored the Ross (1997) magnesite fitted `V0` and uncertainty and normalized
307
+ the Haines et al. (2001) Mo2C reference volume from the primary specimen's
308
+ measured ambient lattice parameters.
309
+ - Corrected primary-source values and error metadata for CaSiO3, CaO B1/B2,
310
+ rutile GeO2/SnO2, PbS B1, wadsleyite, jadeite, and B2 KCl; corrected the
311
+ migrated B2-KCl thermal component to Walker et al.'s additive BE1 form and
312
+ retained the published uncertainty of its directly fitted `alpha0*K0`
313
+ product. Published errors are retained even where the associated value was
314
+ fixed during a fit, as for Shim et al.'s CaSiO3 `V0`.
315
+ - Replaced the migrated Anderson et al. Au `AlphaKT` approximation with the
316
+ exact Equation (29) logarithmic-volume linear thermal pressure, restored its
317
+ density-derived reference volume, Table V domain, and partial published
318
+ `(dKT/dT)V` uncertainty, and promoted the record after primary-source review.
319
+ - Removed the Martinez et al. aragonite global HT-BM3 record: Table 7 omits
320
+ its fitted `V0(298 K)`, and the remaining coefficients do not reproduce the
321
+ printed 64-point table under documented pressure- or volume-residual least
322
+ squares. The independently reproducible staged BM2 result is retained and
323
+ extended with its published Equation (2) `K0(T)` slope and Equation (3)
324
+ direct-linear reference-volume law.
325
+ - Promoted the Scott et al. (2001) cementite BM3 record after checking the
326
+ complete primary article: the ambient `V0`, weighted-fit coefficients, all
327
+ printed errors, 300 K reference state, and compression interval are now
328
+ traced to pages 1875--1877. The measured `V0` is explicitly fixed in the
329
+ fit metadata, and the unreported covariance/confidence convention remains
330
+ documented rather than inferred.
331
+ - Corrected the Clendenen and Drickamer (1966) CoO record from an inherited
332
+ BM3 representation to the published Murnaghan Equation 4, restored the
333
+ Table II ambient cell and Table III 30.8 GPa range, and retained null errors
334
+ because the primary paper reports no parameter uncertainty or covariance.
335
+ - Promoted the Noguchi et al. (1999) NiO shock-derived 300 K BM3 isotherm after
336
+ checking the official 1998 primary conference paper for the sample reference
337
+ lattice, its propagated uncertainty, and the Mie--Gruneisen reduction. The
338
+ final journal article supplies the 147.6 GPa range and `K0`/`K0'`; their
339
+ errors remain null because the authors do not report them.
340
+
341
+ ### Added (catalog and native backend)
342
+
343
+ - An executable documentation notebook using the complete printed Martinez et
344
+ al. (1996) aragonite Table 3 dataset to demonstrate 298 K and staged-isotherm
345
+ BM2 fitting, thermal-trend recovery, scaled joint P-V-T fitting, residual
346
+ visualization, and uncertainty/chi-square interpretation.
347
+ - A reproducible primary-source audit for the curated migrated `.eosmat` EOS
348
+ records. All 147 bundled records are now directly validated against original
349
+ publications, official supplements, or stable institutional reports, and no
350
+ record remains pending or deferred. The
351
+ bundled machine-readable ledger records source locations, the independently
352
+ checked Shen--Smith (2026) Vinet fits and errors, the B4C order inconsistency,
353
+ and the restored Hanfland graphite `V0` uncertainty.
354
+ - A mechanism-oriented `ThermalReferenceStateEOS` implementation for the
355
+ temperature-dependent `V0(T)`/`K0(T)` formulation used by the validated ice
356
+ VI/VII records. It now supports a generic `thermal_expansion_law`, including
357
+ exact analytical integration of `alpha0+alpha1*T`; the constant law remains
358
+ backward compatible. A separate `reference_volume_law="linear_temperature"`
359
+ represents a directly linear mean-expansion relation without conflating it
360
+ with integrated instantaneous expansivity. The Dioptas `AlphaKT` interchange
361
+ type maps to the canonical `thermal_reference_state` model identifier.
362
+ - Primary-source-validated native material records for the Martinez et al.
363
+ (1996) staged aragonite BM2 P-V-T parameterization and the Dewaele et al. (2012) B2-KCl
364
+ P-V-T pressure calibration. KCl uses the paper's Vinet reference isotherm,
365
+ additive thermal-pressure term, fixed fictive `V0`, and explicit
366
+ experimental-versus-computational validity provenance. It is the preferred
367
+ `kcl.eosmat` record. After primary-source corrections and duplicate removal,
368
+ the catalog now contains 147 records, all validated.
369
+ - Primary-audit corrections restore Sokolova `n`/`Z`, silica Debye `n`, and
370
+ ice `Tr` inputs omitted by migration; every validated migrated record is
371
+ constructability-tested.
372
+ - A reproducible BurnMan/Pytheos public-API black-box comparison report,
373
+ deliberately separated from primary-source validation and test baselines.
374
+ - Executable `Material` conversion through the same canonical `.eosmat`
375
+ format 3 used for Dioptas exchange. Optional symmetry, lattice, space-group,
376
+ atom-site, peak, and unknown extension fields survive a Peritheos round
377
+ trip; cell-to-molar volume conversion is explicit per EOS record. Loading
378
+ uses a fixed model registry, refuses unaudited records by default, and keeps
379
+ snapshot-v2 reading only for compatibility.
380
+ - A configurable `debye_temperature_law` on `MieGruneisenDebye`, with
381
+ `integrated_gruneisen` as the backward-compatible default and
382
+ `variable_exponent` for sources that directly publish a volume-dependent
383
+ exponent. Also added the mechanism-named
384
+ `MultiOscillatorGruneisenThermalEOS` class, which accepts any
385
+ isothermal `EosBase` and uses a generic numerical $dK/dP$ fallback where
386
+ needed; the earlier paper-named imports remain compatibility aliases.
387
+
388
+ - A first-class `Material`/`EOSRecord` catalog API with GPa pressure, conventional-unit-cell
389
+ volumes, scalar/array pressure and volume inversion, explicit material/phase
390
+ and unit metadata, DOI-level parameter provenance, published validity
391
+ envelopes, JSON-safe catalog records, and uncertainty propagation from
392
+ measured volume/temperature and published parameter errors.
393
+ - A primary-source-validated catalog: Tange et al. (2009) Fit3-Vinet
394
+ P-V-T MgO B1 and the Dorfman et al. (2012) 300 K Vinet co-compression scales
395
+ for Au, Pt, Mo, NaCl B2, and Ne; Dewaele 2019 LiF and NaCl B1/B2; Dewaele
396
+ 2012 KCl and KBr B1/B2; Datchi 2007 c-BN; and Dewaele 2008 diamond, Ag,
397
+ and Ni.
398
+ - All eleven Sokolova thermal pressure markers: MgO, diamond, Al, Cu, Ag, Au,
399
+ Pt, Nb, Ta, Mo, and W, with the original 2013 fit provenance and the
400
+ corrected 2016 workbook equations.
401
+ - The Fei et al. (2007) internally consistent Au, Pt, NaCl-B2, and Ne thermal
402
+ scales and a dedicated Debye-temperature convention that preserves the
403
+ paper's equation rather than substituting the generic integrated form.
404
+ - The quasi-hydrostatic 300 K hcp Re Vinet scale of Anzellini et al. (2014),
405
+ with Table III lattice-data regressions and its published 95% fit intervals
406
+ retained distinctly from one-standard-deviation errors.
407
+ - The Tange et al. volume-dependent Gruneisen Mie-Gruneisen-Debye thermal model,
408
+ with printed Table 5 regression cases and analytic thermodynamic checks.
409
+ - A reusable linear thermal-pressure EOS for the Dewaele KCl/KBr equation and
410
+ state-only uncertainty propagation where a source reports no parameter errors.
411
+ - A Peritheos-owned flat `.eosmat` format 3, normative JSON Schema, complete
412
+ 115-material/147-record EOS database migrated from Dioptas 0.10.0 with
413
+ explicit validation status and provenance, legacy Dioptas format-2 input,
414
+ and tested Dioptas 0.10.0 read compatibility. A dedicated schema reference
415
+ documents every field, discriminator pairing, default, unit, validation
416
+ status, and consumer compatibility rule.
417
+ - A Rust workspace containing native EOS, fitting, uncertainty, and private
418
+ PyO3 binding crates, with Rust 1.83 as the library MSRV.
419
+ - Shared Python/Rust compatibility fixtures and migration baselines for all
420
+ isothermal and thermal model families.
421
+ - Multi-platform native-wheel release jobs for supported CPython versions on
422
+ Linux x86-64/ARM64, macOS Intel/Apple Silicon, and Windows x86-64.
423
+ - Pull-request wheel build and isolated-install smoke tests on Linux, macOS,
424
+ and Windows, complementing the full tagged-release wheel matrix.
425
+ - Dependency-free public Rust batch traits, typed joint EOS fitting, and
426
+ model-aware linear and Monte Carlo uncertainty entry points.
427
+ - Package-contained scientific fixtures and a two-crate archive verifier that
428
+ tests the required core-before-fit crates.io publication sequence.
429
+ - A pinned Rust dependency-source and SPDX-license audit covering the supported
430
+ Linux, macOS, and Windows target graphs.
431
+
432
+ ### Changed
433
+
434
+ - Built-in Python EOS classes now preserve their public API while delegating
435
+ evaluation, inversion, thermoelastic, and caloric calculations to Rust.
436
+ - The material catalog's linear, logarithmic-volume, configurable
437
+ reference-state, variable-exponent Debye, asymptotic-power-law Debye, and
438
+ generic multi-oscillator mechanisms now use the same native evaluation and
439
+ fitting architecture. Thermal fits accept fixed categorical equation choices
440
+ through `configuration`, and native linear uncertainty supports records with
441
+ measurement errors but no published parameter covariance.
442
+ - Named bounded robust fitting losses and uncertainty propagation statistics
443
+ now use native numerical kernels. Custom reference EOS classes, callable
444
+ fitting losses, and NumPy-seeded Monte Carlo draws retain documented
445
+ compatibility paths.
446
+ - Native fits now return their profiled global-parameter covariance directly;
447
+ Python no longer recomputes it through a separate SciPy/NumPy path.
448
+ - Errors-in-variables fits now use colored latent-coordinate Jacobians and a
449
+ block Schur-complement solve, with stress coverage for large and rank-deficient
450
+ datasets.
451
+ - Birch-Murnaghan kernels now use an algebraically equivalent cube-root form,
452
+ and large independent EOS arrays use deterministic thresholded parallel
453
+ evaluation while the Python interpreter lock is released.
454
+ - Holzapfel bulk-modulus derivatives now execute directly in Rust, obsolete
455
+ Python natural-strain coefficient formulas are removed, and the historical
456
+ coefficient-level Holzapfel helper remains available through a Rust-backed
457
+ compatibility wrapper.
458
+ - Native batch calls now have concurrent large-array stress coverage in
459
+ addition to deterministic order, shape, stride, and round-trip checks.
460
+ - Native least squares now equilibrates differently scaled Jacobian columns,
461
+ reports failed steps as failures instead of false `xtol` convergence, and
462
+ uses a rank-aware Moore-Penrose covariance calculation.
463
+ - Latent-coordinate covariance profiling now preserves observation-local
464
+ blocks, avoiding the previous dense cubic post-fit calculation.
465
+ - Native EOS dispatch is restricted to exact built-in Python classes so
466
+ subclass overrides and Debye/Einstein model identity remain authoritative.
467
+ - Linear uncertainty kernels now reject non-positive-semidefinite parameter
468
+ covariance and negative state variance instead of clamping invalid inputs.
469
+ - Tagged releases now include CPython 3.14 free-threaded wheels alongside the
470
+ standard CPython wheel matrix.
471
+
472
+ ## [0.5.0] - 2026-08-30
473
+
474
+ ### Added
475
+
476
+ - A comprehensive equation reference for every public isothermal and thermal
477
+ EOS, including parameter definitions, model domains, numerical inversion,
478
+ thermoelastic identities, fitting diagnostics, uncertainty propagation, and
479
+ explicit public-unit conversion factors.
480
+ - Documentation distinguishing the equations typeset in Sokolova et al. (2016)
481
+ from the accompanying Excel workbook calculation implemented by
482
+ `Sokolova2016`, including differences in the bulk-modulus derivative,
483
+ characteristic-temperature multiplier, oscillator pressure contributions,
484
+ reference-isotherm subtraction, and working pressure units.
485
+ - Temperature inversion from pressure and volume for all thermal EOS models,
486
+ including NumPy broadcasting through `temperature()` and
487
+ `calculate_temperature()`.
488
+ - Coupled temperature inference from ambient and heated volumes with a
489
+ fractional DAC confinement contribution through `temperature_from_volumes()`.
490
+ The empirical `f_dac * thermal_pressure` pressure increment is solved in its
491
+ algebraically reduced form and requires `0 <= f_dac < 1`.
492
+ Documentation distinguishes this fraction of EOS thermal pressure from a
493
+ fraction of cold pressure and describes its physical limits, calibration,
494
+ identifiability, baseline-drift, and uncertainty constraints.
495
+ - Fixed-volume preparation for temperature inversion, avoiding repeated
496
+ Sokolova volume-integral evaluations during root finding.
497
+
498
+ ### Changed
499
+
500
+ - Refreshed the locked runtime, development, documentation, and release
501
+ dependencies to their latest versions compatible with the supported Python
502
+ and declared package-version ranges.
503
+ - The minimum supported SciPy version is now 1.9.3, ensuring a stable binary
504
+ installation and numerical fitting path on Python 3.9 across supported
505
+ platforms.
506
+ - Documentation now uses Material for MkDocs with responsive navigation,
507
+ improved search and code presentation, and automatic light and dark themes.
508
+ - The model overview now focuses on model selection and reference-EOS
509
+ compatibility, while advanced two-volume DAC analysis has moved out of the
510
+ introductory tutorial into a dedicated guide.
511
+
512
+ ## [0.4.0] - 2026-08-09
513
+
514
+ ### Added
515
+
516
+ - Branch-aware coverage enforcement, Ruff lint and formatting gates, and a
517
+ minimum-supported-dependency CI job.
518
+ - Literature-tagged numerical cases for all public EOS families and an
519
+ independently solvable weighted least-squares fitting benchmark.
520
+ - Automatic GitHub Releases with source and wheel artifacts.
521
+ - Citation metadata, API stability, contribution, security, support, conduct,
522
+ issue, and pull-request policies.
523
+ - Versioned Read the Docs builds using the locked uv documentation environment.
524
+ - Joint reference-isotherm and thermal parameter fitting with complete
525
+ cross-covariance through `fit_joint_eos`.
526
+ - Per-observation correlated P-V and P-V-T covariance matrices and robust
527
+ least-squares losses for all fitting entry points.
528
+ - Human-readable fit summaries and versioned, JSON-safe result export including
529
+ model parameters, covariance, adjusted observations, diagnostics, and solver
530
+ metadata.
531
+
532
+ ### Changed
533
+
534
+ - Uncertainty propagation tests now cover Monte Carlo state sampling, invalid
535
+ covariance and option handling, one-sided numerical derivatives, wrapper
536
+ behavior, and failed sampling; branch-aware project coverage exceeds 90%.
537
+ - Corrected the fourth-order Birch-Murnaghan documentation to match its
538
+ implemented Eulerian-strain signs and exponents.
539
+ - Package maturity metadata now identifies the 0.4 development line as beta.
540
+ - The minimum supported NumPy version is now 1.21, matching the public typing
541
+ APIs used by Peritheos.
542
+ - Distribution package discovery is restricted to `peritheos`, preventing
543
+ generated documentation directories from entering or blocking builds.
544
+
545
+ ## [0.3.0] - 2026-08-08
546
+
547
+ ### Added
548
+
549
+ - Murnaghan, modified Tait, and second- through fourth-order natural-strain
550
+ room-temperature equations of state.
551
+ - Holland-Powell thermal modified Tait equation of state.
552
+ - Bounded P-V and P-V-T errors-in-variables fitting with independently optional
553
+ pressure, volume, and temperature standard errors.
554
+ - `FitResult` covariance, correlation, parameter-error, residual, chi-square,
555
+ information-criterion, and adjusted-state diagnostics.
556
+ - `EOSUncertainty` for propagating complete covariance matrices, parameter
557
+ errors with correlations, or partial independent parameter errors into EOS
558
+ calculations.
559
+ - Linear covariance propagation and reproducible Monte Carlo propagation for
560
+ pressure, volume, bulk modulus, and arbitrary public EOS quantities.
561
+ - Optional propagation of pressure, volume, and temperature errors in the
562
+ requested state.
563
+ - Explicit combination of separately quantified thermal and reference-EOS
564
+ uncertainty blocks.
565
+ - Isothermal compressibility, thermal expansivity, constant-volume and
566
+ constant-pressure heat capacities, thermodynamic Gruneisen parameter, and
567
+ adiabatic bulk modulus APIs.
568
+ - Vibrational entropy, internal energy, Helmholtz energy, enthalpy, and Gibbs
569
+ energy for the Mie-Gruneisen-Debye and Mie-Gruneisen-Einstein models.
570
+ - Molar-volume and density conversion helpers with explicit unit validation.
571
+ - Literature-tagged reference cases and expanded numerical regression tests.
572
+ - A multi-page MkDocs documentation site covering models, fitting,
573
+ uncertainty, properties, units, validation, references, and development.
574
+
575
+ ### Changed
576
+
577
+ - EOS models now expose reconstructable parameter values and safe parameter
578
+ replacement, including dotted reference-EOS parameters such as
579
+ `rt_eos.K0`.
580
+ - Thermal EOS calculations consistently document and enforce their molar
581
+ volume, pressure, and temperature units.
582
+ - CI now builds the documentation strictly, and source distributions include
583
+ documentation and literature-validation data.
584
+ - The legacy fitting argument `sigma` remains supported as an alias for
585
+ `pressure_sigma`.
586
+
587
+ ### Statistical assumptions
588
+
589
+ - Parameters omitted from an uncertainty specification are treated as exact.
590
+ - Individual parameter errors without a correlation matrix are treated as
591
+ mutually independent.
592
+ - Combining thermal and reference-EOS results from separate fits requires an
593
+ explicit block-independence assumption.
594
+
595
+ ## [0.2.0] - 2026-08-07
596
+
597
+ ### Added
598
+
599
+ - Fourth-order Birch-Murnaghan support.
600
+ - Complete Sokolova et al. (2016) pressure terms and parameters.
601
+ - Automated test and trusted PyPI publication workflows.
602
+
603
+ ### Changed
604
+
605
+ - EOS pressure and volume validation and inversion were hardened for invalid
606
+ and out-of-domain states.
607
+ - Project naming and release metadata were standardized.
608
+
609
+ [Unreleased]: https://github.com/CPrescher/peritheos/compare/v0.7.0...HEAD
610
+ [0.7.0]: https://github.com/CPrescher/peritheos/compare/v0.6.0...v0.7.0
611
+ [0.6.0]: https://github.com/CPrescher/peritheos/compare/v0.5.0...v0.6.0
612
+ [0.5.0]: https://github.com/CPrescher/peritheos/compare/v0.4.0...v0.5.0
613
+ [0.4.0]: https://github.com/CPrescher/peritheos/compare/v0.3.0...v0.4.0
614
+ [0.3.0]: https://github.com/CPrescher/peritheos/compare/v0.2.0...v0.3.0
615
+ [0.2.0]: https://github.com/CPrescher/peritheos/releases/tag/v0.2.0
@@ -4,8 +4,8 @@ message: >-
4
4
  original references for the equation-of-state models you use.
5
5
  title: Peritheos
6
6
  type: software
7
- version: 0.5.0
8
- date-released: 2026-08-30
7
+ version: 0.7.0
8
+ date-released: 2026-09-07
9
9
  authors:
10
10
  - family-names: Prescher
11
11
  given-names: Clemens
@@ -17,6 +17,7 @@ Run the same checks used by continuous integration:
17
17
  ```bash
18
18
  uv run ruff check .
19
19
  uv run ruff format --check .
20
+ uv run --python 3.9 mypy
20
21
  uv run pytest -q -W error --cov --cov-report=term-missing
21
22
  uv run --group docs mkdocs build --strict
22
23
  ```
@@ -35,6 +36,13 @@ uncertainty calculation should include:
35
36
  documentation; and
36
37
  - an entry under `Unreleased` in `CHANGELOG.md`.
37
38
 
39
+ New materials, literature parameterizations, refits, and equation families
40
+ must also follow the
41
+ [material and EOS contribution guide](https://peritheos.readthedocs.io/en/latest/adding-materials-and-eos/).
42
+ It defines the primary-data, crystallographic, provenance, numerical
43
+ reproduction, interchange, and testing requirements for acceptance into the
44
+ bundled library.
45
+
38
46
  Do not silently change an existing scientific convention. Follow the
39
47
  [API stability policy](https://peritheos.readthedocs.io/en/latest/api-stability/)
40
48
  and document any migration path.