pyEQL 1.4.0rc9__cp310-cp310-win_amd64.whl

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 (519) hide show
  1. pyEQL/__init__.py +50 -0
  2. pyEQL/_phreeqc.cp310-win_amd64.pyd +0 -0
  3. pyEQL/activity_correction.py +879 -0
  4. pyEQL/database/geothermal.dat +5693 -0
  5. pyEQL/database/llnl.dat +19305 -0
  6. pyEQL/database/phreeqc_license.txt +54 -0
  7. pyEQL/database/pyeql_db.json +35607 -0
  8. pyEQL/engines.py +1153 -0
  9. pyEQL/equilibrium.py +227 -0
  10. pyEQL/functions.py +281 -0
  11. pyEQL/phreeqc/__init__.py +5 -0
  12. pyEQL/phreeqc/bindings.cpp +84 -0
  13. pyEQL/phreeqc/core.py +239 -0
  14. pyEQL/phreeqc/database/Amm.dat +1968 -0
  15. pyEQL/phreeqc/database/CMakeLists.txt +32 -0
  16. pyEQL/phreeqc/database/ColdChem.dat +267 -0
  17. pyEQL/phreeqc/database/Concrete_PHR.dat +158 -0
  18. pyEQL/phreeqc/database/Concrete_PZ.dat +195 -0
  19. pyEQL/phreeqc/database/Kinec.v2.dat +12039 -0
  20. pyEQL/phreeqc/database/Kinec_v3.dat +12159 -0
  21. pyEQL/phreeqc/database/Makefile.am +28 -0
  22. pyEQL/phreeqc/database/Makefile.in +530 -0
  23. pyEQL/phreeqc/database/PHREEQC_ThermoddemV1.10_15Dec2020.dat +12965 -0
  24. pyEQL/phreeqc/database/Tipping_Hurley.dat +4137 -0
  25. pyEQL/phreeqc/database/__init__.py +0 -0
  26. pyEQL/phreeqc/database/core10.dat +6824 -0
  27. pyEQL/phreeqc/database/frezchem.dat +634 -0
  28. pyEQL/phreeqc/database/iso.dat +7235 -0
  29. pyEQL/phreeqc/database/llnl.dat +19310 -0
  30. pyEQL/phreeqc/database/minteq.dat +5654 -0
  31. pyEQL/phreeqc/database/minteq.v4.dat +13212 -0
  32. pyEQL/phreeqc/database/phreeqc.dat +1972 -0
  33. pyEQL/phreeqc/database/phreeqc_rates.dat +3158 -0
  34. pyEQL/phreeqc/database/pitzer.dat +1044 -0
  35. pyEQL/phreeqc/database/sit.dat +14348 -0
  36. pyEQL/phreeqc/database/wateq4f.dat +4036 -0
  37. pyEQL/phreeqc/ext/README.md +10 -0
  38. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/CMakeLists.txt +476 -0
  39. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/INSTALL +302 -0
  40. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/IPhreeqc.rc +61 -0
  41. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/IPhreeqcConfig.cmake.in +4 -0
  42. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/Makefile.am +8 -0
  43. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/Makefile.in +816 -0
  44. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/aclocal.m4 +1217 -0
  45. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/ALL_BUILD.vcxproj +185 -0
  46. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/ALL_BUILD.vcxproj.filters +8 -0
  47. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/generate.stamp +1 -0
  48. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/generate.stamp.depend +79 -0
  49. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CTestTestfile.cmake +6 -0
  50. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/Continuous.vcxproj +240 -0
  51. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/Continuous.vcxproj.filters +17 -0
  52. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/DartConfiguration.tcl +109 -0
  53. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/Experimental.vcxproj +240 -0
  54. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/Experimental.vcxproj.filters +17 -0
  55. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/INSTALL.vcxproj +209 -0
  56. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/INSTALL.vcxproj.filters +13 -0
  57. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/CSelectedOutput.obj +0 -0
  58. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/Dictionary.obj +0 -0
  59. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/ExchComp.obj +0 -0
  60. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/Exchange.obj +0 -0
  61. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/GasComp.obj +0 -0
  62. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/GasPhase.obj +0 -0
  63. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/IPhreeqc.lib.recipe +11 -0
  64. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/IPhreeqc.obj +0 -0
  65. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/IPhreeqc.tlog/CL.command.1.tlog +0 -0
  66. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/IPhreeqc.tlog/CL.read.1.tlog +0 -0
  67. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/IPhreeqc.tlog/CL.write.1.tlog +0 -0
  68. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/IPhreeqc.tlog/Cl.items.tlog +82 -0
  69. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/IPhreeqc.tlog/CustomBuild.command.1.tlog +10 -0
  70. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/IPhreeqc.tlog/CustomBuild.read.1.tlog +78 -0
  71. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/IPhreeqc.tlog/CustomBuild.write.1.tlog +2 -0
  72. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/IPhreeqc.tlog/IPhreeqc.lastbuildstate +2 -0
  73. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/IPhreeqc.tlog/Lib-link.read.1.tlog +0 -0
  74. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/IPhreeqc.tlog/Lib-link.write.1.tlog +0 -0
  75. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/IPhreeqc.tlog/Lib.command.1.tlog +0 -0
  76. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/IPhreeqcLib.obj +0 -0
  77. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/IPhreeqc_interface_F.obj +0 -0
  78. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/ISolution.obj +0 -0
  79. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/ISolutionComp.obj +0 -0
  80. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/Keywords.obj +0 -0
  81. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/KineticsComp.obj +0 -0
  82. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/NameDouble.obj +0 -0
  83. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/NumKeyword.obj +0 -0
  84. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/PBasic.obj +0 -0
  85. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/PHRQ_base.obj +0 -0
  86. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/PHRQ_io.obj +0 -0
  87. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/PHRQ_io_output.obj +0 -0
  88. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/PPassemblage.obj +0 -0
  89. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/PPassemblageComp.obj +0 -0
  90. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/Parser.obj +0 -0
  91. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/Phreeqc.obj +0 -0
  92. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/Pressure.obj +0 -0
  93. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/Reaction.obj +0 -0
  94. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/ReadClass.obj +0 -0
  95. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/SS.obj +0 -0
  96. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/SSassemblage.obj +0 -0
  97. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/SScomp.obj +0 -0
  98. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/SelectedOutput.obj +0 -0
  99. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/Serializer.obj +0 -0
  100. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/Solution.obj +0 -0
  101. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/SolutionIsotope.obj +0 -0
  102. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/StorageBin.obj +0 -0
  103. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/StorageBinList.obj +0 -0
  104. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/Surface.obj +0 -0
  105. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/SurfaceCharge.obj +0 -0
  106. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/SurfaceComp.obj +0 -0
  107. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/System.obj +0 -0
  108. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/Temperature.obj +0 -0
  109. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/Use.obj +0 -0
  110. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/UserPunch.obj +0 -0
  111. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/Utils.obj +0 -0
  112. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/Var.obj +0 -0
  113. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/advection.obj +0 -0
  114. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/basicsubs.obj +0 -0
  115. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/cl1.obj +0 -0
  116. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/cvdense.obj +0 -0
  117. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/cvode.obj +0 -0
  118. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/cxxKinetics.obj +0 -0
  119. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/cxxMix.obj +0 -0
  120. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/dense.obj +0 -0
  121. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/dumper.obj +0 -0
  122. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/gases.obj +0 -0
  123. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/input.obj +0 -0
  124. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/integrate.obj +0 -0
  125. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/inverse.obj +0 -0
  126. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/isotopes.obj +0 -0
  127. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/kinetics.obj +0 -0
  128. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/mainsubs.obj +0 -0
  129. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/model.obj +0 -0
  130. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/nvector.obj +0 -0
  131. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/nvector_serial.obj +0 -0
  132. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/parse.obj +0 -0
  133. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/phqalloc.obj +0 -0
  134. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/pitzer.obj +0 -0
  135. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/pitzer_structures.obj +0 -0
  136. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/prep.obj +0 -0
  137. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/print.obj +0 -0
  138. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/read.obj +0 -0
  139. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/readtr.obj +0 -0
  140. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/runner.obj +0 -0
  141. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/sit.obj +0 -0
  142. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/smalldense.obj +0 -0
  143. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/spread.obj +0 -0
  144. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/step.obj +0 -0
  145. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/structures.obj +0 -0
  146. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/sundialsmath.obj +0 -0
  147. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/tally.obj +0 -0
  148. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/tidy.obj +0 -0
  149. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/transport.obj +0 -0
  150. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.dir/Release/utilities.obj +0 -0
  151. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.sln +116 -0
  152. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.vcxproj +443 -0
  153. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/IPhreeqc.vcxproj.filters +456 -0
  154. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/Nightly.vcxproj +240 -0
  155. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/Nightly.vcxproj.filters +17 -0
  156. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/NightlyMemoryCheck.vcxproj +240 -0
  157. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/NightlyMemoryCheck.vcxproj.filters +17 -0
  158. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/Release/IPhreeqc.lib +0 -0
  159. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/cmake_install.cmake +40 -0
  160. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/config/ar-lib +270 -0
  161. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/config/compile +347 -0
  162. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/config/config.guess +1441 -0
  163. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/config/config.sub +1813 -0
  164. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/config/depcomp +791 -0
  165. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/config/install-sh +508 -0
  166. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/config/ltmain.sh +11156 -0
  167. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/config/missing +215 -0
  168. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/config/test-driver +148 -0
  169. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/configure +23867 -0
  170. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/configure.ac +136 -0
  171. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/database/Amm.dat +1968 -0
  172. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/database/CMakeLists.txt +32 -0
  173. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/database/ColdChem.dat +267 -0
  174. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/database/Concrete_PHR.dat +158 -0
  175. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/database/Concrete_PZ.dat +195 -0
  176. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/database/Kinec.v2.dat +12039 -0
  177. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/database/Kinec_v3.dat +12159 -0
  178. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/database/Makefile.am +28 -0
  179. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/database/Makefile.in +530 -0
  180. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/database/PHREEQC_ThermoddemV1.10_15Dec2020.dat +12965 -0
  181. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/database/Tipping_Hurley.dat +4137 -0
  182. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/database/core10.dat +6824 -0
  183. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/database/frezchem.dat +634 -0
  184. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/database/iso.dat +7235 -0
  185. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/database/llnl.dat +19310 -0
  186. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/database/minteq.dat +5654 -0
  187. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/database/minteq.v4.dat +13212 -0
  188. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/database/phreeqc.dat +1972 -0
  189. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/database/phreeqc_rates.dat +3158 -0
  190. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/database/pitzer.dat +1044 -0
  191. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/database/sit.dat +14348 -0
  192. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/database/wateq4f.dat +4036 -0
  193. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/CMakeLists.txt +35 -0
  194. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/IPhreeqc.pdf +0 -0
  195. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/Makefile.am +24 -0
  196. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/Makefile.in +545 -0
  197. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/NOTICE +51 -0
  198. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/Phreeqc_2_1999_manual.pdf +0 -0
  199. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/Phreeqc_3_2013_manual.pdf +0 -0
  200. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/README +428 -0
  201. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/RELEASE +7294 -0
  202. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/IPhreeqc_8h.html +5096 -0
  203. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/IPhreeqc_8h_source.html +389 -0
  204. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/IPhreeqc_8hpp.html +83 -0
  205. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/IPhreeqc_8hpp_source.html +478 -0
  206. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/Var_8h.html +318 -0
  207. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/Var_8h_source.html +200 -0
  208. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/bc_s.png +0 -0
  209. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/bdwn.png +0 -0
  210. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/classIPhreeqc.html +2274 -0
  211. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/classIPhreeqc.png +0 -0
  212. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/classIPhreeqcStop.html +69 -0
  213. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/classIPhreeqcStop.png +0 -0
  214. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/closed.png +0 -0
  215. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/dir_68267d1309a1af8e8297ef4c3efbcdba.html +68 -0
  216. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/doxygen.css +1440 -0
  217. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/doxygen.png +0 -0
  218. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/dynsections.js +97 -0
  219. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/ftv2blank.png +0 -0
  220. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/ftv2doc.png +0 -0
  221. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/ftv2folderclosed.png +0 -0
  222. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/ftv2folderopen.png +0 -0
  223. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/ftv2lastnode.png +0 -0
  224. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/ftv2link.png +0 -0
  225. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/ftv2mlastnode.png +0 -0
  226. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/ftv2mnode.png +0 -0
  227. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/ftv2node.png +0 -0
  228. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/ftv2plastnode.png +0 -0
  229. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/ftv2pnode.png +0 -0
  230. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/ftv2splitbar.png +0 -0
  231. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/ftv2vertline.png +0 -0
  232. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/index.html +58 -0
  233. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/jquery.js +31 -0
  234. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/nav_f.png +0 -0
  235. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/nav_g.png +0 -0
  236. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/nav_h.png +0 -0
  237. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/open.png +0 -0
  238. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/structVAR.html +143 -0
  239. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/sync_off.png +0 -0
  240. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/sync_on.png +0 -0
  241. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/tab_a.png +0 -0
  242. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/tab_b.png +0 -0
  243. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/tab_h.png +0 -0
  244. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/tab_s.png +0 -0
  245. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/tabs.css +60 -0
  246. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/phreeqc3.chm +0 -0
  247. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/CMakeLists.txt +11 -0
  248. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/Makefile.am +88 -0
  249. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/Makefile.in +696 -0
  250. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/c/CMakeLists.txt +1 -0
  251. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/c/advect/CMakeLists.txt +35 -0
  252. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/c/advect/CMakeLists.txt.in +21 -0
  253. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/c/advect/README.txt +44 -0
  254. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/c/advect/advect.c +101 -0
  255. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/c/advect/ic +17 -0
  256. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/c/advect/phreeqc.dat +1579 -0
  257. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/com/CMakeLists.txt +10 -0
  258. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/com/README.txt +3 -0
  259. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/com/excel/CMakeLists.txt +9 -0
  260. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/com/excel/phreeqc.dat +1582 -0
  261. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/com/excel/runphreeqc.xls +0 -0
  262. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/com/excel/withcallback.xls +0 -0
  263. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/com/python/CMakeLists.txt +11 -0
  264. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/com/python/Gypsum.py +52 -0
  265. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/com/python/parallel_advect.py +465 -0
  266. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/com/python/phreeqc.dat +1582 -0
  267. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/com/python/pitzer.dat +790 -0
  268. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/com/python/wateq4f.dat +3846 -0
  269. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/cpp/CMakeLists.txt +1 -0
  270. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/cpp/advect/CMakeLists.txt +35 -0
  271. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/cpp/advect/CMakeLists.txt.in +20 -0
  272. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/cpp/advect/README.txt +45 -0
  273. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/cpp/advect/advect.cpp +110 -0
  274. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/cpp/advect/ic +17 -0
  275. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/cpp/advect/phreeqc.dat +1579 -0
  276. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/fortran/CMakeLists.txt +1 -0
  277. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/fortran/advect/CMakeLists.txt +44 -0
  278. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/fortran/advect/CMakeLists.txt.in +24 -0
  279. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/fortran/advect/README.txt +45 -0
  280. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/fortran/advect/advect.F90 +102 -0
  281. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/fortran/advect/ic +17 -0
  282. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/fortran/advect/phreeqc.dat +1579 -0
  283. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/using-cmake/CMakeLists.txt +26 -0
  284. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/using-cmake/CMakeLists.txt.in +20 -0
  285. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/using-cmake/README.txt +37 -0
  286. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/using-cmake/ex2 +26 -0
  287. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/using-cmake/main.cpp +20 -0
  288. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/using-cmake/phreeqc.dat +1837 -0
  289. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/using-cmake/post-install.cmake.in +7 -0
  290. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/gtest/CMakeLists.txt +185 -0
  291. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/gtest/FileTest.cpp +171 -0
  292. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/gtest/FileTest.h +34 -0
  293. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/gtest/Makefile.am +18 -0
  294. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/gtest/Makefile.in +466 -0
  295. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/gtest/TestCVar.cpp +9 -0
  296. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/gtest/TestIPhreeqc.cpp +4901 -0
  297. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/gtest/TestIPhreeqcLib.cpp +4644 -0
  298. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/gtest/TestSelectedOutput.cpp +669 -0
  299. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/gtest/TestVar.cpp +10 -0
  300. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/gtest/conv_fail.in +11 -0
  301. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/gtest/dump +42 -0
  302. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/gtest/iso.dat +7231 -0
  303. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/gtest/kinn20140218 +349 -0
  304. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/gtest/missing_e.dat +1556 -0
  305. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/gtest/multi_punch +105 -0
  306. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/gtest/multi_punch_no_set +102 -0
  307. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/gtest/phreeqc.dat.90a6449 +1935 -0
  308. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/gtest/phreeqc.dat.old +1556 -0
  309. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/m4/libtool.m4 +8388 -0
  310. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/m4/ltoptions.m4 +437 -0
  311. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/m4/ltsugar.m4 +124 -0
  312. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/m4/ltversion.m4 +23 -0
  313. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/m4/lt~obsolete.m4 +99 -0
  314. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/resource.h +14 -0
  315. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/CSelectedOutput.cpp +401 -0
  316. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/CSelectedOutput.hxx +77 -0
  317. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/CVar.hxx +162 -0
  318. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/Debug.h +12 -0
  319. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/ErrorReporter.hxx +70 -0
  320. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/IPhreeqc.cpp +1889 -0
  321. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/IPhreeqc.f.inc +91 -0
  322. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/IPhreeqc.f90.inc +603 -0
  323. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/IPhreeqc.h +2182 -0
  324. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/IPhreeqc.hpp +1027 -0
  325. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/IPhreeqcCallbacks.h +19 -0
  326. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/IPhreeqcF.f +653 -0
  327. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/IPhreeqcLib.cpp +1098 -0
  328. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/IPhreeqc_interface.F90 +1283 -0
  329. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/IPhreeqc_interface_F.cpp +535 -0
  330. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/IPhreeqc_interface_F.h +162 -0
  331. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/Makefile.am +210 -0
  332. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/Makefile.in +1294 -0
  333. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/README.Fortran +17 -0
  334. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/Var.c +84 -0
  335. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/Var.h +152 -0
  336. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/Version.h +36 -0
  337. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/fimpl.h +282 -0
  338. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/fwrap.cpp +646 -0
  339. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/fwrap.h +163 -0
  340. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/fwrap1.cpp +24 -0
  341. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/fwrap2.cpp +24 -0
  342. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/fwrap3.cpp +24 -0
  343. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/fwrap4.cpp +24 -0
  344. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/fwrap5.cpp +24 -0
  345. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/fwrap6.cpp +25 -0
  346. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/fwrap7.cpp +25 -0
  347. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/fwrap8.cpp +24 -0
  348. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/ChartHandler.cpp +225 -0
  349. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/ChartHandler.h +59 -0
  350. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/ChartObject.cpp +1382 -0
  351. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/ChartObject.h +444 -0
  352. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/CurveObject.cpp +42 -0
  353. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/CurveObject.h +79 -0
  354. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/Dictionary.cpp +41 -0
  355. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/Dictionary.h +28 -0
  356. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/ExchComp.cxx +398 -0
  357. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/ExchComp.h +117 -0
  358. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/Exchange.cxx +466 -0
  359. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/Exchange.h +74 -0
  360. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/Form1.h +1184 -0
  361. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/Form1.resX +36 -0
  362. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/GasComp.cxx +265 -0
  363. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/GasComp.h +59 -0
  364. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/GasPhase.cxx +659 -0
  365. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/GasPhase.h +103 -0
  366. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/ISolution.cxx +40 -0
  367. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/ISolution.h +53 -0
  368. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/ISolutionComp.cxx +202 -0
  369. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/ISolutionComp.h +138 -0
  370. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/KineticsComp.cxx +318 -0
  371. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/KineticsComp.h +81 -0
  372. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/NA.h +1 -0
  373. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/NameDouble.cxx +537 -0
  374. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/NameDouble.h +66 -0
  375. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/NumKeyword.cxx +190 -0
  376. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/NumKeyword.h +67 -0
  377. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/PBasic.cpp +8350 -0
  378. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/PBasic.h +572 -0
  379. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/PHRQ_io_output.cpp +411 -0
  380. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/PPassemblage.cxx +375 -0
  381. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/PPassemblage.h +70 -0
  382. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/PPassemblageComp.cxx +441 -0
  383. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/PPassemblageComp.h +83 -0
  384. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/Phreeqc.cpp +2087 -0
  385. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/Phreeqc.h +2164 -0
  386. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/PhreeqcKeywords/Keywords.cpp +242 -0
  387. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/PhreeqcKeywords/Keywords.h +104 -0
  388. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/Pressure.cxx +417 -0
  389. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/Pressure.h +43 -0
  390. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/Reaction.cxx +284 -0
  391. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/Reaction.h +57 -0
  392. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/ReadClass.cxx +1150 -0
  393. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/SS.cxx +609 -0
  394. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/SS.h +128 -0
  395. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/SSassemblage.cxx +317 -0
  396. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/SSassemblage.h +59 -0
  397. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/SScomp.cxx +297 -0
  398. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/SScomp.h +66 -0
  399. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/SelectedOutput.cpp +115 -0
  400. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/SelectedOutput.h +209 -0
  401. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/Serializer.cxx +213 -0
  402. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/Serializer.h +42 -0
  403. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/Solution.cxx +1795 -0
  404. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/Solution.h +154 -0
  405. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/SolutionIsotope.cxx +333 -0
  406. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/SolutionIsotope.h +85 -0
  407. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/StorageBin.cxx +1507 -0
  408. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/StorageBin.h +141 -0
  409. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/StorageBinList.cpp +358 -0
  410. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/StorageBinList.h +81 -0
  411. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/Surface.cxx +837 -0
  412. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/Surface.h +108 -0
  413. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/SurfaceCharge.cxx +617 -0
  414. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/SurfaceCharge.h +137 -0
  415. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/SurfaceComp.cxx +509 -0
  416. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/SurfaceComp.h +70 -0
  417. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/System.cxx +103 -0
  418. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/System.h +89 -0
  419. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/Temperature.cxx +423 -0
  420. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/Temperature.h +42 -0
  421. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/Use.cpp +78 -0
  422. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/Use.h +159 -0
  423. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/UserPunch.cpp +32 -0
  424. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/UserPunch.h +39 -0
  425. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/ZedGraph.dll +0 -0
  426. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/advection.cpp +140 -0
  427. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/basicsubs.cpp +4333 -0
  428. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/cl1.cpp +881 -0
  429. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/common/PHRQ_base.cxx +117 -0
  430. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/common/PHRQ_base.h +48 -0
  431. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/common/PHRQ_exports.h +20 -0
  432. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/common/PHRQ_io.cpp +914 -0
  433. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/common/PHRQ_io.h +207 -0
  434. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/common/Parser.cxx +1331 -0
  435. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/common/Parser.h +310 -0
  436. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/common/Utils.cxx +263 -0
  437. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/common/Utils.h +29 -0
  438. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/common/phrqtype.h +18 -0
  439. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/cvdense.cpp +566 -0
  440. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/cvdense.h +267 -0
  441. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/cvode.cpp +3939 -0
  442. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/cvode.h +940 -0
  443. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/cxxKinetics.cxx +617 -0
  444. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/cxxKinetics.h +78 -0
  445. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/cxxMix.cxx +154 -0
  446. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/cxxMix.h +58 -0
  447. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/dense.cpp +175 -0
  448. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/dense.h +341 -0
  449. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/dumper.cpp +277 -0
  450. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/dumper.h +60 -0
  451. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/gases.cpp +748 -0
  452. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/global_structures.h +1672 -0
  453. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/input.cpp +133 -0
  454. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/integrate.cpp +1219 -0
  455. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/inverse.cpp +5135 -0
  456. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/isotopes.cpp +1813 -0
  457. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/kinetics.cpp +3180 -0
  458. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/mainsubs.cpp +2320 -0
  459. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/model.cpp +5843 -0
  460. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/nvector.cpp +272 -0
  461. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/nvector.h +485 -0
  462. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/nvector_serial.cpp +1032 -0
  463. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/nvector_serial.h +369 -0
  464. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/parse.cpp +1044 -0
  465. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/phqalloc.cpp +316 -0
  466. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/phqalloc.h +47 -0
  467. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/pitzer.cpp +2709 -0
  468. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/pitzer_structures.cpp +225 -0
  469. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/prep.cpp +6267 -0
  470. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/print.cpp +3673 -0
  471. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/read.cpp +10245 -0
  472. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/readtr.cpp +1495 -0
  473. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/runner.cpp +158 -0
  474. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/runner.h +33 -0
  475. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/sit.cpp +1684 -0
  476. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/smalldense.cpp +324 -0
  477. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/smalldense.h +261 -0
  478. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/spread.cpp +1309 -0
  479. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/step.cpp +1566 -0
  480. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/structures.cpp +3381 -0
  481. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/sundialsmath.cpp +133 -0
  482. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/sundialsmath.h +162 -0
  483. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/sundialstypes.h +183 -0
  484. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/tally.cpp +1288 -0
  485. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/tidy.cpp +5600 -0
  486. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/transport.cpp +6403 -0
  487. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/utilities.cpp +1339 -0
  488. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/thread.h +64 -0
  489. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/tests/CMakeLists.txt +133 -0
  490. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/tests/Makefile.am +45 -0
  491. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/tests/Makefile.in +1128 -0
  492. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/tests/ex2.in +26 -0
  493. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/tests/main.f90 +31 -0
  494. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/tests/main77.f +6 -0
  495. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/tests/main_fortran.cxx +8 -0
  496. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/tests/phreeqc.dat.in +1556 -0
  497. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/tests/test_c.c +148 -0
  498. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/tests/test_cxx.cxx +152 -0
  499. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/tests/test_f90.F90 +328 -0
  500. pyEQL/phreeqc/iphreeqc_wrapper.cpp +75 -0
  501. pyEQL/phreeqc/solution.py +74 -0
  502. pyEQL/phreeqc/var.py +50 -0
  503. pyEQL/presets/Ringers lactate.yaml +20 -0
  504. pyEQL/presets/__init__.py +17 -0
  505. pyEQL/presets/normal saline.yaml +17 -0
  506. pyEQL/presets/rainwater.yaml +17 -0
  507. pyEQL/presets/seawater.yaml +29 -0
  508. pyEQL/presets/urine.yaml +26 -0
  509. pyEQL/presets/wastewater.yaml +21 -0
  510. pyEQL/py.typed +0 -0
  511. pyEQL/salt_ion_match.py +112 -0
  512. pyEQL/solute.py +163 -0
  513. pyEQL/solution.py +2714 -0
  514. pyEQL/utils.py +237 -0
  515. pyeql-1.4.0rc9.dist-info/METADATA +130 -0
  516. pyeql-1.4.0rc9.dist-info/RECORD +519 -0
  517. pyeql-1.4.0rc9.dist-info/WHEEL +5 -0
  518. pyeql-1.4.0rc9.dist-info/licenses/AUTHORS.md +21 -0
  519. pyeql-1.4.0rc9.dist-info/licenses/LICENSE.txt +20 -0
@@ -0,0 +1,1972 @@
1
+ # File 1 = C:\GitPrograms\phreeqc3-1\database\phreeqc.dat, 22/05/2024 19:38, 1948 lines, 55817 bytes, md5=78b3659799b73ddca128328b6ee7533b
2
+ # Created 22 May 2024 19:55:37
3
+ # C:\3rdParty\lsp\lsp.exe -f2 -k=asis -ts phreeqc.dat
4
+
5
+ # phreeqc.dat for calculating temperature and pressure dependence of reactions, and the specific conductance and viscosity of the solution. Based on:
6
+ # diffusion coefficients and molal volumina of aqueous species, solubility and volume of minerals, and critical temperatures and pressures of gases in Peng-Robinson's EOS.
7
+ # Details are given at the end of this file.
8
+
9
+ SOLUTION_MASTER_SPECIES
10
+ #
11
+ #element species alk gfw_formula element_gfw
12
+ #
13
+ H H+ -1 H 1.008
14
+ H(0) H2 0 H
15
+ H(1) H+ -1 H
16
+ E e- 1 0 0
17
+ O H2O 0 O 16
18
+ O(0) O2 0 O
19
+ O(-2) H2O 0 0
20
+ Ca Ca+2 0 Ca 40.08
21
+ Mg Mg+2 0 Mg 24.312
22
+ Na Na+ 0 Na 22.9898
23
+ K K+ 0 K 39.102
24
+ Fe Fe+2 0 Fe 55.847
25
+ Fe(+2) Fe+2 0 Fe
26
+ Fe(+3) Fe+3 -2 Fe
27
+ Mn Mn+2 0 Mn 54.938
28
+ Mn(+2) Mn+2 0 Mn
29
+ Mn(+3) Mn+3 0 Mn
30
+ Al Al+3 0 Al 26.9815
31
+ Ba Ba+2 0 Ba 137.34
32
+ Sr Sr+2 0 Sr 87.62
33
+ Si H4SiO4 0 SiO2 28.0843
34
+ Cl Cl- 0 Cl 35.453
35
+ C CO3-2 2 HCO3 12.0111
36
+ C(+4) CO3-2 2 HCO3
37
+ C(-4) CH4 0 CH4
38
+ Alkalinity CO3-2 1 Ca0.5(CO3)0.5 50.05
39
+ S SO4-2 0 SO4 32.064
40
+ S(6) SO4-2 0 SO4
41
+ S(-2) HS- 1 S
42
+ N NO3- 0 N 14.0067
43
+ N(+5) NO3- 0 N
44
+ N(+3) NO2- 0 N
45
+ N(0) N2 0 N
46
+ N(-3) NH4+ 0 N 14.0067
47
+ #Amm AmmH+ 0 AmmH 17.031
48
+ B H3BO3 0 B 10.81
49
+ P PO4-3 2 P 30.9738
50
+ F F- 0 F 18.9984
51
+ Li Li+ 0 Li 6.939
52
+ Br Br- 0 Br 79.904
53
+ Zn Zn+2 0 Zn 65.37
54
+ Cd Cd+2 0 Cd 112.4
55
+ Pb Pb+2 0 Pb 207.19
56
+ Cu Cu+2 0 Cu 63.546
57
+ Cu(+2) Cu+2 0 Cu
58
+ Cu(+1) Cu+1 0 Cu
59
+ # redox-uncoupled gases
60
+ Hdg Hdg 0 Hdg 2.016 # H2 gas
61
+ Oxg Oxg 0 Oxg 32 # O2 gas
62
+ Mtg Mtg 0 Mtg 16.032 # CH4 gas
63
+ Sg H2Sg 0 H2Sg 32.064 # H2S gas
64
+ Ntg Ntg 0 Ntg 28.0134 # N2 gas
65
+
66
+ SOLUTION_SPECIES
67
+ H+ = H+
68
+ -gamma 9 0
69
+ -viscosity 9.35e-2 -8.31e-2 2.487e-2 4.49e-4 2.01e-2 1.57 # for viscosity parameters see ref. 4
70
+ -dw 9.31e-9 838 6.96 -2.285 0.206 24.01 0
71
+ # Dw(25 C) dw_T a a2 visc a3 a_v_dif
72
+ # Dw(TK) = 9.31e-9 * exp(838 / TK - 838 / 298.15) * viscos_0_25 / viscos_0_tc
73
+ # a = DH ion size, a2 = exponent, visc = viscosity exponent, a3(H+) = 24.01 = new dw calculation from A.D. 2024, a_v_dif = exponent in (viscos_0_tc / viscos)^a_v_dif for tracer diffusion.
74
+
75
+ # For SC, Dw(TK) *= (viscos_0_tc / viscos)^visc (visc = 0.206 for H+)
76
+ # a3 > 5 or a3 = 0 or not defined ? ka = DH_B * a * (1 + (vm - v0))^a2 * mu^0.5, in Onsager-Falkenhagen eqn. (For H+, the reference ion, vm = v0 = 0, a *= (1 + mu)^a2.)
77
+ # a3 = -10 ? ka = DH_B * a * mu^a2 (Define a3 = -10, not used in this database.) (a3 = 24.01 for H+, a flag.)
78
+ # -3 < a3 < 4 ? ka = DH_B * a2 * mu^0.5 / (1 + mu^a3), Appelo, 2017: Dw(I) = Dw(TK) * exp(-a * DH_A * z * sqrt_mu / (1 + ka)) (Sr+2 in this database)
79
+
80
+ # If a_v_dif <> 0, Dw(TK) *= (viscos_0_tc / viscos)^a_v_dif in TRANSPORT.
81
+ e- = e-
82
+ H2O = H2O
83
+ -dw 2.299e-9 -254
84
+ # H2O + 0.01e- = H2O-0.01; -log_k -9 # aids convergence
85
+ Li+ = Li+
86
+ -gamma 6 0 # The apparent volume parameters are defined in ref. 1 & 2
87
+ -Vm -0.419 -0.069 13.16 -2.78 0.416 0 0.296 -12.4 -2.74e-3 1.26 # ref. 2 and Ellis, 1968, J. Chem. Soc. A, 1138
88
+ -viscosity 0.162 -2.45e-2 3.73e-2 9.7e-4 8.1e-4 2.087 # < 10 M LiCl
89
+ -dw 1.03e-9 -14 4.03 0.8341 1.679
90
+ Na+ = Na+
91
+ -gamma 4 0.075
92
+ -gamma 4.08 0.082 # halite solubility
93
+ -Vm 2.28 -4.38 -4.1 -0.586 0.09 4 0.3 52 -3.33e-3 0.566
94
+ # -Vm 2.28 -4.38 -4.1 -0.586 0.09 4 0.3 52 -3.33e-3 0.45 # for densities (rho) when I > 3.
95
+ -viscosity 0.1387 -8.66e-2 1.25e-2 1.45e-2 7.5e-3 1.062
96
+ -dw 1.33e-9 75 3.627 0 0.7037
97
+ K+ = K+
98
+ -gamma 3.5 0.015
99
+ -Vm 3.322 -1.473 6.534 -2.712 9.06e-2 3.5 0 29.7 0 1
100
+ -viscosity 0.116 -0.191 1.52e-2 1.4e-2 2.59e-2 0.9028
101
+ -dw 1.96e-9 254 3.484 0 0.1964
102
+ Mg+2 = Mg+2
103
+ -gamma 5.5 0.2
104
+ -Vm -1.41 -8.6 11.13 -2.39 1.332 5.5 1.29 -32.9 -5.86e-3 1
105
+ -viscosity 0.426 0 0 1.66e-3 4.32e-3 2.461
106
+ -dw 0.705e-9 -4 5.569 0 1.047
107
+ Ca+2 = Ca+2
108
+ -gamma 5 0.165
109
+ -Vm -0.3456 -7.252 6.149 -2.479 1.239 5 1.6 -57.1 -6.12e-3 1
110
+ -viscosity 0.359 -0.158 4.2e-2 1.5e-3 8.04e-3 2.3 # ref. 4, CaCl2 < 6 M
111
+ -dw 0.792e-9 34 5.411 0 1.046
112
+ Sr+2 = Sr+2
113
+ -gamma 5.26 0.121
114
+ -Vm -1.57e-2 -10.15 10.18 -2.36 0.86 5.26 0.859 -27 -4.1e-3 1.97
115
+ -viscosity 0.472 -0.252 5.51e-3 3.67e-3 0 1.876
116
+ -dw 0.794e-9 149 0.805 1.961 1e-9 0.7876
117
+ Ba+2 = Ba+2
118
+ -gamma 5 0
119
+ -gamma 4 0.153 # Barite solubility
120
+ -Vm 2.063 -10.06 1.9534 -2.36 0.4218 5 1.58 -12.03 -8.35e-3 1
121
+ -viscosity 0.338 -0.227 1.39e-2 3.07e-2 0 0.768
122
+ -dw 0.848e-9 174 10.53 0 3
123
+ Fe+2 = Fe+2
124
+ -gamma 6 0
125
+ -Vm -0.3255 -9.687 1.536 -2.379 0.3033 6 -4.21e-2 39.7 0 1
126
+ -dw 0.719e-9
127
+ Mn+2 = Mn+2
128
+ -gamma 6 0
129
+ -Vm -1.1 -8.03 4.08 -2.45 1.4 6 8.07 0 -1.51e-2 0.118
130
+ -dw 0.688e-9
131
+ Al+3 = Al+3
132
+ -gamma 9 0
133
+ -Vm -2.28 -17.1 10.9 -2.07 2.87 9 0 0 5.5e-3 1 # ref. 2 and Barta and Hepler, 1986, Can. J.C. 64, 353
134
+ -dw 0.559e-9
135
+ H4SiO4 = H4SiO4
136
+ -Vm 10.5 1.7 20 -2.7 0.1291 # supcrt 2*H2O in a1
137
+ -dw 1.1e-9
138
+ Cl- = Cl-
139
+ -gamma 3.5 0.015
140
+ -gamma 3.63 0.017 # cf. pitzer.dat
141
+ -Vm 4.465 4.801 4.325 -2.847 1.748 0 -0.331 20.16 0 1
142
+ -viscosity 0 0 0 0 0 0 1 # the reference solute
143
+ -dw 2.033e-9 216 3.16 0.2071 0.7432
144
+ CO3-2 = CO3-2
145
+ -gamma 5.4 0
146
+ -Vm 6.09 -2.78 -0.405 -5.3 5.02 0 0.169 101 -1.38e-2 0.9316
147
+ -viscosity -0.5 0.6521 5.44e-3 1.06e-3 -2.18e-2 1.208 -2.147
148
+ -dw 0.955e-9 -103 2.246 7.13e-2 0.3686
149
+ SO4-2 = SO4-2
150
+ -gamma 5 -0.04
151
+ -Vm -7.77 43.17 176 -51.45 3.794 0 42.99 -541 -0.145 0.45 # with analytical_expressions for log K of NaSO4-, KSO4- & MgSO4, 0 - 200 oC
152
+ -viscosity -0.3 0.501 2.57e-3 0.195 3.14e-2 2.015 0.605
153
+ -dw 1.07e-9 -114 17 6.02e-2 4.94e-2
154
+ NO3- = NO3-
155
+ -gamma 3 0
156
+ -Vm 6.32 6.78 0 -3.06 0.346 0 0.93 0 -0.012 1
157
+ -viscosity 8.37e-2 -0.458 1.54e-2 0.34 1.79e-2 5.02e-2 0.7381
158
+ -dw 1.9e-9 104 1.11
159
+ # AmmH+ = AmmH+
160
+ # -gamma 2.5 0
161
+ # -Vm 5.35 2.345 3.72 -2.88 1.55 2.5 -4.54 217 2.344e-2 0.569
162
+ # -viscosity 9.9e-2 -0.159 1.36e-2 6.51e-3 3.21e-2 0.972
163
+ # -dw 1.98e-9 203 1.47 2.644 6.81e-2
164
+ H3BO3 = H3BO3
165
+ -Vm 7.0643 8.8547 3.5844 -3.1451 -0.2 # supcrt
166
+ -dw 1.1e-9
167
+ PO4-3 = PO4-3
168
+ -gamma 4 0
169
+ -Vm 1.24 -9.07 9.31 -2.4 5.61 0 0 0 -1.41e-2 1
170
+ -dw 0.612e-9
171
+ F- = F-
172
+ -gamma 3.5 0
173
+ -Vm 0.928 1.36 6.27 -2.84 1.84 0 0 -0.318 0 1
174
+ -viscosity 0 2.85e-2 1.35e-2 6.11e-2 4.38e-3 1.384 0.586
175
+ -dw 1.46e-9 -36 4.352
176
+ Br- = Br-
177
+ -gamma 3 0
178
+ -Vm 6.72 2.85 4.21 -3.14 1.38 0 -9.56e-2 7.08 -1.56e-3 1
179
+ -viscosity -6.98e-2 -0.141 1.78e-2 0.159 7.76e-3 6.25e-2 0.859
180
+ -dw 2.09e-9 208 3.5 0 0.5737
181
+ Zn+2 = Zn+2
182
+ -gamma 5 0
183
+ -Vm -1.96 -10.4 14.3 -2.35 1.46 5 -1.43 24 1.67e-2 1.11
184
+ -dw 0.715e-9
185
+ Cd+2 = Cd+2
186
+ -Vm 1.63 -10.7 1.01 -2.34 1.47 5 0 0 0 1
187
+ -dw 0.717e-9
188
+ Pb+2 = Pb+2
189
+ -Vm -0.0051 -7.7939 8.8134 -2.4568 1.0788 4.5 # supcrt
190
+ -dw 0.945e-9
191
+ Cu+2 = Cu+2
192
+ -gamma 6 0
193
+ -Vm -1.13 -10.5 7.29 -2.35 1.61 6 9.78e-2 0 3.42e-3 1
194
+ -dw 0.733e-9
195
+ # redox-uncoupled gases
196
+ Hdg = Hdg # H2
197
+ -Vm 6.52 0.78 0.12 # supcrt
198
+ -dw 5.13e-9
199
+ Oxg = Oxg # O2
200
+ -Vm 5.7889 6.3536 3.2528 -3.0417 -0.3943 # supcrt
201
+ -dw 2.35e-9
202
+ Mtg = Mtg # CH4
203
+ -Vm 9.01 -1.11 0 -1.85 -1.5 # Hnedkovsky et al., 1996, JCT 28, 125
204
+ -dw 1.85e-9
205
+ Ntg = Ntg # N2
206
+ -Vm 7 # Pray et al., 1952, IEC 44 1146
207
+ -dw 1.96e-9 -90 # Cadogan et al. 2014, JCED 59, 519
208
+ H2Sg = H2Sg # H2S
209
+ -Vm 1.39 28.3 0 -7.22 -0.59 # Hnedkovsky et al., 1996, JCT 28, 125
210
+ -dw 2.1e-9
211
+ # aqueous species
212
+ H2O = OH- + H+
213
+ -analytic 293.29227 0.1360833 -10576.913 -123.73158 0 -6.996455e-5
214
+ -gamma 3.5 0
215
+ -Vm -9.66 28.5 80 -22.9 1.89 0 1.09 0 0 1
216
+ -viscosity -2.26e-2 0.106 2.184e-2 -3.2e-3 0 0.4082 -1.634 # < 5 M Li,Na,KOH
217
+ -dw 5.27e-9 478 0.8695
218
+ 2 H2O = O2 + 4 H+ + 4 e-
219
+ -log_k -86.08
220
+ -delta_h 134.79 kcal
221
+ -Vm 5.7889 6.3536 3.2528 -3.0417 -0.3943 # supcrt
222
+ -dw 2.35e-9
223
+ 2 H+ + 2 e- = H2
224
+ -log_k -3.15
225
+ -delta_h -1.759 kcal
226
+ -Vm 6.52 0.78 0.12 # supcrt
227
+ -dw 5.13e-9
228
+ H+ + Cl- = HCl
229
+ -log_k -0.5
230
+ -analytical_expression 0.334 -2.684e-3 1.015 # from Pitzer.dat, up to 15 M HCl, 0 - 50�C
231
+ -gamma 0 0.4256
232
+ -viscosity 0.921 -0.765 8.32e-3 8.25e-4 2.53e-3 4.223
233
+ CO3-2 + H+ = HCO3-
234
+ -log_k 10.329; -delta_h -3.561 kcal
235
+ -analytic 107.8871 0.03252849 -5151.79 -38.92561 563713.9
236
+ -gamma 5.4 0
237
+ -Vm 10.26 -2.92 -12.58 -0.241 2.23 0 -5.49 320 2.83e-2 1.144
238
+ -viscosity -0.6 1.366 -1.216e-2 0e-2 3.139e-2 -1.135 1.253
239
+ -dw 1.18e-9 -190 11.386
240
+ CO3-2 + 2 H+ = CO2 + H2O
241
+ -log_k 16.681
242
+ -delta_h -5.738 kcal
243
+ -analytic 464.1965 0.09344813 -26986.16 -165.75951 2248628.9
244
+ -Vm 7.29 0.92 2.07 -1.23 -1.6 # McBride et al. 2015, JCED 60, 171
245
+ -gamma 0 0.066 # Rumpf et al. 1994, J. Sol. Chem. 23, 431
246
+ -viscosity 6.8e-3 9.03e-2 3.27e-2 0 0 0 0.18
247
+ -dw 1.92e-9 -120 # TK dependence from Cadogan et al. 2014, , JCED 59, 519
248
+ 2 CO2 = (CO2)2 # activity correction for CO2 solubility at high P, T
249
+ -log_k -1.8
250
+ -analytical_expression 8.68 -0.0103 -2190
251
+ -Vm 14.58 1.84 4.14 -2.46 -3.2
252
+ -viscosity 1.36e-2 0.1806 3.27e-2 0 0 0 0.36
253
+ -dw 1.92e-9 -120 # TK dependence from Cadogan et al. 2014, , JCED 59, 519
254
+ CO3-2 + 10 H+ + 8 e- = CH4 + 3 H2O
255
+ -log_k 41.071
256
+ -delta_h -61.039 kcal
257
+ -Vm 9.01 -1.11 0 -1.85 -1.5 # Hnedkovsky et al., 1996, JCT 28, 125
258
+ -dw 1.85e-9
259
+ SO4-2 + H+ = HSO4-
260
+ -log_k 1.988; -delta_h 3.85 kcal
261
+ -analytic -56.889 0.006473 2307.9 19.8858
262
+ -Vm 8.2 9.259 2.1108 -3.1618 1.1748 0 -0.3 15 0 1
263
+ -viscosity 0.5 -6.97e-2 6.07e-2 1e-5 -0.1333 0.4865 0.7987
264
+ -dw 1.22e-9 1000 15 2.861
265
+ HS- = S-2 + H+
266
+ -log_k -12.918
267
+ -delta_h 12.1 kcal
268
+ -gamma 5 0
269
+ -dw 0.731e-9
270
+ SO4-2 + 9 H+ + 8 e- = HS- + 4 H2O
271
+ -log_k 33.65
272
+ -delta_h -60.14 kcal
273
+ -gamma 3.5 0
274
+ -Vm 5.0119 4.9799 3.4765 -2.9849 1.441 # supcrt
275
+ -dw 1.73e-9
276
+ HS- + H+ = H2S
277
+ -log_k 6.994; -delta_h -5.3 kcal
278
+ -analytical -11.17 0.02386 3279
279
+ -Vm 1.39 28.3 0 -7.22 -0.59 # Hnedkovsky et al., 1996, JCT 28, 125
280
+ -dw 2.1e-9
281
+ 2 H2S = (H2S)2 # activity correction for H2S solubility at high P, T
282
+ -analytical_expression 10.227 -0.01384 -2200
283
+ -Vm 36.41 -71.95 0 0 2.58
284
+ -dw 2.1e-9
285
+ H2Sg = HSg- + H+
286
+ -log_k -6.994; -delta_h 5.3 kcal
287
+ -analytical_expression 11.17 -0.02386 -3279
288
+ -gamma 3.5 0
289
+ -Vm 5.0119 4.9799 3.4765 -2.9849 1.441 # supcrt
290
+ -dw 1.73e-9
291
+ 2 H2Sg = (H2Sg)2 # activity correction for H2S solubility at high P, T
292
+ -analytical_expression 10.227 -0.01384 -2200
293
+ -Vm 36.41 -71.95 0 0 2.58
294
+ -dw 2.1e-9
295
+ NO3- + 2 H+ + 2 e- = NO2- + H2O
296
+ -log_k 28.57
297
+ -delta_h -43.76 kcal
298
+ -gamma 3 0
299
+ -Vm 5.5864 5.859 3.4472 -3.0212 1.1847 # supcrt
300
+ -dw 1.91e-9
301
+ 2 NO3- + 12 H+ + 10 e- = N2 + 6 H2O
302
+ -log_k 207.08
303
+ -delta_h -312.13 kcal
304
+ -Vm 7 # Pray et al., 1952, IEC 44 1146
305
+ -dw 1.96e-9 -90 # Cadogan et al. 2014, JCED 59, 519
306
+ NO3- + 10 H+ + 8 e- = NH4+ + 3 H2O
307
+ -log_k 119.077
308
+ -delta_h -187.055 kcal
309
+ -gamma 2.5 0
310
+ -Vm 5.35 2.345 3.72 -2.88 1.55 2.5 -4.54 217 2.344e-2 0.569
311
+ -viscosity 9.9e-2 -0.159 1.36e-2 6.51e-3 3.21e-2 0.972
312
+ -dw 1.98e-9 203 1.47 2.644 6.81e-2
313
+ #AmmH+ = Amm + H+
314
+ NH4+ = NH3 + H+
315
+ -log_k -9.252
316
+ -delta_h 12.48 kcal
317
+ -analytic 0.6322 -0.001225 -2835.76
318
+ -Vm 6.69 2.8 3.58 -2.88 1.43
319
+ -viscosity 0.08 0 0 7.82e-3 -0.134 -0.986
320
+ -dw 2.28e-9
321
+ #AmmH+ + SO4-2 = AmmHSO4-
322
+ NH4+ + SO4-2 = NH4SO4-
323
+ -gamma 2.08 -0.0416
324
+ -log_k 1.211; -delta_h 8.56 kJ
325
+ -Vm -8.78 0 -36.09 0 -8.60 0 87.62 0 -0.3123 0.1172
326
+ -viscosity 0 0.116 -8.6e-3 0.159 -9.3e-3 0.522 0.627
327
+ -dw 0.9e-9 100 2.1 2 0
328
+ H3BO3 = H2BO3- + H+
329
+ -log_k -9.24
330
+ -delta_h 3.224 kcal
331
+ H3BO3 + F- = BF(OH)3-
332
+ -log_k -0.4
333
+ -delta_h 1.85 kcal
334
+ H3BO3 + 2 F- + H+ = BF2(OH)2- + H2O
335
+ -log_k 7.63
336
+ -delta_h 1.618 kcal
337
+ H3BO3 + 2 H+ + 3 F- = BF3OH- + 2 H2O
338
+ -log_k 13.67
339
+ -delta_h -1.614 kcal
340
+ H3BO3 + 3 H+ + 4 F- = BF4- + 3 H2O
341
+ -log_k 20.28
342
+ -delta_h -1.846 kcal
343
+ PO4-3 + H+ = HPO4-2
344
+ -log_k 12.346
345
+ -delta_h -3.53 kcal
346
+ -gamma 5 0
347
+ -dw 0.69e-9
348
+ -Vm 3.52 1.09 8.39 -2.82 3.34 0 0 0 0 1
349
+ PO4-3 + 2 H+ = H2PO4-
350
+ -log_k 19.553
351
+ -delta_h -4.52 kcal
352
+ -gamma 5.4 0
353
+ -Vm 5.58 8.06 12.2 -3.11 1.3 0 0 0 1.62e-2 1
354
+ -dw 0.846e-9
355
+ PO4-3 + 3 H+ = H3PO4
356
+ log_k 21.721 # log_k and delta_h from minteq.v4.dat, NIST46.3
357
+ delta_h -10.1 kJ
358
+ -Vm 7.47 12.4 6.29 -3.29 0
359
+ H+ + F- = HF
360
+ -log_k 3.18
361
+ -delta_h 3.18 kcal
362
+ -analytic -2.033 0.012645 429.01
363
+ -Vm 3.4753 .7042 5.4732 -2.8081 -.0007 # supcrt
364
+ H+ + 2 F- = HF2-
365
+ -log_k 3.76
366
+ -delta_h 4.55 kcal
367
+ -Vm 5.2263 4.9797 3.7928 -2.9849 1.2934 # supcrt
368
+ Ca+2 + H2O = CaOH+ + H+
369
+ -log_k -12.78
370
+ Ca+2 + CO3-2 = CaCO3
371
+ -log_k 3.224; -delta_h 3.545 kcal
372
+ -analytic -1228.732 -0.29944 35512.75 485.818
373
+ -dw 4.46e-10 # complexes: calc'd with the Pikal formula
374
+ -Vm -.243 -8.3748 9.0417 -2.4328 -.03 # supcrt
375
+ Ca+2 + CO3-2 + H+ = CaHCO3+
376
+ -log_k 10.91; -delta_h 4.38 kcal
377
+ -analytic -6.009 3.377e-2 2044
378
+ -gamma 6 0
379
+ -Vm 30.19 .01 5.75 -2.78 .308 5.4
380
+ -dw 5.06e-10
381
+ Ca+2 + SO4-2 = CaSO4
382
+ -log_k 2.25
383
+ -delta_h 1.325 kcal
384
+ -dw 4.71e-10
385
+ -Vm 2.791 -.9666 6.13 -2.739 -.001 # supcrt
386
+ Ca+2 + HSO4- = CaHSO4+
387
+ -log_k 1.08
388
+ Ca+2 + PO4-3 = CaPO4-
389
+ -log_k 6.459
390
+ -delta_h 3.1 kcal
391
+ -gamma 5.4 0
392
+ Ca+2 + HPO4-2 = CaHPO4
393
+ -log_k 2.739
394
+ -delta_h 3.3 kcal
395
+ Ca+2 + H2PO4- = CaH2PO4+
396
+ -log_k 1.408
397
+ -delta_h 3.4 kcal
398
+ -gamma 5.4 0
399
+ # Ca+2 + F- = CaF+
400
+ # -log_k 0.94
401
+ # -delta_h 4.120 kcal
402
+ # -gamma 5.5 0.0
403
+ # -Vm .9846 -5.3773 7.8635 -2.5567 .6911 5.5 # supcrt
404
+ Mg+2 + H2O = MgOH+ + H+
405
+ -log_k -11.44
406
+ -delta_h 15.952 kcal
407
+ -gamma 6.5 0
408
+ Mg+2 + CO3-2 = MgCO3
409
+ -log_k 2.98
410
+ -delta_h 2.713 kcal
411
+ -analytic 0.991 0.00667
412
+ -Vm -0.5837 -9.2067 9.3687 -2.3984 -.03 # supcrt
413
+ -dw 4.21e-10
414
+ Mg+2 + H+ + CO3-2 = MgHCO3+
415
+ -log_k 11.399
416
+ -delta_h -2.771 kcal
417
+ -analytic 48.6721 0.03252849 -2614.335 -18.00263 563713.9
418
+ -gamma 4 0
419
+ -Vm 2.7171 -1.1469 6.2008 -2.7316 .5985 4 # supcrt
420
+ -dw 4.78e-10
421
+ Mg+2 + SO4-2 = MgSO4
422
+ -gamma 0 0.2
423
+ -log_k 2.42; -delta_h 19 kJ
424
+ -analytical_expression 0 9.64e-3 -136 # mean salt gamma from Pitzer.dat and epsomite/hexahydrite/kieserite solubilities, 0 - 200 oC
425
+ -Vm 8.65 -10.21 29.58 -18.6 1.061
426
+ -viscosity 0.318 -5.4e-4 -3.42e-2 0.708 3.7e-3 0.696
427
+ -dw 4.45e-10
428
+ SO4-2 + MgSO4 = Mg(SO4)2-2
429
+ -gamma 7 0.047
430
+ -log_k 0.52; -delta_h -13.6 kJ
431
+ -analytical_expression 0 -1.51e-3 0 0 8.604e4 # mean salt gamma from Pitzer.dat and epsomite/hexahydrite/kieserite solubilities, 0 - 200 oC
432
+ -Vm -8.14 -62.2 -15.96 3.29 -3.01 0 150 0 0.153 3.79e-2
433
+ -viscosity -0.169 5e-4 -5.69e-2 0.11 2.03e-3 2.027 -1e-3
434
+ -dw 0.845e-9 -200 8 0 0.965
435
+ Mg+2 + PO4-3 = MgPO4-
436
+ -log_k 6.589
437
+ -delta_h 3.1 kcal
438
+ -gamma 5.4 0
439
+ Mg+2 + HPO4-2 = MgHPO4
440
+ -log_k 2.87
441
+ -delta_h 3.3 kcal
442
+ Mg+2 + H2PO4- = MgH2PO4+
443
+ -log_k 1.513
444
+ -delta_h 3.4 kcal
445
+ -gamma 5.4 0
446
+ Mg+2 + F- = MgF+
447
+ -log_k 1.82
448
+ -delta_h 3.2 kcal
449
+ -gamma 4.5 0
450
+ -Vm .6494 -6.1958 8.1852 -2.5229 .9706 4.5 # supcrt
451
+ # Na+ + OH- = NaOH
452
+ # -log_k -14.7 # remove this complex
453
+ Na+ + HCO3- = NaHCO3
454
+ -log_k -0.06; -delta_h 21 kJ
455
+ -gamma 0 0.2
456
+ -Vm 7.95 0 0 0 0.609
457
+ -viscosity -4e-2 -2.717 1.67e-5
458
+ -dw 6.73e-10
459
+ Na+ + SO4-2 = NaSO4-
460
+ -gamma 5.5 0
461
+ -log_k 0.6; -delta_h -14.4 kJ
462
+ -analytical_expression 255.903 0.10057 0 -1.11138e2 -8.5983e5 # mirabilite/thenardite solubilities, 0 - 200 oC
463
+ -Vm 1.99 -10.78 21.88 -12.7 1.601 5 32.38 501 1.565e-2 0.2325
464
+ -viscosity 0.2 -5.93e-2 -4e-4 8.46e-3 1.78e-3 2.308 -0.208
465
+ -dw 1.13e-9 -23 8.5 0.392 0.521
466
+ Na+ + HPO4-2 = NaHPO4-
467
+ -log_k 0.29
468
+ -gamma 5.4 0
469
+ -Vm 5.2 8.1 13 -3 0.9 0 0 1.62e-2 1
470
+ Na+ + F- = NaF
471
+ -log_k -0.24
472
+ -Vm 2.7483 -1.0708 6.1709 -2.7347 -.03 # supcrt
473
+ K+ + HCO3- = KHCO3
474
+ -log_k -0.35; -delta_h 12 kJ
475
+ -gamma 0 9.4e-3
476
+ -Vm 9.48 0 0 0 -0.542
477
+ -viscosity 0.7 -1.289 9e-2
478
+ K+ + SO4-2 = KSO4-
479
+ -gamma 5.4 0.19
480
+ -log_k 0.6; -delta_h -10.4 kJ
481
+ -analytical_expression -3.0246 9.986e-3 0 0 1.093e5 # arcanite solubility, 0 - 200 oC
482
+ -Vm 13.48 -18.03 61.74 -19.6 2.046 5.4 -17.32 0 0.1522 1.919
483
+ -viscosity -1 1.06 1e-4 -0.464 3.78e-2 0.539 -0.69
484
+ -dw 0.9e-9 63 8.48 0 1.8
485
+ K+ + HPO4-2 = KHPO4-
486
+ -log_k 0.29
487
+ -gamma 5.4 0
488
+ -Vm 5.4 8.1 19 -3.1 0.7 0 0 0 1.62e-2 1
489
+ Fe+2 + H2O = FeOH+ + H+
490
+ -log_k -9.5
491
+ -delta_h 13.2 kcal
492
+ -gamma 5 0
493
+ Fe+2 + 3 H2O = Fe(OH)3- + 3 H+
494
+ -log_k -31
495
+ -delta_h 30.3 kcal
496
+ -gamma 5 0
497
+ Fe+2 + Cl- = FeCl+
498
+ -log_k 0.14
499
+ Fe+2 + CO3-2 = FeCO3
500
+ -log_k 4.38
501
+ Fe+2 + HCO3- = FeHCO3+
502
+ -log_k 2
503
+ Fe+2 + SO4-2 = FeSO4
504
+ -log_k 2.25
505
+ -delta_h 3.23 kcal
506
+ -Vm -13 0 123
507
+ Fe+2 + HSO4- = FeHSO4+
508
+ -log_k 1.08
509
+ Fe+2 + 2 HS- = Fe(HS)2
510
+ -log_k 8.95
511
+ Fe+2 + 3 HS- = Fe(HS)3-
512
+ -log_k 10.987
513
+ Fe+2 + HPO4-2 = FeHPO4
514
+ -log_k 3.6
515
+ Fe+2 + H2PO4- = FeH2PO4+
516
+ -log_k 2.7
517
+ -gamma 5.4 0
518
+ Fe+2 + F- = FeF+
519
+ -log_k 1
520
+ Fe+2 = Fe+3 + e-
521
+ -log_k -13.02
522
+ -delta_h 9.68 kcal
523
+ -gamma 9 0
524
+ Fe+3 + H2O = FeOH+2 + H+
525
+ -log_k -2.19
526
+ -delta_h 10.4 kcal
527
+ -gamma 5 0
528
+ Fe+3 + 2 H2O = Fe(OH)2+ + 2 H+
529
+ -log_k -5.67
530
+ -delta_h 17.1 kcal
531
+ -gamma 5.4 0
532
+ Fe+3 + 3 H2O = Fe(OH)3 + 3 H+
533
+ -log_k -12.56
534
+ -delta_h 24.8 kcal
535
+ Fe+3 + 4 H2O = Fe(OH)4- + 4 H+
536
+ -log_k -21.6
537
+ -delta_h 31.9 kcal
538
+ -gamma 5.4 0
539
+ Fe+2 + 2 H2O = Fe(OH)2 + 2 H+
540
+ -log_k -20.57
541
+ -delta_h 28.565 kcal
542
+ 2 Fe+3 + 2 H2O = Fe2(OH)2+4 + 2 H+
543
+ -log_k -2.95
544
+ -delta_h 13.5 kcal
545
+ 3 Fe+3 + 4 H2O = Fe3(OH)4+5 + 4 H+
546
+ -log_k -6.3
547
+ -delta_h 14.3 kcal
548
+ Fe+3 + Cl- = FeCl+2
549
+ -log_k 1.48
550
+ -delta_h 5.6 kcal
551
+ -gamma 5 0
552
+ Fe+3 + 2 Cl- = FeCl2+
553
+ -log_k 2.13
554
+ -gamma 5 0
555
+ Fe+3 + 3 Cl- = FeCl3
556
+ -log_k 1.13
557
+ Fe+3 + SO4-2 = FeSO4+
558
+ -log_k 4.04
559
+ -delta_h 3.91 kcal
560
+ -gamma 5 0
561
+ Fe+3 + HSO4- = FeHSO4+2
562
+ -log_k 2.48
563
+ Fe+3 + 2 SO4-2 = Fe(SO4)2-
564
+ -log_k 5.38
565
+ -delta_h 4.6 kcal
566
+ Fe+3 + HPO4-2 = FeHPO4+
567
+ -log_k 5.43
568
+ -delta_h 5.76 kcal
569
+ -gamma 5 0
570
+ Fe+3 + H2PO4- = FeH2PO4+2
571
+ -log_k 5.43
572
+ -gamma 5.4 0
573
+ Fe+3 + F- = FeF+2
574
+ -log_k 6.2
575
+ -delta_h 2.7 kcal
576
+ -gamma 5 0
577
+ Fe+3 + 2 F- = FeF2+
578
+ -log_k 10.8
579
+ -delta_h 4.8 kcal
580
+ -gamma 5 0
581
+ Fe+3 + 3 F- = FeF3
582
+ -log_k 14
583
+ -delta_h 5.4 kcal
584
+ Mn+2 + H2O = MnOH+ + H+
585
+ -log_k -10.59
586
+ -delta_h 14.4 kcal
587
+ -gamma 5 0
588
+ Mn+2 + 3 H2O = Mn(OH)3- + 3 H+
589
+ -log_k -34.8
590
+ -gamma 5 0
591
+ Mn+2 + Cl- = MnCl+
592
+ -log_k 0.61
593
+ -gamma 5 0
594
+ -Vm 7.25 -1.08 -25.8 -2.73 3.99 5 0 0 0 1
595
+ Mn+2 + 2 Cl- = MnCl2
596
+ -log_k 0.25
597
+ -Vm 1e-5 0 144
598
+ Mn+2 + 3 Cl- = MnCl3-
599
+ -log_k -0.31
600
+ -gamma 5 0
601
+ -Vm 11.8 0 0 0 2.4 0 0 0 3.6e-2 1
602
+ Mn+2 + CO3-2 = MnCO3
603
+ -log_k 4.9
604
+ Mn+2 + HCO3- = MnHCO3+
605
+ -log_k 1.95
606
+ -gamma 5 0
607
+ Mn+2 + SO4-2 = MnSO4
608
+ -log_k 2.25
609
+ -delta_h 3.37 kcal
610
+ -Vm -1.31 -1.83 62.3 -2.7
611
+ Mn+2 + 2 NO3- = Mn(NO3)2
612
+ -log_k 0.6
613
+ -delta_h -0.396 kcal
614
+ -Vm 6.16 0 29.4 0 0.9
615
+ Mn+2 + F- = MnF+
616
+ -log_k 0.84
617
+ -gamma 5 0
618
+ Mn+2 = Mn+3 + e-
619
+ -log_k -25.51
620
+ -delta_h 25.8 kcal
621
+ -gamma 9 0
622
+ Al+3 + H2O = AlOH+2 + H+
623
+ -log_k -5
624
+ -delta_h 11.49 kcal
625
+ -analytic -38.253 0 -656.27 14.327
626
+ -gamma 5.4 0
627
+ -Vm -1.46 -11.4 10.2 -2.31 1.67 5.4 0 0 0 1 # Barta and Hepler, 1986, Can. J. Chem. 64, 353
628
+ Al+3 + 2 H2O = Al(OH)2+ + 2 H+
629
+ -log_k -10.1
630
+ -delta_h 26.9 kcal
631
+ -gamma 5.4 0
632
+ -analytic 88.5 0 -9391.6 -27.121
633
+ Al+3 + 3 H2O = Al(OH)3 + 3 H+
634
+ -log_k -16.9
635
+ -delta_h 39.89 kcal
636
+ -analytic 226.374 0 -18247.8 -73.597
637
+ Al+3 + 4 H2O = Al(OH)4- + 4 H+
638
+ -log_k -22.7
639
+ -delta_h 42.3 kcal
640
+ -analytic 51.578 0 -11168.9 -14.865
641
+ -gamma 4.5 0
642
+ -dw 1.04e-9 # Mackin & Aller, 1983, GCA 47, 959
643
+ Al+3 + SO4-2 = AlSO4+
644
+ -log_k 3.5
645
+ -delta_h 2.29 kcal
646
+ -gamma 4.5 0
647
+ Al+3 + 2 SO4-2 = Al(SO4)2-
648
+ -log_k 5
649
+ -delta_h 3.11 kcal
650
+ -gamma 4.5 0
651
+ Al+3 + HSO4- = AlHSO4+2
652
+ -log_k 0.46
653
+ Al+3 + F- = AlF+2
654
+ -log_k 7
655
+ -delta_h 1.06 kcal
656
+ -gamma 5.4 0
657
+ Al+3 + 2 F- = AlF2+
658
+ -log_k 12.7
659
+ -delta_h 1.98 kcal
660
+ -gamma 5.4 0
661
+ Al+3 + 3 F- = AlF3
662
+ -log_k 16.8
663
+ -delta_h 2.16 kcal
664
+ Al+3 + 4 F- = AlF4-
665
+ -log_k 19.4
666
+ -delta_h 2.2 kcal
667
+ -gamma 4.5 0
668
+ # Al+3 + 5 F- = AlF5-2
669
+ # log_k 20.6
670
+ # delta_h 1.840 kcal
671
+ # Al+3 + 6 F- = AlF6-3
672
+ # log_k 20.6
673
+ # delta_h -1.670 kcal
674
+ H4SiO4 = H3SiO4- + H+
675
+ -log_k -9.83
676
+ -delta_h 6.12 kcal
677
+ -analytic -302.3724 -0.050698 15669.69 108.18466 -1119669
678
+ -gamma 4 0
679
+ -Vm 7.94 1.0881 5.3224 -2.824 1.4767 # supcrt + H2O in a1
680
+ H4SiO4 = H2SiO4-2 + 2 H+
681
+ -log_k -23
682
+ -delta_h 17.6 kcal
683
+ -analytic -294.0184 -0.07265 11204.49 108.18466 -1119669
684
+ -gamma 5.4 0
685
+ H4SiO4 + 4 H+ + 6 F- = SiF6-2 + 4 H2O
686
+ -log_k 30.18
687
+ -delta_h -16.26 kcal
688
+ -gamma 5 0
689
+ -Vm 8.5311 13.0492 .6211 -3.3185 2.7716 # supcrt
690
+ Ba+2 + H2O = BaOH+ + H+
691
+ -log_k -13.47
692
+ -gamma 5 0
693
+ Ba+2 + CO3-2 = BaCO3
694
+ -log_k 2.71
695
+ -delta_h 3.55 kcal
696
+ -analytic 0.113 0.008721
697
+ -Vm .2907 -7.0717 8.5295 -2.4867 -.03 # supcrt
698
+ Ba+2 + HCO3- = BaHCO3+
699
+ -log_k 0.982
700
+ -delta_h 5.56 kcal
701
+ -analytic -3.0938 0.013669
702
+ Ba+2 + SO4-2 = BaSO4
703
+ -log_k 2.7
704
+ Sr+2 + H2O = SrOH+ + H+
705
+ -log_k -13.29
706
+ -gamma 5 0
707
+ Sr+2 + CO3-2 + H+ = SrHCO3+
708
+ -log_k 11.509
709
+ -delta_h 2.489 kcal
710
+ -analytic 104.6391 0.04739549 -5151.79 -38.92561 563713.9
711
+ -gamma 5.4 0
712
+ Sr+2 + CO3-2 = SrCO3
713
+ -log_k 2.81
714
+ -delta_h 5.22 kcal
715
+ -analytic -1.019 0.012826
716
+ -Vm -.1787 -8.2177 8.9799 -2.4393 -.03 # supcrt
717
+ Sr+2 + SO4-2 = SrSO4
718
+ -log_k 2.29
719
+ -delta_h 2.08 kcal
720
+ -Vm 6.791 -.9666 6.13 -2.739 -.001 # celestite solubility
721
+ Li+ + SO4-2 = LiSO4-
722
+ -log_k 0.64
723
+ -gamma 5 0
724
+ Cu+2 + e- = Cu+
725
+ -log_k 2.72
726
+ -delta_h 1.65 kcal
727
+ -gamma 2.5 0
728
+ Cu+ + 2 Cl- = CuCl2-
729
+ -log_k 5.5
730
+ -delta_h -0.42 kcal
731
+ -gamma 4 0
732
+ Cu+ + 3 Cl- = CuCl3-2
733
+ -log_k 5.7
734
+ -delta_h 0.26 kcal
735
+ -gamma 5 0
736
+ Cu+2 + CO3-2 = CuCO3
737
+ -log_k 6.73
738
+ Cu+2 + 2 CO3-2 = Cu(CO3)2-2
739
+ -log_k 9.83
740
+ Cu+2 + HCO3- = CuHCO3+
741
+ -log_k 2.7
742
+ Cu+2 + Cl- = CuCl+
743
+ -log_k 0.43
744
+ -delta_h 8.65 kcal
745
+ -gamma 4 0
746
+ -Vm -4.19 0 30.4 0 0 4 0 0 1.94e-2 1
747
+ Cu+2 + 2 Cl- = CuCl2
748
+ -log_k 0.16
749
+ -delta_h 10.56 kcal
750
+ -Vm 26.8 0 -136
751
+ Cu+2 + 3 Cl- = CuCl3-
752
+ -log_k -2.29
753
+ -delta_h 13.69 kcal
754
+ -gamma 4 0
755
+ Cu+2 + 4 Cl- = CuCl4-2
756
+ -log_k -4.59
757
+ -delta_h 17.78 kcal
758
+ -gamma 5 0
759
+ Cu+2 + F- = CuF+
760
+ -log_k 1.26
761
+ -delta_h 1.62 kcal
762
+ Cu+2 + H2O = CuOH+ + H+
763
+ -log_k -8
764
+ -gamma 4 0
765
+ Cu+2 + 2 H2O = Cu(OH)2 + 2 H+
766
+ -log_k -13.68
767
+ Cu+2 + 3 H2O = Cu(OH)3- + 3 H+
768
+ -log_k -26.9
769
+ Cu+2 + 4 H2O = Cu(OH)4-2 + 4 H+
770
+ -log_k -39.6
771
+ 2 Cu+2 + 2 H2O = Cu2(OH)2+2 + 2 H+
772
+ -log_k -10.359
773
+ -delta_h 17.539 kcal
774
+ -analytical 2.497 0 -3833
775
+ Cu+2 + SO4-2 = CuSO4
776
+ -log_k 2.31
777
+ -delta_h 1.22 kcal
778
+ -Vm 5.21 0 -14.6
779
+ Cu+2 + 3 HS- = Cu(HS)3-
780
+ -log_k 25.9
781
+ Zn+2 + H2O = ZnOH+ + H+
782
+ -log_k -8.96
783
+ -delta_h 13.4 kcal
784
+ Zn+2 + 2 H2O = Zn(OH)2 + 2 H+
785
+ -log_k -16.9
786
+ Zn+2 + 3 H2O = Zn(OH)3- + 3 H+
787
+ -log_k -28.4
788
+ Zn+2 + 4 H2O = Zn(OH)4-2 + 4 H+
789
+ -log_k -41.2
790
+ Zn+2 + Cl- = ZnCl+
791
+ -log_k 0.43
792
+ -delta_h 7.79 kcal
793
+ -gamma 4 0
794
+ -Vm 14.8 -3.91 -105.7 -2.62 0.203 4 0 0 -5.05e-2 1
795
+ Zn+2 + 2 Cl- = ZnCl2
796
+ -log_k 0.45
797
+ -delta_h 8.5 kcal
798
+ -Vm -10.1 4.57 241 -2.97 -1e-3
799
+ Zn+2 + 3 Cl- = ZnCl3-
800
+ -log_k 0.5
801
+ -delta_h 9.56 kcal
802
+ -gamma 4 0
803
+ -Vm 0.772 15.5 -0.349 -3.42 1.25 0 -7.77 0 0 1
804
+ Zn+2 + 4 Cl- = ZnCl4-2
805
+ -log_k 0.2
806
+ -delta_h 10.96 kcal
807
+ -gamma 5 0
808
+ -Vm 28.42 28 -5.26 -3.94 2.67 0 0 0 4.62e-2 1
809
+ Zn+2 + H2O + Cl- = ZnOHCl + H+
810
+ -log_k -7.48
811
+ Zn+2 + 2 HS- = Zn(HS)2
812
+ -log_k 14.94
813
+ Zn+2 + 3 HS- = Zn(HS)3-
814
+ -log_k 16.1
815
+ Zn+2 + CO3-2 = ZnCO3
816
+ -log_k 5.3
817
+ Zn+2 + 2 CO3-2 = Zn(CO3)2-2
818
+ -log_k 9.63
819
+ Zn+2 + HCO3- = ZnHCO3+
820
+ -log_k 2.1
821
+ Zn+2 + SO4-2 = ZnSO4
822
+ -log_k 2.37
823
+ -delta_h 1.36 kcal
824
+ -Vm 2.51 0 18.8
825
+ Zn+2 + 2 SO4-2 = Zn(SO4)2-2
826
+ -log_k 3.28
827
+ -Vm 10.9 0 -98.7 0 0 0 24 0 -0.236 1
828
+ Zn+2 + Br- = ZnBr+
829
+ -log_k -0.58
830
+ Zn+2 + 2 Br- = ZnBr2
831
+ -log_k -0.98
832
+ Zn+2 + F- = ZnF+
833
+ -log_k 1.15
834
+ -delta_h 2.22 kcal
835
+ Cd+2 + H2O = CdOH+ + H+
836
+ -log_k -10.08
837
+ -delta_h 13.1 kcal
838
+ Cd+2 + 2 H2O = Cd(OH)2 + 2 H+
839
+ -log_k -20.35
840
+ Cd+2 + 3 H2O = Cd(OH)3- + 3 H+
841
+ -log_k -33.3
842
+ Cd+2 + 4 H2O = Cd(OH)4-2 + 4 H+
843
+ -log_k -47.35
844
+ 2 Cd+2 + H2O = Cd2OH+3 + H+
845
+ -log_k -9.39
846
+ -delta_h 10.9 kcal
847
+ Cd+2 + H2O + Cl- = CdOHCl + H+
848
+ -log_k -7.404
849
+ -delta_h 4.355 kcal
850
+ Cd+2 + NO3- = CdNO3+
851
+ -log_k 0.4
852
+ -delta_h -5.2 kcal
853
+ -Vm 5.95 0 -1.11 0 2.67 7 0 0 1.53e-2 1
854
+ Cd+2 + Cl- = CdCl+
855
+ -log_k 1.98
856
+ -delta_h 0.59 kcal
857
+ -Vm 5.69 0 -30.2 0 0 6 0 0 0.112 1
858
+ Cd+2 + 2 Cl- = CdCl2
859
+ -log_k 2.6
860
+ -delta_h 1.24 kcal
861
+ -Vm 5.53
862
+ Cd+2 + 3 Cl- = CdCl3-
863
+ -log_k 2.4
864
+ -delta_h 3.9 kcal
865
+ -Vm 4.6 0 83.9 0 0 0 0 0 0 1
866
+ Cd+2 + CO3-2 = CdCO3
867
+ -log_k 2.9
868
+ Cd+2 + 2 CO3-2 = Cd(CO3)2-2
869
+ -log_k 6.4
870
+ Cd+2 + HCO3- = CdHCO3+
871
+ -log_k 1.5
872
+ Cd+2 + SO4-2 = CdSO4
873
+ -log_k 2.46
874
+ -delta_h 1.08 kcal
875
+ -Vm 10.4 0 57.9
876
+ Cd+2 + 2 SO4-2 = Cd(SO4)2-2
877
+ -log_k 3.5
878
+ -Vm -6.29 0 -93 0 9.5 7 0 0 0 1
879
+ Cd+2 + Br- = CdBr+
880
+ -log_k 2.17
881
+ -delta_h -0.81 kcal
882
+ Cd+2 + 2 Br- = CdBr2
883
+ -log_k 2.9
884
+ Cd+2 + F- = CdF+
885
+ -log_k 1.1
886
+ Cd+2 + 2 F- = CdF2
887
+ -log_k 1.5
888
+ Cd+2 + HS- = CdHS+
889
+ -log_k 10.17
890
+ Cd+2 + 2 HS- = Cd(HS)2
891
+ -log_k 16.53
892
+ Cd+2 + 3 HS- = Cd(HS)3-
893
+ -log_k 18.71
894
+ Cd+2 + 4 HS- = Cd(HS)4-2
895
+ -log_k 20.9
896
+ Pb+2 + H2O = PbOH+ + H+
897
+ -log_k -7.71
898
+ Pb+2 + 2 H2O = Pb(OH)2 + 2 H+
899
+ -log_k -17.12
900
+ Pb+2 + 3 H2O = Pb(OH)3- + 3 H+
901
+ -log_k -28.06
902
+ Pb+2 + 4 H2O = Pb(OH)4-2 + 4 H+
903
+ -log_k -39.7
904
+ 2 Pb+2 + H2O = Pb2OH+3 + H+
905
+ -log_k -6.36
906
+ Pb+2 + Cl- = PbCl+
907
+ -log_k 1.6
908
+ -delta_h 4.38 kcal
909
+ -Vm 2.8934 -.7165 6.0316 -2.7494 .1281 6 # supcrt
910
+ Pb+2 + 2 Cl- = PbCl2
911
+ -log_k 1.8
912
+ -delta_h 1.08 kcal
913
+ -Vm 6.5402 8.1879 2.5318 -3.1175 -.03 # supcrt
914
+ Pb+2 + 3 Cl- = PbCl3-
915
+ -log_k 1.7
916
+ -delta_h 2.17 kcal
917
+ -Vm 11.0396 19.1743 -1.7863 -3.5717 .7356 # supcrt
918
+ Pb+2 + 4 Cl- = PbCl4-2
919
+ -log_k 1.38
920
+ -delta_h 3.53 kcal
921
+ -Vm 16.415 32.2997 -6.9452 -4.1143 2.3118 # supcrt
922
+ Pb+2 + CO3-2 = PbCO3
923
+ -log_k 7.24
924
+ Pb+2 + 2 CO3-2 = Pb(CO3)2-2
925
+ -log_k 10.64
926
+ Pb+2 + HCO3- = PbHCO3+
927
+ -log_k 2.9
928
+ Pb+2 + SO4-2 = PbSO4
929
+ -log_k 2.75
930
+ Pb+2 + 2 SO4-2 = Pb(SO4)2-2
931
+ -log_k 3.47
932
+ Pb+2 + 2 HS- = Pb(HS)2
933
+ -log_k 15.27
934
+ Pb+2 + 3 HS- = Pb(HS)3-
935
+ -log_k 16.57
936
+ 3 Pb+2 + 4 H2O = Pb3(OH)4+2 + 4 H+
937
+ -log_k -23.88
938
+ -delta_h 26.5 kcal
939
+ Pb+2 + NO3- = PbNO3+
940
+ -log_k 1.17
941
+ Pb+2 + Br- = PbBr+
942
+ -log_k 1.77
943
+ -delta_h 2.88 kcal
944
+ Pb+2 + 2 Br- = PbBr2
945
+ -log_k 1.44
946
+ Pb+2 + F- = PbF+
947
+ -log_k 1.25
948
+ Pb+2 + 2 F- = PbF2
949
+ -log_k 2.56
950
+ Pb+2 + 3 F- = PbF3-
951
+ -log_k 3.42
952
+ Pb+2 + 4 F- = PbF4-2
953
+ -log_k 3.1
954
+
955
+ PHASES
956
+ Calcite
957
+ CaCO3 = CO3-2 + Ca+2
958
+ -log_k -8.48
959
+ -delta_h -2.297 kcal
960
+ -analytic 17.118 -0.046528 -3496 # 0 - 250�C, Ellis, 1959, Plummer and Busenberg, 1982
961
+ -Vm 36.9 cm3/mol # MW (100.09 g/mol) / rho (2.71 g/cm3)
962
+ Aragonite
963
+ CaCO3 = CO3-2 + Ca+2
964
+ -log_k -8.336
965
+ -delta_h -2.589 kcal
966
+ -analytic -171.9773 -0.077993 2903.293 71.595
967
+ -Vm 34.04
968
+ Dolomite
969
+ CaMg(CO3)2 = Ca+2 + Mg+2 + 2 CO3-2
970
+ -log_k -17.09
971
+ -delta_h -9.436 kcal
972
+ -analytic 31.283 -0.0898 -6438 # 25�C: Hemingway and Robie, 1994; 50�175�C: B�n�zeth et al., 2018, GCA 224, 262-275
973
+ -Vm 64.5
974
+ Siderite
975
+ FeCO3 = Fe+2 + CO3-2
976
+ -log_k -10.89
977
+ -delta_h -2.48 kcal
978
+ -Vm 29.2
979
+ Rhodochrosite
980
+ MnCO3 = Mn+2 + CO3-2
981
+ -log_k -11.13
982
+ -delta_h -1.43 kcal
983
+ -Vm 31.1
984
+ Strontianite
985
+ SrCO3 = Sr+2 + CO3-2
986
+ -log_k -9.271
987
+ -delta_h -0.4 kcal
988
+ -analytic 155.0305 0 -7239.594 -56.58638
989
+ -Vm 39.69
990
+ Witherite
991
+ BaCO3 = Ba+2 + CO3-2
992
+ -log_k -8.562
993
+ -delta_h 0.703 kcal
994
+ -analytic 607.642 0.121098 -20011.25 -236.4948
995
+ -Vm 46
996
+ Gypsum
997
+ CaSO4:2H2O = Ca+2 + SO4-2 + 2 H2O
998
+ -log_k -4.58
999
+ -delta_h -0.109 kcal
1000
+ -analytic 68.2401 0 -3221.51 -25.0627
1001
+ -analytical_expression 93.7 5.99E-3 -4e3 -35.019 # better fits the appendix data of Appelo, 2015, AG 55, 62
1002
+ -Vm 73.9 # 172.18 / 2.33 (Vm H2O = 13.9 cm3/mol)
1003
+ Anhydrite
1004
+ CaSO4 = Ca+2 + SO4-2
1005
+ -log_k -4.36
1006
+ -delta_h -1.71 kcal
1007
+ -analytic 84.9 0 -3135.12 -31.79 # 50 - 160oC, 1 - 1e3 atm, anhydrite dissolution, Blount and Dickson, 1973, Am. Mineral. 58, 323
1008
+ -Vm 46.1 # 136.14 / 2.95
1009
+ Celestite
1010
+ SrSO4 = Sr+2 + SO4-2
1011
+ -log_k -6.63
1012
+ -delta_h -4.037 kcal
1013
+ # -analytic -14805.9622 -2.4660924 756968.533 5436.3588 -40553604.0
1014
+ -analytic -7.14 6.11e-3 75 0 0 -1.79e-5 # Howell et al., 1992, JCED 37, 464
1015
+ -Vm 46.4
1016
+ Barite
1017
+ BaSO4 = Ba+2 + SO4-2
1018
+ -log_k -9.97
1019
+ -delta_h 6.35 kcal
1020
+ -analytical_expression -282.43 -8.972e-2 5822 113.08 # Blount 1977; Templeton, 1960
1021
+ -Vm 52.9
1022
+ Arcanite
1023
+ K2SO4 = SO4-2 + 2 K+
1024
+ log_k -1.776; -delta_h 5 kcal
1025
+ -analytical_expression 674.142 0.30423 -18037 -280.236 0 -1.44055e-4 # ref. 3
1026
+ # Note, the Linke and Seidell data may give subsaturation in other xpt's, SI = -0.06
1027
+ -Vm 65.5
1028
+ Mirabilite
1029
+ Na2SO4:10H2O = SO4-2 + 2 Na+ + 10 H2O
1030
+ -analytical_expression -301.9326 -0.16232 0 141.078 # ref. 3
1031
+ Vm 216
1032
+ Thenardite
1033
+ Na2SO4 = 2 Na+ + SO4-2
1034
+ -analytical_expression 57.185 8.6024e-2 0 -30.8341 0 -7.6905e-5 # ref. 3
1035
+ -Vm 52.9
1036
+ Epsomite
1037
+ MgSO4:7H2O = Mg+2 + SO4-2 + 7 H2O
1038
+ log_k -1.74; -delta_h 10.57 kJ
1039
+ -analytical_expression -3.59 6.21e-3
1040
+ Vm 147
1041
+ Hexahydrite
1042
+ MgSO4:6H2O = Mg+2 + SO4-2 + 6 H2O
1043
+ log_k -1.57; -delta_h 2.35 kJ
1044
+ -analytical_expression -1.978 1.38e-3
1045
+ Vm 132
1046
+ Kieserite
1047
+ MgSO4:H2O = Mg+2 + SO4-2 + H2O
1048
+ log_k -1.16; -delta_h 9.22 kJ
1049
+ -analytical_expression 29.485 -5.07e-2 0 -2.662 -7.95e5
1050
+ Vm 53.8
1051
+ Hydroxyapatite
1052
+ Ca5(PO4)3OH + 4 H+ = H2O + 3 HPO4-2 + 5 Ca+2
1053
+ -log_k -3.421
1054
+ -delta_h -36.155 kcal
1055
+ -Vm 128.9
1056
+ Fluorite
1057
+ CaF2 = Ca+2 + 2 F-
1058
+ -log_k -10.6
1059
+ -delta_h 4.69 kcal
1060
+ -analytic 66.348 0 -4298.2 -25.271
1061
+ -Vm 15.7
1062
+ SiO2(a)
1063
+ SiO2 + 2 H2O = H4SiO4
1064
+ -log_k -2.71
1065
+ -delta_h 3.34 kcal
1066
+ -analytic -0.26 0 -731
1067
+ Chalcedony
1068
+ SiO2 + 2 H2O = H4SiO4
1069
+ -log_k -3.55
1070
+ -delta_h 4.72 kcal
1071
+ -analytic -0.09 0 -1032
1072
+ -Vm 23.1
1073
+ Quartz
1074
+ SiO2 + 2 H2O = H4SiO4
1075
+ -log_k -3.98
1076
+ -delta_h 5.99 kcal
1077
+ -analytic 0.41 0 -1309
1078
+ -Vm 22.67
1079
+ Gibbsite
1080
+ Al(OH)3 + 3 H+ = Al+3 + 3 H2O
1081
+ -log_k 8.11
1082
+ -delta_h -22.8 kcal
1083
+ -Vm 32.22
1084
+ Al(OH)3(a)
1085
+ Al(OH)3 + 3 H+ = Al+3 + 3 H2O
1086
+ -log_k 10.8
1087
+ -delta_h -26.5 kcal
1088
+ Kaolinite
1089
+ Al2Si2O5(OH)4 + 6 H+ = H2O + 2 H4SiO4 + 2 Al+3
1090
+ -log_k 7.435
1091
+ -delta_h -35.3 kcal
1092
+ -Vm 99.35
1093
+ Albite
1094
+ NaAlSi3O8 + 8 H2O = Na+ + Al(OH)4- + 3 H4SiO4
1095
+ -log_k -18.002
1096
+ -delta_h 25.896 kcal
1097
+ -Vm 101.31
1098
+ Anorthite
1099
+ CaAl2Si2O8 + 8 H2O = Ca+2 + 2 Al(OH)4- + 2 H4SiO4
1100
+ -log_k -19.714
1101
+ -delta_h 11.58 kcal
1102
+ -Vm 105.05
1103
+ K-feldspar
1104
+ KAlSi3O8 + 8 H2O = K+ + Al(OH)4- + 3 H4SiO4
1105
+ -log_k -20.573
1106
+ -delta_h 30.82 kcal
1107
+ -Vm 108.15
1108
+ K-mica
1109
+ KAl3Si3O10(OH)2 + 10 H+ = K+ + 3 Al+3 + 3 H4SiO4
1110
+ -log_k 12.703
1111
+ -delta_h -59.376 kcal
1112
+ Chlorite(14A)
1113
+ Mg5Al2Si3O10(OH)8 + 16 H+ = 5 Mg+2 + 2 Al+3 + 3 H4SiO4 + 6 H2O
1114
+ -log_k 68.38
1115
+ -delta_h -151.494 kcal
1116
+ Ca-Montmorillonite
1117
+ Ca0.165Al2.33Si3.67O10(OH)2 + 12 H2O = 0.165 Ca+2 + 2.33 Al(OH)4- + 3.67 H4SiO4 + 2 H+
1118
+ -log_k -45.027
1119
+ -delta_h 58.373 kcal
1120
+ -Vm 156.16
1121
+ Talc
1122
+ Mg3Si4O10(OH)2 + 4 H2O + 6 H+ = 3 Mg+2 + 4 H4SiO4
1123
+ -log_k 21.399
1124
+ -delta_h -46.352 kcal
1125
+ -Vm 68.34
1126
+ Illite
1127
+ K0.6Mg0.25Al2.3Si3.5O10(OH)2 + 11.2 H2O = 0.6 K+ + 0.25 Mg+2 + 2.3 Al(OH)4- + 3.5 H4SiO4 + 1.2 H+
1128
+ -log_k -40.267
1129
+ -delta_h 54.684 kcal
1130
+ -Vm 141.48
1131
+ Chrysotile
1132
+ Mg3Si2O5(OH)4 + 6 H+ = H2O + 2 H4SiO4 + 3 Mg+2
1133
+ -log_k 32.2
1134
+ -delta_h -46.8 kcal
1135
+ -analytic 13.248 0 10217.1 -6.1894
1136
+ -Vm 106.5808 # 277.11/2.60
1137
+ Sepiolite
1138
+ Mg2Si3O7.5OH:3H2O + 4 H+ + 0.5 H2O = 2 Mg+2 + 3 H4SiO4
1139
+ -log_k 15.76
1140
+ -delta_h -10.7 kcal
1141
+ -Vm 143.765
1142
+ Sepiolite(d)
1143
+ Mg2Si3O7.5OH:3H2O + 4 H+ + 0.5 H2O = 2 Mg+2 + 3 H4SiO4
1144
+ -log_k 18.66
1145
+ Hematite
1146
+ Fe2O3 + 6 H+ = 2 Fe+3 + 3 H2O
1147
+ -log_k -4.008
1148
+ -delta_h -30.845 kcal
1149
+ -Vm 30.39
1150
+ Goethite
1151
+ FeOOH + 3 H+ = Fe+3 + 2 H2O
1152
+ -log_k -1
1153
+ -delta_h -14.48 kcal
1154
+ -Vm 20.84
1155
+ Fe(OH)3(a)
1156
+ Fe(OH)3 + 3 H+ = Fe+3 + 3 H2O
1157
+ -log_k 4.891
1158
+ Pyrite
1159
+ FeS2 + 2 H+ + 2 e- = Fe+2 + 2 HS-
1160
+ -log_k -18.479
1161
+ -delta_h 11.3 kcal
1162
+ -Vm 23.48
1163
+ FeS(ppt)
1164
+ FeS + H+ = Fe+2 + HS-
1165
+ -log_k -3.915
1166
+ Mackinawite
1167
+ FeS + H+ = Fe+2 + HS-
1168
+ -log_k -4.648
1169
+ -Vm 20.45
1170
+ Sulfur
1171
+ S + 2 H+ + 2 e- = H2S
1172
+ -log_k 4.882
1173
+ -delta_h -9.5 kcal
1174
+ Vivianite
1175
+ Fe3(PO4)2:8H2O = 3 Fe+2 + 2 PO4-3 + 8 H2O
1176
+ -log_k -36
1177
+ Pyrolusite # H2O added for surface calc's
1178
+ MnO2:H2O + 4 H+ + 2 e- = Mn+2 + 3 H2O
1179
+ -log_k 41.38
1180
+ -delta_h -65.11 kcal
1181
+ Hausmannite
1182
+ Mn3O4 + 8 H+ + 2 e- = 3 Mn+2 + 4 H2O
1183
+ -log_k 61.03
1184
+ -delta_h -100.64 kcal
1185
+ Manganite
1186
+ MnOOH + 3 H+ + e- = Mn+2 + 2 H2O
1187
+ -log_k 25.34
1188
+ Pyrochroite
1189
+ Mn(OH)2 + 2 H+ = Mn+2 + 2 H2O
1190
+ -log_k 15.2
1191
+ Halite
1192
+ NaCl = Cl- + Na+
1193
+ log_k 1.57
1194
+ -delta_h 1.37
1195
+ #-analytic -713.4616 -.1201241 37302.21 262.4583 -2106915.
1196
+ -Vm 27.1
1197
+ Sylvite
1198
+ KCl = K+ + Cl-
1199
+ log_k 0.9
1200
+ -delta_h 8.5
1201
+ # -analytic 3.984 0.0 -919.55
1202
+ Vm 37.5
1203
+ # Gases...
1204
+ CO2(g)
1205
+ CO2 = CO2
1206
+ -log_k -1.468
1207
+ -delta_h -4.776 kcal
1208
+ -analytic 10.5624 -2.3547e-2 -3972.8 0 5.8746e5 1.9194e-5
1209
+ -T_c 304.2 # critical T, K
1210
+ -P_c 72.86 # critical P, atm
1211
+ -Omega 0.225 # acentric factor
1212
+ H2O(g)
1213
+ H2O = H2O
1214
+ -log_k 1.506; delta_h -44.03 kJ
1215
+ -T_c 647.3; -P_c 217.6; -Omega 0.344
1216
+ -analytic -16.5066 -2.0013E-3 2710.7 3.7646 0 2.24E-6
1217
+ O2(g)
1218
+ O2 = O2
1219
+ -log_k -2.8983
1220
+ -analytic -7.5001 7.8981e-3 0 0 2.0027e5
1221
+ -T_c 154.6; -P_c 49.8; -Omega 0.021
1222
+ H2(g)
1223
+ H2 = H2
1224
+ -log_k -3.105
1225
+ -delta_h -4.184 kJ
1226
+ -analytic -9.3114 4.6473e-3 -49.335 1.4341 1.2815e5
1227
+ -T_c 33.2; -P_c 12.8; -Omega -0.225
1228
+ N2(g)
1229
+ N2 = N2
1230
+ -log_k -3.1864
1231
+ -analytic -58.453 1.818e-3 3199 17.909 -27460
1232
+ -T_c 126.2; -P_c 33.5; -Omega 0.039
1233
+ H2S(g)
1234
+ H2S = H+ + HS-
1235
+ log_k -7.93
1236
+ -delta_h 9.1
1237
+ -analytic -45.07 -0.02418 0 17.9205 # H2S solubilities, 0 - 300�C, 1 - 987 atm, Jiang et al., 2020, CG 555, 119816
1238
+ -T_c 373.2; -P_c 88.2; -Omega 0.1
1239
+ CH4(g)
1240
+ CH4 = CH4
1241
+ -log_k -2.8
1242
+ -analytic 10.44 -7.65e-3 -6669 0 1.014e6 # CH4 solubilities 25 - 100�C
1243
+ -T_c 190.6; -P_c 45.4; -Omega 0.008
1244
+ #Amm(g)
1245
+ # Amm = Amm
1246
+ NH3(g)
1247
+ NH3 = NH3
1248
+ -log_k 1.7966
1249
+ -analytic -18.758 3.367e-4 2.5113e3 4.8619 39.192
1250
+ -T_c 405.6; -P_c 111.3; -Omega 0.25
1251
+ # redox-uncoupled gases
1252
+ Oxg(g)
1253
+ Oxg = Oxg
1254
+ -analytic -7.5001 7.8981e-3 0 0 2.0027e5
1255
+ -T_c 154.6; -P_c 49.8; -Omega 0.021
1256
+ Hdg(g)
1257
+ Hdg = Hdg
1258
+ -analytic -9.3114 4.6473e-3 -49.335 1.4341 1.2815e5
1259
+ -T_c 33.2; -P_c 12.8; -Omega -0.225
1260
+ Ntg(g)
1261
+ Ntg = Ntg
1262
+ -analytic -58.453 1.818e-3 3199 17.909 -27460
1263
+ T_c 126.2; -P_c 33.5; -Omega 0.039
1264
+ Mtg(g)
1265
+ Mtg = Mtg
1266
+ -log_k -2.8
1267
+ -analytic 10.44 -7.65e-3 -6669 0 1.014e6 # CH4 solubilities 25 - 100�C
1268
+ -T_c 190.6; -P_c 45.4; -Omega 0.008
1269
+ H2Sg(g)
1270
+ H2Sg = H+ + HSg-
1271
+ log_k -7.93
1272
+ -delta_h 9.1
1273
+ -analytic -45.07 -0.02418 0 17.9205 # H2S solubilities, 0 - 300�C, 1 - 987 atm, Jiang et al., 2020, CG 555, 119816
1274
+ -T_c 373.2; -P_c 88.2; -Omega 0.1
1275
+ Melanterite
1276
+ FeSO4:7H2O = 7 H2O + Fe+2 + SO4-2
1277
+ -log_k -2.209
1278
+ -delta_h 4.91 kcal
1279
+ -analytic 1.447 -0.004153 0 0 -214949
1280
+ Alunite
1281
+ KAl3(SO4)2(OH)6 + 6 H+ = K+ + 3 Al+3 + 2 SO4-2 + 6 H2O
1282
+ -log_k -1.4
1283
+ -delta_h -50.25 kcal
1284
+ Jarosite-K
1285
+ KFe3(SO4)2(OH)6 + 6 H+ = 3 Fe+3 + 6 H2O + K+ + 2 SO4-2
1286
+ -log_k -9.21
1287
+ -delta_h -31.28 kcal
1288
+ Zn(OH)2(e)
1289
+ Zn(OH)2 + 2 H+ = Zn+2 + 2 H2O
1290
+ -log_k 11.5
1291
+ Smithsonite
1292
+ ZnCO3 = Zn+2 + CO3-2
1293
+ -log_k -10
1294
+ -delta_h -4.36 kcal
1295
+ Sphalerite
1296
+ ZnS + H+ = Zn+2 + HS-
1297
+ -log_k -11.618
1298
+ -delta_h 8.25 kcal
1299
+ Willemite 289
1300
+ Zn2SiO4 + 4 H+ = 2 Zn+2 + H4SiO4
1301
+ -log_k 15.33
1302
+ -delta_h -33.37 kcal
1303
+ Cd(OH)2
1304
+ Cd(OH)2 + 2 H+ = Cd+2 + 2 H2O
1305
+ -log_k 13.65
1306
+ Otavite 315
1307
+ CdCO3 = Cd+2 + CO3-2
1308
+ -log_k -12.1
1309
+ -delta_h -0.019 kcal
1310
+ CdSiO3 328
1311
+ CdSiO3 + H2O + 2 H+ = Cd+2 + H4SiO4
1312
+ -log_k 9.06
1313
+ -delta_h -16.63 kcal
1314
+ CdSO4 329
1315
+ CdSO4 = Cd+2 + SO4-2
1316
+ -log_k -0.1
1317
+ -delta_h -14.74 kcal
1318
+ Cerussite 365
1319
+ PbCO3 = Pb+2 + CO3-2
1320
+ -log_k -13.13
1321
+ -delta_h 4.86 kcal
1322
+ Anglesite 384
1323
+ PbSO4 = Pb+2 + SO4-2
1324
+ -log_k -7.79
1325
+ -delta_h 2.15 kcal
1326
+ Pb(OH)2 389
1327
+ Pb(OH)2 + 2 H+ = Pb+2 + 2 H2O
1328
+ -log_k 8.15
1329
+ -delta_h -13.99 kcal
1330
+ GAS_BINARY_PARAMETERS
1331
+ H2O(g) CO2(g) 0.19
1332
+ H2O(g) H2S(g) 0.19
1333
+ H2O(g) H2Sg(g) 0.19
1334
+ H2O(g) CH4(g) 0.49
1335
+ H2O(g) Mtg(g) 0.49
1336
+ H2O(g) Methane(g) 0.49
1337
+ H2O(g) N2(g) 0.49
1338
+ H2O(g) Ntg(g) 0.49
1339
+ H2O(g) Ethane(g) 0.49
1340
+ H2O(g) Propane(g) 0.55
1341
+ EXCHANGE_MASTER_SPECIES
1342
+ X X-
1343
+ EXCHANGE_SPECIES
1344
+ X- = X-
1345
+ -log_k 0
1346
+
1347
+ Na+ + X- = NaX
1348
+ -log_k 0
1349
+ -gamma 4.08 0.082
1350
+
1351
+ K+ + X- = KX
1352
+ -log_k 0.7
1353
+ -gamma 3.5 0.015
1354
+ -delta_h -4.3 # Jardine & Sparks, 1984
1355
+
1356
+ Li+ + X- = LiX
1357
+ -log_k -0.08
1358
+ -gamma 6 0
1359
+ -delta_h 1.4 # Merriam & Thomas, 1956
1360
+
1361
+ # !!!!!
1362
+ # H+ + X- = HX
1363
+ # -log_k 1.0
1364
+ # -gamma 9.0 0
1365
+
1366
+ # AmmH+ + X- = AmmHX
1367
+ NH4+ + X- = NH4X
1368
+ -log_k 0.6
1369
+ -gamma 2.5 0
1370
+ -delta_h -2.4 # Laudelout et al., 1968
1371
+
1372
+ Ca+2 + 2 X- = CaX2
1373
+ -log_k 0.8
1374
+ -gamma 5 0.165
1375
+ -delta_h 7.2 # Van Bladel & Gheyl, 1980
1376
+
1377
+ Mg+2 + 2 X- = MgX2
1378
+ -log_k 0.6
1379
+ -gamma 5.5 0.2
1380
+ -delta_h 7.4 # Laudelout et al., 1968
1381
+
1382
+ Sr+2 + 2 X- = SrX2
1383
+ -log_k 0.91
1384
+ -gamma 5.26 0.121
1385
+ -delta_h 5.5 # Laudelout et al., 1968
1386
+
1387
+ Ba+2 + 2 X- = BaX2
1388
+ -log_k 0.91
1389
+ -gamma 4 0.153
1390
+ -delta_h 4.5 # Laudelout et al., 1968
1391
+
1392
+ Mn+2 + 2 X- = MnX2
1393
+ -log_k 0.52
1394
+ -gamma 6 0
1395
+
1396
+ Fe+2 + 2 X- = FeX2
1397
+ -log_k 0.44
1398
+ -gamma 6 0
1399
+
1400
+ Cu+2 + 2 X- = CuX2
1401
+ -log_k 0.6
1402
+ -gamma 6 0
1403
+
1404
+ Zn+2 + 2 X- = ZnX2
1405
+ -log_k 0.8
1406
+ -gamma 5 0
1407
+
1408
+ Cd+2 + 2 X- = CdX2
1409
+ -log_k 0.8
1410
+ -gamma 0 0
1411
+
1412
+ Pb+2 + 2 X- = PbX2
1413
+ -log_k 1.05
1414
+ -gamma 0 0
1415
+
1416
+ Al+3 + 3 X- = AlX3
1417
+ -log_k 0.41
1418
+ -gamma 9 0
1419
+
1420
+ AlOH+2 + 2 X- = AlOHX2
1421
+ -log_k 0.89
1422
+ -gamma 0 0
1423
+
1424
+ SURFACE_MASTER_SPECIES
1425
+ Hfo_s Hfo_sOH
1426
+ Hfo_w Hfo_wOH
1427
+ SURFACE_SPECIES
1428
+ # All surface data from
1429
+ # Dzombak and Morel, 1990
1430
+ #
1431
+ #
1432
+ # Acid-base data from table 5.7
1433
+ #
1434
+ # strong binding site--Hfo_s,
1435
+
1436
+ Hfo_sOH = Hfo_sOH
1437
+ -log_k 0
1438
+
1439
+ Hfo_sOH + H+ = Hfo_sOH2+
1440
+ -log_k 7.29 # = pKa1,int
1441
+
1442
+ Hfo_sOH = Hfo_sO- + H+
1443
+ -log_k -8.93 # = -pKa2,int
1444
+
1445
+ # weak binding site--Hfo_w
1446
+
1447
+ Hfo_wOH = Hfo_wOH
1448
+ -log_k 0
1449
+
1450
+ Hfo_wOH + H+ = Hfo_wOH2+
1451
+ -log_k 7.29 # = pKa1,int
1452
+
1453
+ Hfo_wOH = Hfo_wO- + H+
1454
+ -log_k -8.93 # = -pKa2,int
1455
+ ###############################################
1456
+ # CATIONS #
1457
+ ###############################################
1458
+ #
1459
+ # Cations from table 10.1 or 10.5
1460
+ #
1461
+ # Calcium
1462
+ Hfo_sOH + Ca+2 = Hfo_sOHCa+2
1463
+ -log_k 4.97
1464
+
1465
+ Hfo_wOH + Ca+2 = Hfo_wOCa+ + H+
1466
+ -log_k -5.85
1467
+ # Strontium
1468
+ Hfo_sOH + Sr+2 = Hfo_sOHSr+2
1469
+ -log_k 5.01
1470
+
1471
+ Hfo_wOH + Sr+2 = Hfo_wOSr+ + H+
1472
+ -log_k -6.58
1473
+
1474
+ Hfo_wOH + Sr+2 + H2O = Hfo_wOSrOH + 2 H+
1475
+ -log_k -17.6
1476
+ # Barium
1477
+ Hfo_sOH + Ba+2 = Hfo_sOHBa+2
1478
+ -log_k 5.46
1479
+
1480
+ Hfo_wOH + Ba+2 = Hfo_wOBa+ + H+
1481
+ -log_k -7.2 # table 10.5
1482
+ #
1483
+ # Cations from table 10.2
1484
+ #
1485
+ # Cadmium
1486
+ Hfo_sOH + Cd+2 = Hfo_sOCd+ + H+
1487
+ -log_k 0.47
1488
+
1489
+ Hfo_wOH + Cd+2 = Hfo_wOCd+ + H+
1490
+ -log_k -2.91
1491
+ # Zinc
1492
+ Hfo_sOH + Zn+2 = Hfo_sOZn+ + H+
1493
+ -log_k 0.99
1494
+
1495
+ Hfo_wOH + Zn+2 = Hfo_wOZn+ + H+
1496
+ -log_k -1.99
1497
+ # Copper
1498
+ Hfo_sOH + Cu+2 = Hfo_sOCu+ + H+
1499
+ -log_k 2.89
1500
+
1501
+ Hfo_wOH + Cu+2 = Hfo_wOCu+ + H+
1502
+ -log_k 0.6 # table 10.5
1503
+ # Lead
1504
+ Hfo_sOH + Pb+2 = Hfo_sOPb+ + H+
1505
+ -log_k 4.65
1506
+
1507
+ Hfo_wOH + Pb+2 = Hfo_wOPb+ + H+
1508
+ -log_k 0.3 # table 10.5
1509
+ #
1510
+ # Derived constants table 10.5
1511
+ #
1512
+ # Magnesium
1513
+ Hfo_wOH + Mg+2 = Hfo_wOMg+ + H+
1514
+ -log_k -4.6
1515
+ # Manganese
1516
+ Hfo_sOH + Mn+2 = Hfo_sOMn+ + H+
1517
+ -log_k -0.4 # table 10.5
1518
+
1519
+ Hfo_wOH + Mn+2 = Hfo_wOMn+ + H+
1520
+ -log_k -3.5 # table 10.5
1521
+ # Iron, strong site: Appelo, Van der Weiden, Tournassat & Charlet, EST 36, 3096
1522
+ Hfo_sOH + Fe+2 = Hfo_sOFe+ + H+
1523
+ -log_k -0.95
1524
+ # Iron, weak site: Liger et al., GCA 63, 2939, re-optimized for D&M
1525
+ Hfo_wOH + Fe+2 = Hfo_wOFe+ + H+
1526
+ -log_k -2.98
1527
+
1528
+ Hfo_wOH + Fe+2 + H2O = Hfo_wOFeOH + 2 H+
1529
+ -log_k -11.55
1530
+ ###############################################
1531
+ # ANIONS #
1532
+ ###############################################
1533
+ #
1534
+ # Anions from table 10.6
1535
+ #
1536
+ # Phosphate
1537
+ Hfo_wOH + PO4-3 + 3 H+ = Hfo_wH2PO4 + H2O
1538
+ -log_k 31.29
1539
+
1540
+ Hfo_wOH + PO4-3 + 2 H+ = Hfo_wHPO4- + H2O
1541
+ -log_k 25.39
1542
+
1543
+ Hfo_wOH + PO4-3 + H+ = Hfo_wPO4-2 + H2O
1544
+ -log_k 17.72
1545
+ #
1546
+ # Anions from table 10.7
1547
+ #
1548
+ # Borate
1549
+ Hfo_wOH + H3BO3 = Hfo_wH2BO3 + H2O
1550
+ -log_k 0.62
1551
+ #
1552
+ # Anions from table 10.8
1553
+ #
1554
+ # Sulfate
1555
+ Hfo_wOH + SO4-2 + H+ = Hfo_wSO4- + H2O
1556
+ -log_k 7.78
1557
+
1558
+ Hfo_wOH + SO4-2 = Hfo_wOHSO4-2
1559
+ -log_k 0.79
1560
+ #
1561
+ # Derived constants table 10.10
1562
+ #
1563
+ Hfo_wOH + F- + H+ = Hfo_wF + H2O
1564
+ -log_k 8.7
1565
+
1566
+ Hfo_wOH + F- = Hfo_wOHF-
1567
+ -log_k 1.6
1568
+ #
1569
+ # Carbonate: Van Geen et al., 1994 reoptimized for D&M model
1570
+ #
1571
+ Hfo_wOH + CO3-2 + H+ = Hfo_wCO3- + H2O
1572
+ -log_k 12.56
1573
+
1574
+ Hfo_wOH + CO3-2 + 2 H+ = Hfo_wHCO3 + H2O
1575
+ -log_k 20.62
1576
+ #
1577
+ # Silicate: Swedlund, P.J. and Webster, J.G., 1999. Water Research 33, 3413-3422.
1578
+ #
1579
+ Hfo_wOH + H4SiO4 = Hfo_wH3SiO4 + H2O ; log_K 4.28
1580
+ Hfo_wOH + H4SiO4 = Hfo_wH2SiO4- + H+ + H2O; log_K -3.22
1581
+ Hfo_wOH + H4SiO4 = Hfo_wHSiO4-2 + 2 H+ + H2O; log_K -11.69
1582
+
1583
+ MEAN_GAMMAS
1584
+ CaCl2 Ca+2 1 Cl- 2
1585
+ CaSO4 Ca+2 1 SO4-2 1
1586
+ CaCO3 Ca+2 1 CO3-2 1
1587
+ Ca(OH)2 Ca+2 1 OH- 2
1588
+ MgCl2 Mg+2 1 Cl- 2
1589
+ MgSO4 Mg+2 1 SO4-2 1
1590
+ MgCO3 Mg+2 1 CO3-2 1
1591
+ Mg(OH)2 Mg+2 1 OH- 2
1592
+ NaCl Na+ 1 Cl- 1
1593
+ Na2SO4 Na+ 2 SO4-2 1
1594
+ NaHCO3 Na+ 1 HCO3- 1
1595
+ Na2CO3 Na+ 2 CO3-2 1
1596
+ NaOH Na+ 1 OH- 1
1597
+ KCl K+ 1 Cl- 1
1598
+ K2SO4 K+ 2 SO4-2 1
1599
+ HCO3 K+ 1 HCO3- 1
1600
+ K2CO3 K+ 2 CO3-2 1
1601
+ KOH K+ 1 OH- 1
1602
+ HCl H+ 1 Cl- 1
1603
+ H2SO4 H+ 2 SO4-2 1
1604
+ HBr H+ 1 Br- 1
1605
+
1606
+ RATES
1607
+
1608
+ ###########
1609
+ #Quartz
1610
+ ###########
1611
+ #
1612
+ #######
1613
+ # Example of quartz kinetic rates block:
1614
+ # KINETICS
1615
+ # Quartz
1616
+ # -m0 158.8 # 90 % Qu
1617
+ # -parms 0.146 1.5
1618
+ # -step 3.1536e8 in 10
1619
+ # -tol 1e-12
1620
+
1621
+ Quartz
1622
+ -start
1623
+ 1 REM Specific rate k from Rimstidt and Barnes, 1980, GCA 44,1683
1624
+ 2 REM k = 10^-13.7 mol/m2/s (25 C), Ea = 90 kJ/mol
1625
+ 3 REM sp. rate * parm(2) due to salts (Dove and Rimstidt, MSA Rev. 29, 259)
1626
+ 4 REM PARM(1) = Specific area of Quartz, m^2/mol Quartz
1627
+ 5 REM PARM(2) = salt correction: (1 + 1.5 * c_Na (mM)), < 35
1628
+
1629
+ 10 dif_temp = 1/TK - 1/298
1630
+ 20 pk_w = 13.7 + 4700.4 * dif_temp
1631
+ 40 moles = PARM(1) * M0 * PARM(2) * (M/M0)^0.67 * 10^-pk_w * (1 - SR("Quartz"))
1632
+ # Integrate...
1633
+ 50 SAVE moles * TIME
1634
+ -end
1635
+
1636
+ ###########
1637
+ #K-feldspar
1638
+ ###########
1639
+ #
1640
+ # Sverdrup and Warfvinge, 1995, Estimating field weathering rates
1641
+ # using laboratory kinetics: Reviews in mineralogy and geochemistry,
1642
+ # vol. 31, p. 485-541.
1643
+ #
1644
+ # As described in:
1645
+ # Appelo and Postma, 2005, Geochemistry, groundwater
1646
+ # and pollution, 2nd Edition: A.A. Balkema Publishers,
1647
+ # p. 162-163 and 395-399.
1648
+ #
1649
+ # Assume soil is 10% K-feldspar by mass in 1 mm spheres (radius 0.05 mm)
1650
+ # Assume density of rock and Kspar is 2600 kg/m^3 = 2.6 kg/L
1651
+ # GFW Kspar 0.278 kg/mol
1652
+ #
1653
+ # Moles of Kspar per liter pore space calculation:
1654
+ # Mass of rock per liter pore space = 0.7*2.6/0.3 = 6.07 kg rock/L pore space
1655
+ # Mass of Kspar per liter pore space 6.07x0.1 = 0.607 kg Kspar/L pore space
1656
+ # Moles of Kspar per liter pore space 0.607/0.278 = 2.18 mol Kspar/L pore space
1657
+ #
1658
+ # Specific area calculation:
1659
+ # Volume of sphere 4/3 x pi x r^3 = 5.24e-13 m^3 Kspar/sphere
1660
+ # Mass of sphere 2600 x 5.24e-13 = 1.36e-9 kg Kspar/sphere
1661
+ # Moles of Kspar in sphere 1.36e-9/0.278 = 4.90e-9 mol Kspar/sphere
1662
+ # Surface area of one sphere 4 x pi x r^2 = 3.14e-8 m^2/sphere
1663
+ # Specific area of K-feldspar in sphere 3.14e-8/4.90e-9 = 6.41 m^2/mol Kspar
1664
+ #
1665
+ #
1666
+ # Example of KINETICS data block for K-feldspar rate:
1667
+ # KINETICS 1
1668
+ # K-feldspar
1669
+ # -m0 2.18 # 10% Kspar, 0.1 mm cubes
1670
+ # -m 2.18 # Moles per L pore space
1671
+ # -parms 6.41 0.1 # m^2/mol Kspar, fraction adjusts lab rate to field rate
1672
+ # -time 1.5 year in 40
1673
+
1674
+ K-feldspar
1675
+ -start
1676
+ 1 REM Sverdrup and Warfvinge, 1995, mol m^-2 s^-1
1677
+ 2 REM PARM(1) = Specific area of Kspar m^2/mol Kspar
1678
+ 3 REM PARM(2) = Adjusts lab rate to field rate
1679
+ 4 REM temp corr: from A&P, p. 162: E (kJ/mol) / R / 2.303 = H in H*(1/T-1/281)
1680
+ 5 REM K-Feldspar parameters
1681
+ 10 DATA 11.7, 0.5, 4e-6, 0.4, 500e-6, 0.15, 14.5, 0.14, 0.15, 13.1, 0.3
1682
+ 20 RESTORE 10
1683
+ 30 READ pK_H, n_H, lim_Al, x_Al, lim_BC, x_BC, pK_H2O, z_Al, z_BC, pK_OH, o_OH
1684
+ 40 DATA 3500, 2000, 2500, 2000
1685
+ 50 RESTORE 40
1686
+ 60 READ e_H, e_H2O, e_OH, e_CO2
1687
+ 70 pk_CO2 = 13
1688
+ 80 n_CO2 = 0.6
1689
+ 100 REM Generic rate follows
1690
+ 110 dif_temp = 1/TK - 1/281
1691
+ 120 BC = ACT("Na+") + ACT("K+") + ACT("Mg+2") + ACT("Ca+2")
1692
+ 130 REM rate by H+
1693
+ 140 pk_H = pk_H + e_H * dif_temp
1694
+ 150 rate_H = 10^-pk_H * ACT("H+")^n_H / ((1 + ACT("Al+3") / lim_Al)^x_Al * (1 + BC / lim_BC)^x_BC)
1695
+ 160 REM rate by hydrolysis
1696
+ 170 pk_H2O = pk_H2O + e_H2O * dif_temp
1697
+ 180 rate_H2O = 10^-pk_H2O / ((1 + ACT("Al+3") / lim_Al)^z_Al * (1 + BC / lim_BC)^z_BC)
1698
+ 190 REM rate by OH-
1699
+ 200 pk_OH = pk_OH + e_OH * dif_temp
1700
+ 210 rate_OH = 10^-pk_OH * ACT("OH-")^o_OH
1701
+ 220 REM rate by CO2
1702
+ 230 pk_CO2 = pk_CO2 + e_CO2 * dif_temp
1703
+ 240 rate_CO2 = 10^-pk_CO2 * (SR("CO2(g)"))^n_CO2
1704
+ 250 rate = rate_H + rate_H2O + rate_OH + rate_CO2
1705
+ 260 area = PARM(1) * M0 *(M/M0)^0.67
1706
+ 270 rate = PARM(2) * area * rate * (1-SR("K-feldspar"))
1707
+ 280 moles = rate * TIME
1708
+ 290 SAVE moles
1709
+ -end
1710
+
1711
+
1712
+ ###########
1713
+ #Albite
1714
+ ###########
1715
+ #
1716
+ # Sverdrup and Warfvinge, 1995, Estimating field weathering rates
1717
+ # using laboratory kinetics: Reviews in mineralogy and geochemistry,
1718
+ # vol. 31, p. 485-541.
1719
+ #
1720
+ # As described in:
1721
+ # Appelo and Postma, 2005, Geochemistry, groundwater
1722
+ # and pollution, 2nd Edition: A.A. Balkema Publishers,
1723
+ # p. 162-163 and 395-399.
1724
+ #
1725
+ # Example of KINETICS data block for Albite rate:
1726
+ # KINETICS 1
1727
+ # Albite
1728
+ # -m0 0.46 # 2% Albite, 0.1 mm cubes
1729
+ # -m 0.46 # Moles per L pore space
1730
+ # -parms 6.04 0.1 # m^2/mol Albite, fraction adjusts lab rate to field rate
1731
+ # -time 1.5 year in 40
1732
+ #
1733
+ # Assume soil is 2% Albite by mass in 1 mm spheres (radius 0.05 mm)
1734
+ # Assume density of rock and Albite is 2600 kg/m^3 = 2.6 kg/L
1735
+ # GFW Albite 0.262 kg/mol
1736
+ #
1737
+ # Moles of Albite per liter pore space calculation:
1738
+ # Mass of rock per liter pore space = 0.7*2.6/0.3 = 6.07 kg rock/L pore space
1739
+ # Mass of Albite per liter pore space 6.07x0.02 = 0.121 kg Albite/L pore space
1740
+ # Moles of Albite per liter pore space 0.607/0.262 = 0.46 mol Albite/L pore space
1741
+ #
1742
+ # Specific area calculation:
1743
+ # Volume of sphere 4/3 x pi x r^3 = 5.24e-13 m^3 Albite/sphere
1744
+ # Mass of sphere 2600 x 5.24e-13 = 1.36e-9 kg Albite/sphere
1745
+ # Moles of Albite in sphere 1.36e-9/0.262 = 5.20e-9 mol Albite/sphere
1746
+ # Surface area of one sphere 4 x pi x r^2 = 3.14e-8 m^2/sphere
1747
+ # Specific area of Albite in sphere 3.14e-8/5.20e-9 = 6.04 m^2/mol Albite
1748
+
1749
+ Albite
1750
+ -start
1751
+ 1 REM Sverdrup and Warfvinge, 1995, mol m^-2 s^-1
1752
+ 2 REM PARM(1) = Specific area of Albite m^2/mol Albite
1753
+ 3 REM PARM(2) = Adjusts lab rate to field rate
1754
+ 4 REM temp corr: from A&P, p. 162 E (kJ/mol) / R / 2.303 = H in H*(1/T-1/281)
1755
+ 5 REM Albite parameters
1756
+ 10 DATA 11.5, 0.5, 4e-6, 0.4, 500e-6, 0.2, 13.7, 0.14, 0.15, 11.8, 0.3
1757
+ 20 RESTORE 10
1758
+ 30 READ pK_H, n_H, lim_Al, x_Al, lim_BC, x_BC, pK_H2O, z_Al, z_BC, pK_OH, o_OH
1759
+ 40 DATA 3500, 2000, 2500, 2000
1760
+ 50 RESTORE 40
1761
+ 60 READ e_H, e_H2O, e_OH, e_CO2
1762
+ 70 pk_CO2 = 13
1763
+ 80 n_CO2 = 0.6
1764
+ 100 REM Generic rate follows
1765
+ 110 dif_temp = 1/TK - 1/281
1766
+ 120 BC = ACT("Na+") + ACT("K+") + ACT("Mg+2") + ACT("Ca+2")
1767
+ 130 REM rate by H+
1768
+ 140 pk_H = pk_H + e_H * dif_temp
1769
+ 150 rate_H = 10^-pk_H * ACT("H+")^n_H / ((1 + ACT("Al+3") / lim_Al)^x_Al * (1 + BC / lim_BC)^x_BC)
1770
+ 160 REM rate by hydrolysis
1771
+ 170 pk_H2O = pk_H2O + e_H2O * dif_temp
1772
+ 180 rate_H2O = 10^-pk_H2O / ((1 + ACT("Al+3") / lim_Al)^z_Al * (1 + BC / lim_BC)^z_BC)
1773
+ 190 REM rate by OH-
1774
+ 200 pk_OH = pk_OH + e_OH * dif_temp
1775
+ 210 rate_OH = 10^-pk_OH * ACT("OH-")^o_OH
1776
+ 220 REM rate by CO2
1777
+ 230 pk_CO2 = pk_CO2 + e_CO2 * dif_temp
1778
+ 240 rate_CO2 = 10^-pk_CO2 * (SR("CO2(g)"))^n_CO2
1779
+ 250 rate = rate_H + rate_H2O + rate_OH + rate_CO2
1780
+ 260 area = PARM(1) * M0 *(M/M0)^0.67
1781
+ 270 rate = PARM(2) * area * rate * (1-SR("Albite"))
1782
+ 280 moles = rate * TIME
1783
+ 290 SAVE moles
1784
+ -end
1785
+
1786
+ ########
1787
+ #Calcite
1788
+ ########
1789
+ # Example of KINETICS data block for calcite rate,
1790
+ # in mmol/cm2/s, Plummer et al., 1978, AJS 278, 179; Appelo et al., AG 13, 257
1791
+ # KINETICS 1
1792
+ # Calcite
1793
+ # -tol 1e-8
1794
+ # -m0 3.e-3
1795
+ # -m 3.e-3
1796
+ # -parms 1.67e5 0.6 # cm^2/mol calcite, exp factor
1797
+ # -time 1 day
1798
+
1799
+ Calcite
1800
+ -start
1801
+ 1 REM PARM(1) = specific surface area of calcite, cm^2/mol calcite
1802
+ 2 REM PARM(2) = exponent for M/M0
1803
+
1804
+ 10 si_cc = SI("Calcite")
1805
+ 20 IF (M <= 0 and si_cc < 0) THEN GOTO 200
1806
+ 30 k1 = 10^(0.198 - 444 / TK )
1807
+ 40 k2 = 10^(2.84 - 2177 /TK )
1808
+ 50 IF TC <= 25 THEN k3 = 10^(-5.86 - 317 / TK)
1809
+ 60 IF TC > 25 THEN k3 = 10^(-1.1 - 1737 / TK )
1810
+ 80 IF M0 > 0 THEN area = PARM(1)*M0*(M/M0)^PARM(2) ELSE area = PARM(1)*M
1811
+ 110 rate = area * (k1 * ACT("H+") + k2 * ACT("CO2") + k3 * ACT("H2O"))
1812
+ 120 rate = rate * (1 - 10^(2/3*si_cc))
1813
+ 130 moles = rate * 0.001 * TIME # convert from mmol to mol
1814
+ 200 SAVE moles
1815
+ -end
1816
+
1817
+ #######
1818
+ #Pyrite
1819
+ #######
1820
+ #
1821
+ # Williamson, M.A. and Rimstidt, J.D., 1994,
1822
+ # Geochimica et Cosmochimica Acta, v. 58, p. 5443-5454,
1823
+ # rate equation is mol m^-2 s^-1.
1824
+ #
1825
+ # Example of KINETICS data block for pyrite rate:
1826
+ # KINETICS 1
1827
+ # Pyrite
1828
+ # -tol 1e-8
1829
+ # -m0 5.e-4
1830
+ # -m 5.e-4
1831
+ # -parms 0.3 0.67 .5 -0.11
1832
+ # -time 1 day in 10
1833
+ Pyrite
1834
+ -start
1835
+ 1 REM Williamson and Rimstidt, 1994
1836
+ 2 REM PARM(1) = log10(specific area), log10(m^2 per mole pyrite)
1837
+ 3 REM PARM(2) = exp for (M/M0)
1838
+ 4 REM PARM(3) = exp for O2
1839
+ 5 REM PARM(4) = exp for H+
1840
+
1841
+ 10 REM Dissolution in presence of DO
1842
+ 20 if (M <= 0) THEN GOTO 200
1843
+ 30 if (SI("Pyrite") >= 0) THEN GOTO 200
1844
+ 40 log_rate = -8.19 + PARM(3)*LM("O2") + PARM(4)*LM("H+")
1845
+ 50 log_area = PARM(1) + LOG10(M0) + PARM(2)*LOG10(M/M0)
1846
+ 60 moles = 10^(log_area + log_rate) * TIME
1847
+ 200 SAVE moles
1848
+ -end
1849
+
1850
+ ##########
1851
+ #Organic_C
1852
+ ##########
1853
+ #
1854
+ # Example of KINETICS data block for SOC (sediment organic carbon):
1855
+ # KINETICS 1
1856
+ # Organic_C
1857
+ # -formula C
1858
+ # -tol 1e-8
1859
+ # -m 5e-3 # SOC in mol
1860
+ # -time 30 year in 15
1861
+ Organic_C
1862
+ -start
1863
+ 1 REM Additive Monod kinetics for SOC (sediment organic carbon)
1864
+ 2 REM Electron acceptors: O2, NO3, and SO4
1865
+
1866
+ 10 if (M <= 0) THEN GOTO 200
1867
+ 20 mO2 = MOL("O2")
1868
+ 30 mNO3 = TOT("N(5)")
1869
+ 40 mSO4 = TOT("S(6)")
1870
+ 50 k_O2 = 1.57e-9 # 1/sec
1871
+ 60 k_NO3 = 1.67e-11 # 1/sec
1872
+ 70 k_SO4 = 1.e-13 # 1/sec
1873
+ 80 rate = k_O2 * mO2/(2.94e-4 + mO2)
1874
+ 90 rate = rate + k_NO3 * mNO3/(1.55e-4 + mNO3)
1875
+ 100 rate = rate + k_SO4 * mSO4/(1.e-4 + mSO4)
1876
+ 110 moles = rate * M * (M/M0) * TIME
1877
+ 200 SAVE moles
1878
+ -end
1879
+
1880
+ ###########
1881
+ #Pyrolusite
1882
+ ###########
1883
+ #
1884
+ # Postma, D. and Appelo, C.A.J., 2000, GCA, vol. 64, pp. 1237-1247.
1885
+ # Rate equation given as mol L^-1 s^-1
1886
+ #
1887
+ # Example of KINETICS data block for Pyrolusite
1888
+ # KINETICS 1-12
1889
+ # Pyrolusite
1890
+ # -tol 1.e-7
1891
+ # -m0 0.1
1892
+ # -m 0.1
1893
+ # -time 0.5 day in 10
1894
+ Pyrolusite
1895
+ -start
1896
+ 10 if (M <= 0) THEN GOTO 200
1897
+ 20 sr_pl = SR("Pyrolusite")
1898
+ 30 if (sr_pl > 1) THEN GOTO 100
1899
+ 40 REM sr_pl <= 1, undersaturated
1900
+ 50 Fe_t = TOT("Fe(2)")
1901
+ 60 if Fe_t < 1e-8 then goto 200
1902
+ 70 moles = 6.98e-5 * Fe_t * (M/M0)^0.67 * TIME * (1 - sr_pl)
1903
+ 80 GOTO 200
1904
+ 100 REM sr_pl > 1, supersaturated
1905
+ 110 moles = 2e-3 * 6.98e-5 * (1 - sr_pl) * TIME
1906
+ 200 SAVE moles * SOLN_VOL
1907
+ -end
1908
+
1909
+ END
1910
+ # =============================================================================================
1911
+ #(a) means amorphous. (d) means disordered, or less crystalline.
1912
+ #(14A) refers to 14 angstrom spacing of clay planes. FeS(ppt),
1913
+ #precipitated, indicates an initial precipitate that is less crystalline.
1914
+ #Zn(OH)2(e) indicates a specific crystal form, epsilon.
1915
+ # =============================================================================================
1916
+ # For the reaction aA + bB = cC + dD,
1917
+ # with delta_v = c*Vm(C) + d*Vm(D) - a*Vm(A) - b*Vm(B),
1918
+ # PHREEQC adds the pressure term to log_k: -= delta_v * (P - 1) / (2.3RT).
1919
+ # Vm(A) is volume of A, cm3/mol, P is pressure, atm, R is the gas constant, T is Kelvin.
1920
+ # Gas-pressures and fugacity coefficients are calculated with Peng-Robinson's EOS.
1921
+ # These binary interaction coefficients from Soreide and Whitson, 1992, FPE 77, 217 are
1922
+ # hard-coded in calc_PR():
1923
+ # kij CH4 CO2 H2S N2
1924
+ # H2O 0.49 0.19 0.19 0.49
1925
+ # but are overwritten by the data block GAS_BINARY_PARAMETERS of this file.
1926
+ # =============================================================================================
1927
+ # The molar volumes of solids are entered with
1928
+ # -Vm vm cm3/mol
1929
+ # vm is the molar volume, cm3/mol (default), but dm3/mol and m3/mol are permitted.
1930
+ # Data for minerals' vm (= MW (g/mol) / rho (g/cm3)) are defined using rho from
1931
+ # Deer, Howie and Zussman, The rock-forming minerals, Longman.
1932
+ # --------------------
1933
+ # Temperature- and pressure-dependent volumina of aqueous species are calculated with a Redlich-
1934
+ # type equation (cf. Redlich and Meyer, Chem. Rev. 64, 221), from parameters entered with
1935
+ # -Vm a1 a2 a3 a4 W a0 i1 i2 i3 i4
1936
+ # The volume (cm3/mol) is
1937
+ # Vm(T, pb, I) = 41.84 * (a1 * 0.1 + a2 * 100 / (2600 + pb) + a3 / (T - 228) +
1938
+ # a4 * 1e4 / (2600 + pb) / (T - 228) - W * QBrn)
1939
+ # + z^2 / 2 * Av * f(I^0.5)
1940
+ # + (i1 + i2 / (T - 228) + i3 * (T - 228)) * I^i4
1941
+ # Volumina at I = 0 are obtained using supcrt92 formulas (Johnson et al., 1992, CG 18, 899).
1942
+ # 41.84 transforms cal/bar/mol into cm3/mol.
1943
+ # pb is pressure in bar.
1944
+ # W * QBrn is the energy of solvation, calculated from W and the pressure dependence of the Born equation,
1945
+ # W is fitted on measured solution densities.
1946
+ # z is charge of the solute species.
1947
+ # Av is the Debye-H�ckel limiting slope (DH_AV in PHREEQC basic).
1948
+ # a0 is the ion-size parameter in the extended Debye-H�ckel equation:
1949
+ # f(I^0.5) = I^0.5 / (1 + a0 * DH_B * I^0.5),
1950
+ # a0 = -gamma x for cations, = 0 for anions.
1951
+ # For details, consult ref. 1.
1952
+ # =============================================================================================
1953
+ # The viscosity is calculated with a (modified) Jones-Dole equation:
1954
+ # viscos / viscos_0 = 1 + A * Sum(0.5 z_i m_i) + fan * Sum(B_i m_i + D_i m_i n_i)
1955
+ # Parameters are for calculating the B and D terms:
1956
+ # -viscosity 9.35e-2 -8.31e-2 2.487e-2 4.49e-4 2.01e-2 1.570 0
1957
+ # # b0 b1 b2 d1 d2 d3 tan
1958
+ # z_i is absolute charge number, m_i is molality of i
1959
+ # B_i = b0 + b1 exp(-b2 * tc)
1960
+ # fan = (2 - tan V_i / V_Cl-), corrects for the volume of anions
1961
+ # D_i = d1 * exp(-d2 tc)
1962
+ # n_i = (I^d3 * (1 + fI) + ((z_i^2 + z_i) / 2 � m_i)^d3) / (2 + fI), fI is an ionic strength term.
1963
+ # For details, consult ref. 4.
1964
+ #
1965
+ # ref. 1: Appelo, Parkhurst and Post, 2014. Geochim. Cosmochim. Acta 125, 49�67.
1966
+ # ref. 2: Procedures from ref. 1 using data compiled by Lalibert�, 2009, J. Chem. Eng. Data 54, 1725.
1967
+ # ref. 3: Appelo, 2017, Cem. Concr. Res. 101, 102-113.
1968
+ # ref. 4: Appelo and Parkhurst in prep., for details see subroutine viscosity in transport.cpp
1969
+ #
1970
+ # =============================================================================================
1971
+ # It remains the responsibility of the user to check the calculated results, for example with
1972
+ # measured solubilities as a function of (P, T).