pyEQL 1.4.0rc9__cp310-cp310-macosx_10_9_x86_64.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 (491) hide show
  1. pyEQL/__init__.py +50 -0
  2. pyEQL/_phreeqc.cpython-310-darwin.so +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/CMakeFiles/CTestScript.cmake +167 -0
  46. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/CSelectedOutput.cpp.o +0 -0
  47. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/IPhreeqc.cpp.o +0 -0
  48. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/IPhreeqcLib.cpp.o +0 -0
  49. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/IPhreeqc_interface_F.cpp.o +0 -0
  50. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/Var.c.o +0 -0
  51. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/Dictionary.cpp.o +0 -0
  52. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/ExchComp.cxx.o +0 -0
  53. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/Exchange.cxx.o +0 -0
  54. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/GasComp.cxx.o +0 -0
  55. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/GasPhase.cxx.o +0 -0
  56. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/ISolution.cxx.o +0 -0
  57. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/ISolutionComp.cxx.o +0 -0
  58. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/KineticsComp.cxx.o +0 -0
  59. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/NameDouble.cxx.o +0 -0
  60. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/NumKeyword.cxx.o +0 -0
  61. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/PBasic.cpp.o +0 -0
  62. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/PHRQ_io_output.cpp.o +0 -0
  63. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/PPassemblage.cxx.o +0 -0
  64. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/PPassemblageComp.cxx.o +0 -0
  65. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/Phreeqc.cpp.o +0 -0
  66. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/PhreeqcKeywords/Keywords.cpp.o +0 -0
  67. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/Pressure.cxx.o +0 -0
  68. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/Reaction.cxx.o +0 -0
  69. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/ReadClass.cxx.o +0 -0
  70. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/SS.cxx.o +0 -0
  71. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/SSassemblage.cxx.o +0 -0
  72. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/SScomp.cxx.o +0 -0
  73. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/SelectedOutput.cpp.o +0 -0
  74. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/Serializer.cxx.o +0 -0
  75. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/Solution.cxx.o +0 -0
  76. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/SolutionIsotope.cxx.o +0 -0
  77. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/StorageBin.cxx.o +0 -0
  78. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/StorageBinList.cpp.o +0 -0
  79. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/Surface.cxx.o +0 -0
  80. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/SurfaceCharge.cxx.o +0 -0
  81. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/SurfaceComp.cxx.o +0 -0
  82. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/System.cxx.o +0 -0
  83. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/Temperature.cxx.o +0 -0
  84. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/Use.cpp.o +0 -0
  85. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/UserPunch.cpp.o +0 -0
  86. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/advection.cpp.o +0 -0
  87. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/basicsubs.cpp.o +0 -0
  88. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/cl1.cpp.o +0 -0
  89. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/common/PHRQ_base.cxx.o +0 -0
  90. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/common/PHRQ_io.cpp.o +0 -0
  91. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/common/Parser.cxx.o +0 -0
  92. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/common/Utils.cxx.o +0 -0
  93. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/cvdense.cpp.o +0 -0
  94. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/cvode.cpp.o +0 -0
  95. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/cxxKinetics.cxx.o +0 -0
  96. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/cxxMix.cxx.o +0 -0
  97. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/dense.cpp.o +0 -0
  98. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/dumper.cpp.o +0 -0
  99. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/gases.cpp.o +0 -0
  100. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/input.cpp.o +0 -0
  101. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/integrate.cpp.o +0 -0
  102. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/inverse.cpp.o +0 -0
  103. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/isotopes.cpp.o +0 -0
  104. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/kinetics.cpp.o +0 -0
  105. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/mainsubs.cpp.o +0 -0
  106. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/model.cpp.o +0 -0
  107. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/nvector.cpp.o +0 -0
  108. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/nvector_serial.cpp.o +0 -0
  109. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/parse.cpp.o +0 -0
  110. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/phqalloc.cpp.o +0 -0
  111. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/pitzer.cpp.o +0 -0
  112. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/pitzer_structures.cpp.o +0 -0
  113. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/prep.cpp.o +0 -0
  114. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/print.cpp.o +0 -0
  115. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/read.cpp.o +0 -0
  116. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/readtr.cpp.o +0 -0
  117. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/runner.cpp.o +0 -0
  118. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/sit.cpp.o +0 -0
  119. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/smalldense.cpp.o +0 -0
  120. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/spread.cpp.o +0 -0
  121. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/step.cpp.o +0 -0
  122. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/structures.cpp.o +0 -0
  123. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/sundialsmath.cpp.o +0 -0
  124. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/tally.cpp.o +0 -0
  125. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/tidy.cpp.o +0 -0
  126. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/transport.cpp.o +0 -0
  127. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CMakeFiles/IPhreeqc.dir/src/phreeqcpp/utilities.cpp.o +0 -0
  128. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/CTestTestfile.cmake +6 -0
  129. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/DartConfiguration.tcl +109 -0
  130. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/cmake_install.cmake +45 -0
  131. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/build/libIPhreeqc.a +0 -0
  132. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/config/ar-lib +270 -0
  133. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/config/compile +347 -0
  134. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/config/config.guess +1441 -0
  135. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/config/config.sub +1813 -0
  136. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/config/depcomp +791 -0
  137. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/config/install-sh +508 -0
  138. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/config/ltmain.sh +11156 -0
  139. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/config/missing +215 -0
  140. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/config/test-driver +148 -0
  141. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/configure +23867 -0
  142. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/configure.ac +136 -0
  143. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/database/Amm.dat +1968 -0
  144. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/database/CMakeLists.txt +32 -0
  145. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/database/ColdChem.dat +267 -0
  146. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/database/Concrete_PHR.dat +158 -0
  147. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/database/Concrete_PZ.dat +195 -0
  148. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/database/Kinec.v2.dat +12039 -0
  149. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/database/Kinec_v3.dat +12159 -0
  150. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/database/Makefile.am +28 -0
  151. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/database/Makefile.in +530 -0
  152. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/database/PHREEQC_ThermoddemV1.10_15Dec2020.dat +12965 -0
  153. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/database/Tipping_Hurley.dat +4137 -0
  154. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/database/core10.dat +6824 -0
  155. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/database/frezchem.dat +634 -0
  156. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/database/iso.dat +7235 -0
  157. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/database/llnl.dat +19310 -0
  158. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/database/minteq.dat +5654 -0
  159. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/database/minteq.v4.dat +13212 -0
  160. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/database/phreeqc.dat +1972 -0
  161. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/database/phreeqc_rates.dat +3158 -0
  162. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/database/pitzer.dat +1044 -0
  163. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/database/sit.dat +14348 -0
  164. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/database/wateq4f.dat +4036 -0
  165. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/CMakeLists.txt +35 -0
  166. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/IPhreeqc.pdf +0 -0
  167. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/Makefile.am +24 -0
  168. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/Makefile.in +545 -0
  169. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/NOTICE +51 -0
  170. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/Phreeqc_2_1999_manual.pdf +0 -0
  171. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/Phreeqc_3_2013_manual.pdf +0 -0
  172. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/README +428 -0
  173. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/RELEASE +7294 -0
  174. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/IPhreeqc_8h.html +5096 -0
  175. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/IPhreeqc_8h_source.html +389 -0
  176. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/IPhreeqc_8hpp.html +83 -0
  177. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/IPhreeqc_8hpp_source.html +478 -0
  178. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/Var_8h.html +318 -0
  179. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/Var_8h_source.html +200 -0
  180. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/bc_s.png +0 -0
  181. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/bdwn.png +0 -0
  182. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/classIPhreeqc.html +2274 -0
  183. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/classIPhreeqc.png +0 -0
  184. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/classIPhreeqcStop.html +69 -0
  185. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/classIPhreeqcStop.png +0 -0
  186. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/closed.png +0 -0
  187. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/dir_68267d1309a1af8e8297ef4c3efbcdba.html +68 -0
  188. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/doxygen.css +1440 -0
  189. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/doxygen.png +0 -0
  190. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/dynsections.js +97 -0
  191. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/ftv2blank.png +0 -0
  192. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/ftv2doc.png +0 -0
  193. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/ftv2folderclosed.png +0 -0
  194. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/ftv2folderopen.png +0 -0
  195. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/ftv2lastnode.png +0 -0
  196. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/ftv2link.png +0 -0
  197. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/ftv2mlastnode.png +0 -0
  198. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/ftv2mnode.png +0 -0
  199. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/ftv2node.png +0 -0
  200. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/ftv2plastnode.png +0 -0
  201. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/ftv2pnode.png +0 -0
  202. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/ftv2splitbar.png +0 -0
  203. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/ftv2vertline.png +0 -0
  204. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/index.html +58 -0
  205. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/jquery.js +31 -0
  206. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/nav_f.png +0 -0
  207. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/nav_g.png +0 -0
  208. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/nav_h.png +0 -0
  209. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/open.png +0 -0
  210. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/structVAR.html +143 -0
  211. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/sync_off.png +0 -0
  212. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/sync_on.png +0 -0
  213. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/tab_a.png +0 -0
  214. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/tab_b.png +0 -0
  215. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/tab_h.png +0 -0
  216. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/tab_s.png +0 -0
  217. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/html/tabs.css +60 -0
  218. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/doc/phreeqc3.chm +0 -0
  219. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/CMakeLists.txt +11 -0
  220. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/Makefile.am +88 -0
  221. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/Makefile.in +696 -0
  222. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/c/CMakeLists.txt +1 -0
  223. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/c/advect/CMakeLists.txt +35 -0
  224. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/c/advect/CMakeLists.txt.in +21 -0
  225. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/c/advect/README.txt +44 -0
  226. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/c/advect/advect.c +101 -0
  227. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/c/advect/ic +17 -0
  228. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/c/advect/phreeqc.dat +1579 -0
  229. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/com/CMakeLists.txt +10 -0
  230. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/com/README.txt +3 -0
  231. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/com/excel/CMakeLists.txt +9 -0
  232. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/com/excel/phreeqc.dat +1582 -0
  233. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/com/excel/runphreeqc.xls +0 -0
  234. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/com/excel/withcallback.xls +0 -0
  235. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/com/python/CMakeLists.txt +11 -0
  236. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/com/python/Gypsum.py +52 -0
  237. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/com/python/parallel_advect.py +465 -0
  238. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/com/python/phreeqc.dat +1582 -0
  239. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/com/python/pitzer.dat +790 -0
  240. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/com/python/wateq4f.dat +3846 -0
  241. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/cpp/CMakeLists.txt +1 -0
  242. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/cpp/advect/CMakeLists.txt +35 -0
  243. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/cpp/advect/CMakeLists.txt.in +20 -0
  244. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/cpp/advect/README.txt +45 -0
  245. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/cpp/advect/advect.cpp +110 -0
  246. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/cpp/advect/ic +17 -0
  247. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/cpp/advect/phreeqc.dat +1579 -0
  248. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/fortran/CMakeLists.txt +1 -0
  249. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/fortran/advect/CMakeLists.txt +44 -0
  250. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/fortran/advect/CMakeLists.txt.in +24 -0
  251. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/fortran/advect/README.txt +45 -0
  252. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/fortran/advect/advect.F90 +102 -0
  253. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/fortran/advect/ic +17 -0
  254. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/fortran/advect/phreeqc.dat +1579 -0
  255. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/using-cmake/CMakeLists.txt +26 -0
  256. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/using-cmake/CMakeLists.txt.in +20 -0
  257. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/using-cmake/README.txt +37 -0
  258. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/using-cmake/ex2 +26 -0
  259. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/using-cmake/main.cpp +20 -0
  260. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/using-cmake/phreeqc.dat +1837 -0
  261. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/examples/using-cmake/post-install.cmake.in +7 -0
  262. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/gtest/CMakeLists.txt +185 -0
  263. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/gtest/FileTest.cpp +171 -0
  264. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/gtest/FileTest.h +34 -0
  265. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/gtest/Makefile.am +18 -0
  266. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/gtest/Makefile.in +466 -0
  267. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/gtest/TestCVar.cpp +9 -0
  268. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/gtest/TestIPhreeqc.cpp +4901 -0
  269. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/gtest/TestIPhreeqcLib.cpp +4644 -0
  270. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/gtest/TestSelectedOutput.cpp +669 -0
  271. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/gtest/TestVar.cpp +10 -0
  272. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/gtest/conv_fail.in +11 -0
  273. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/gtest/dump +42 -0
  274. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/gtest/iso.dat +7231 -0
  275. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/gtest/kinn20140218 +349 -0
  276. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/gtest/missing_e.dat +1556 -0
  277. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/gtest/multi_punch +105 -0
  278. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/gtest/multi_punch_no_set +102 -0
  279. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/gtest/phreeqc.dat.90a6449 +1935 -0
  280. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/gtest/phreeqc.dat.old +1556 -0
  281. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/m4/libtool.m4 +8388 -0
  282. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/m4/ltoptions.m4 +437 -0
  283. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/m4/ltsugar.m4 +124 -0
  284. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/m4/ltversion.m4 +23 -0
  285. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/m4/lt~obsolete.m4 +99 -0
  286. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/resource.h +14 -0
  287. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/CSelectedOutput.cpp +401 -0
  288. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/CSelectedOutput.hxx +77 -0
  289. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/CVar.hxx +162 -0
  290. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/Debug.h +12 -0
  291. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/ErrorReporter.hxx +70 -0
  292. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/IPhreeqc.cpp +1889 -0
  293. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/IPhreeqc.f.inc +91 -0
  294. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/IPhreeqc.f90.inc +603 -0
  295. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/IPhreeqc.h +2182 -0
  296. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/IPhreeqc.hpp +1027 -0
  297. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/IPhreeqcCallbacks.h +19 -0
  298. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/IPhreeqcF.f +653 -0
  299. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/IPhreeqcLib.cpp +1098 -0
  300. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/IPhreeqc_interface.F90 +1283 -0
  301. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/IPhreeqc_interface_F.cpp +535 -0
  302. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/IPhreeqc_interface_F.h +162 -0
  303. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/Makefile.am +210 -0
  304. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/Makefile.in +1294 -0
  305. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/README.Fortran +17 -0
  306. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/Var.c +84 -0
  307. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/Var.h +152 -0
  308. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/Version.h +36 -0
  309. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/fimpl.h +282 -0
  310. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/fwrap.cpp +646 -0
  311. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/fwrap.h +163 -0
  312. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/fwrap1.cpp +24 -0
  313. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/fwrap2.cpp +24 -0
  314. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/fwrap3.cpp +24 -0
  315. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/fwrap4.cpp +24 -0
  316. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/fwrap5.cpp +24 -0
  317. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/fwrap6.cpp +25 -0
  318. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/fwrap7.cpp +25 -0
  319. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/fwrap8.cpp +24 -0
  320. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/ChartHandler.cpp +225 -0
  321. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/ChartHandler.h +59 -0
  322. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/ChartObject.cpp +1382 -0
  323. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/ChartObject.h +444 -0
  324. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/CurveObject.cpp +42 -0
  325. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/CurveObject.h +79 -0
  326. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/Dictionary.cpp +41 -0
  327. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/Dictionary.h +28 -0
  328. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/ExchComp.cxx +398 -0
  329. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/ExchComp.h +117 -0
  330. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/Exchange.cxx +466 -0
  331. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/Exchange.h +74 -0
  332. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/Form1.h +1184 -0
  333. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/Form1.resX +36 -0
  334. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/GasComp.cxx +265 -0
  335. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/GasComp.h +59 -0
  336. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/GasPhase.cxx +659 -0
  337. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/GasPhase.h +103 -0
  338. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/ISolution.cxx +40 -0
  339. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/ISolution.h +53 -0
  340. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/ISolutionComp.cxx +202 -0
  341. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/ISolutionComp.h +138 -0
  342. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/KineticsComp.cxx +318 -0
  343. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/KineticsComp.h +81 -0
  344. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/NA.h +1 -0
  345. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/NameDouble.cxx +537 -0
  346. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/NameDouble.h +66 -0
  347. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/NumKeyword.cxx +190 -0
  348. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/NumKeyword.h +67 -0
  349. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/PBasic.cpp +8350 -0
  350. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/PBasic.h +572 -0
  351. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/PHRQ_io_output.cpp +411 -0
  352. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/PPassemblage.cxx +375 -0
  353. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/PPassemblage.h +70 -0
  354. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/PPassemblageComp.cxx +441 -0
  355. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/PPassemblageComp.h +83 -0
  356. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/Phreeqc.cpp +2087 -0
  357. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/Phreeqc.h +2164 -0
  358. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/PhreeqcKeywords/Keywords.cpp +242 -0
  359. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/PhreeqcKeywords/Keywords.h +104 -0
  360. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/Pressure.cxx +417 -0
  361. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/Pressure.h +43 -0
  362. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/Reaction.cxx +284 -0
  363. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/Reaction.h +57 -0
  364. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/ReadClass.cxx +1150 -0
  365. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/SS.cxx +609 -0
  366. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/SS.h +128 -0
  367. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/SSassemblage.cxx +317 -0
  368. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/SSassemblage.h +59 -0
  369. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/SScomp.cxx +297 -0
  370. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/SScomp.h +66 -0
  371. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/SelectedOutput.cpp +115 -0
  372. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/SelectedOutput.h +209 -0
  373. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/Serializer.cxx +213 -0
  374. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/Serializer.h +42 -0
  375. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/Solution.cxx +1795 -0
  376. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/Solution.h +154 -0
  377. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/SolutionIsotope.cxx +333 -0
  378. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/SolutionIsotope.h +85 -0
  379. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/StorageBin.cxx +1507 -0
  380. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/StorageBin.h +141 -0
  381. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/StorageBinList.cpp +358 -0
  382. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/StorageBinList.h +81 -0
  383. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/Surface.cxx +837 -0
  384. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/Surface.h +108 -0
  385. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/SurfaceCharge.cxx +617 -0
  386. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/SurfaceCharge.h +137 -0
  387. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/SurfaceComp.cxx +509 -0
  388. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/SurfaceComp.h +70 -0
  389. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/System.cxx +103 -0
  390. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/System.h +89 -0
  391. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/Temperature.cxx +423 -0
  392. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/Temperature.h +42 -0
  393. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/Use.cpp +78 -0
  394. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/Use.h +159 -0
  395. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/UserPunch.cpp +32 -0
  396. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/UserPunch.h +39 -0
  397. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/ZedGraph.dll +0 -0
  398. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/advection.cpp +140 -0
  399. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/basicsubs.cpp +4333 -0
  400. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/cl1.cpp +881 -0
  401. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/common/PHRQ_base.cxx +117 -0
  402. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/common/PHRQ_base.h +48 -0
  403. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/common/PHRQ_exports.h +20 -0
  404. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/common/PHRQ_io.cpp +914 -0
  405. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/common/PHRQ_io.h +207 -0
  406. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/common/Parser.cxx +1331 -0
  407. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/common/Parser.h +310 -0
  408. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/common/Utils.cxx +263 -0
  409. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/common/Utils.h +29 -0
  410. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/common/phrqtype.h +18 -0
  411. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/cvdense.cpp +566 -0
  412. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/cvdense.h +267 -0
  413. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/cvode.cpp +3939 -0
  414. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/cvode.h +940 -0
  415. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/cxxKinetics.cxx +617 -0
  416. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/cxxKinetics.h +78 -0
  417. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/cxxMix.cxx +154 -0
  418. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/cxxMix.h +58 -0
  419. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/dense.cpp +175 -0
  420. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/dense.h +341 -0
  421. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/dumper.cpp +277 -0
  422. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/dumper.h +60 -0
  423. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/gases.cpp +748 -0
  424. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/global_structures.h +1672 -0
  425. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/input.cpp +133 -0
  426. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/integrate.cpp +1219 -0
  427. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/inverse.cpp +5135 -0
  428. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/isotopes.cpp +1813 -0
  429. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/kinetics.cpp +3180 -0
  430. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/mainsubs.cpp +2320 -0
  431. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/model.cpp +5843 -0
  432. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/nvector.cpp +272 -0
  433. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/nvector.h +485 -0
  434. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/nvector_serial.cpp +1032 -0
  435. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/nvector_serial.h +369 -0
  436. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/parse.cpp +1044 -0
  437. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/phqalloc.cpp +316 -0
  438. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/phqalloc.h +47 -0
  439. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/pitzer.cpp +2709 -0
  440. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/pitzer_structures.cpp +225 -0
  441. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/prep.cpp +6267 -0
  442. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/print.cpp +3673 -0
  443. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/read.cpp +10245 -0
  444. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/readtr.cpp +1495 -0
  445. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/runner.cpp +158 -0
  446. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/runner.h +33 -0
  447. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/sit.cpp +1684 -0
  448. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/smalldense.cpp +324 -0
  449. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/smalldense.h +261 -0
  450. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/spread.cpp +1309 -0
  451. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/step.cpp +1566 -0
  452. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/structures.cpp +3381 -0
  453. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/sundialsmath.cpp +133 -0
  454. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/sundialsmath.h +162 -0
  455. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/sundialstypes.h +183 -0
  456. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/tally.cpp +1288 -0
  457. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/tidy.cpp +5600 -0
  458. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/transport.cpp +6403 -0
  459. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/phreeqcpp/utilities.cpp +1339 -0
  460. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/src/thread.h +64 -0
  461. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/tests/CMakeLists.txt +133 -0
  462. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/tests/Makefile.am +45 -0
  463. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/tests/Makefile.in +1128 -0
  464. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/tests/ex2.in +26 -0
  465. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/tests/main.f90 +31 -0
  466. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/tests/main77.f +6 -0
  467. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/tests/main_fortran.cxx +8 -0
  468. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/tests/phreeqc.dat.in +1556 -0
  469. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/tests/test_c.c +148 -0
  470. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/tests/test_cxx.cxx +152 -0
  471. pyEQL/phreeqc/ext/iphreeqc-3.8.6-17100/tests/test_f90.F90 +328 -0
  472. pyEQL/phreeqc/iphreeqc_wrapper.cpp +75 -0
  473. pyEQL/phreeqc/solution.py +74 -0
  474. pyEQL/phreeqc/var.py +50 -0
  475. pyEQL/presets/Ringers lactate.yaml +20 -0
  476. pyEQL/presets/__init__.py +17 -0
  477. pyEQL/presets/normal saline.yaml +17 -0
  478. pyEQL/presets/rainwater.yaml +17 -0
  479. pyEQL/presets/seawater.yaml +29 -0
  480. pyEQL/presets/urine.yaml +26 -0
  481. pyEQL/presets/wastewater.yaml +21 -0
  482. pyEQL/py.typed +0 -0
  483. pyEQL/salt_ion_match.py +112 -0
  484. pyEQL/solute.py +163 -0
  485. pyEQL/solution.py +2714 -0
  486. pyEQL/utils.py +237 -0
  487. pyeql-1.4.0rc9.dist-info/METADATA +130 -0
  488. pyeql-1.4.0rc9.dist-info/RECORD +491 -0
  489. pyeql-1.4.0rc9.dist-info/WHEEL +6 -0
  490. pyeql-1.4.0rc9.dist-info/licenses/AUTHORS.md +21 -0
  491. pyeql-1.4.0rc9.dist-info/licenses/LICENSE.txt +20 -0
@@ -0,0 +1,634 @@
1
+ PITZER
2
+ -MacInnes false
3
+ -use_etheta true
4
+ -redox false
5
+
6
+ SOLUTION_MASTER_SPECIES
7
+ H H+ -1. H 1.008
8
+ H(1) H+ -1. 0.0
9
+ E e- 0.0 0.0 0.0
10
+ O H2O 0.0 O 15.999
11
+ O(-2) H2O 0.0 0.0
12
+ Ca Ca+2 0.0 Ca 40.08
13
+ Mg Mg+2 0.0 Mg 24.31
14
+ Na Na+ 0.0 Na 22.99
15
+ K K+ 0.0 K 39.1
16
+ Cl Cl- 0.0 Cl 35.45
17
+ C CO3-2 2.0 HCO3 12.015
18
+ C(4) CO3-2 2.0 HCO3 12.015
19
+ Alkalinity CO3-2 1.0 Ca0.5(CO3)0.5 50.046
20
+ S SO4-2 0.0 SO4 32.064
21
+ S(6) SO4-2 0.0 SO4
22
+
23
+ SOLUTION_SPECIES
24
+ H+ = H+
25
+ -dw 9.31e-9
26
+
27
+ e- = e-
28
+
29
+ H2O = H2O
30
+
31
+ Ca+2 = Ca+2
32
+ -dw 0.793e-9
33
+ -Vm -0.3456 -7.252 6.149 -2.479 1.239 5 1.60 -57.1 -6.12e-3 1 # ref. 1
34
+
35
+ Mg+2 = Mg+2
36
+ -dw 0.705e-9
37
+ -Vm -1.410 -8.6 11.13 -2.39 1.332 5.5 1.29 -32.9 -5.86e-3 1 # ref. 1
38
+
39
+ Na+ = Na+
40
+ -dw 1.33e-9
41
+ -Vm 2.28 -4.38 -4.1 -0.586 0.09 4 0.3 52 -3.33e-3 0.566 # ref. 1
42
+ # for calculating densities (rho) when I > 3...
43
+ # -Vm 2.28 -4.38 -4.1 -0.586 0.09 4 0.3 52 -3.33e-3 0.45
44
+
45
+ K+ = K+
46
+ -dw 1.96e-9
47
+ -Vm 3.322 -1.473 6.534 -2.712 9.06e-2 3.5 0 29.70 0 1 # ref. 1
48
+
49
+ Cl- = Cl-
50
+ -dw 2.03e-9
51
+ -Vm 4.465 4.801 4.325 -2.847 1.748 0 -0.331 20.16 0 1 # ref. 1
52
+
53
+ CO3-2 = CO3-2
54
+ -dw 0.955e-9
55
+ -Vm 4.91 0 0 -5.41 4.76 0 0.386 89.7 -1.57e-2 1 # ref. 1
56
+
57
+ SO4-2 = SO4-2
58
+ -dw 1.07e-9
59
+ -Vm -7.77 43.17 141.1 -42.45 3.794 0 4.97 26.5 -5.77e-2 0.45 # ref. 1
60
+
61
+ H2O = OH- + H+
62
+ -analytic -1896.830553 -1.15387159 41390.2015 825.37519 -949444.6 0.000634273
63
+ -dw 5.27e-9
64
+ -Vm -9.66 28.5 80.0 -22.9 1.89 0 1.09 0 0 1 # ref. 1
65
+
66
+ CO3-2 + H+ = HCO3-
67
+ -analytic 107.887088 0.03252849 -5151.7879 -38.92561 563713.8 0
68
+ -dw 1.18e-9
69
+ -Vm 8.54 0 -11.7 0 1.6 0 0 116 0 1 # ref. 1
70
+
71
+ CO3-2 + 2 H+ = CO2 + H2O
72
+ -analytic 464.196482 0.09344813 -26986.1558 -165.75951 2248628.7 0
73
+ -dw 1.92e-9
74
+ -Vm 20.85 -46.93 -79.0 27.9 -0.193 # ref. 1
75
+
76
+ Ca+2 + CO3-2 = CaCO3
77
+ -analytic 1228.805836 0.29943997 -35512.7505 -485.818 0 0
78
+ # -dw 4.46e-10 # complexes: calc'd with the Pikal formula
79
+ # -Vm -.2430 -8.3748 9.0417 -2.4328 -.0300 # supcrt
80
+
81
+ Mg+2 + H2O = MgOH+ + H+
82
+ -analytic -0.506735 0 -3369.8212 0 0 0
83
+
84
+ Mg+2 + CO3-2 = MgCO3
85
+ -analytic -32.225085 0 1093.4862 12.72433 0 0
86
+ -dw 4.21e-10
87
+ -Vm -.5837 -9.2067 9.3687 -2.3984 -.0300 # supcrt
88
+
89
+ PHASES
90
+ Anhydrite
91
+ CaSO4 = Ca+2 + SO4-2
92
+ -analytic -2035.568365 -1.38413871 45210.0023 901.547204 -1037066.3 0.000823464
93
+ Vm 45.94
94
+
95
+ Antarcticite
96
+ CaCl2:6H2O = Ca+2 + 2Cl- + 6H2O
97
+ -analytic -38613.99886 -14.14140164 1381731.005 15479.47256 -52024247.5 0.005422163
98
+ Vm 128.12
99
+
100
+ Aphthitalite
101
+ Na2SO4:3K2SO4 = 2Na+ + 6K+ + 4SO4-2
102
+ -analytic -26.960941 0.06631698 0 0 0 0
103
+ Vm 246.24
104
+
105
+ Aragonite
106
+ CaCO3 = CO3-2 + Ca+2
107
+ -analytic -171.977314 -0.07799321 2903.2929 71.595 0 0
108
+ Vm 34.15
109
+
110
+ Arcanite
111
+ K2SO4 = + 1.0000 SO4-- + 2.0000 K+
112
+ -analytic 2.822914 0 -1371.198 0 0 0
113
+ Vm 65.50
114
+
115
+ Bischofite
116
+ MgCl2:6H2O = Mg+2 + 2Cl- + 6H2O
117
+ -analytic 326.68721 0.05106637 -10563.0802 -121.990076 0 0
118
+ Vm 129.57
119
+
120
+ Bloedite
121
+ Na2Mg(SO4)2:4H2O = + Mg+2 + 2Na+ + 2SO4-2 + 4H2O
122
+ -analytic -3.436181 0.00357 0 0 0 0
123
+ Vm 149.98
124
+
125
+ Calcite
126
+ CaCO3 = CO3-2 + Ca+2
127
+ -analytic -171.906481 -0.07799321 2839.3192 71.595 0 0
128
+ Vm 36.93
129
+
130
+ Carnallite
131
+ KMgCl3:6H2O = K+ + Mg++ + 3Cl- + 6H2O
132
+ -analytic -474.012921 -0.28178438 8424.3363 213.374612 -235565.9 9.81779E-05
133
+ Vm 172.58
134
+ Dolomite
135
+ CaMg(CO3)2 = Ca+2 + Mg+2 + 2 CO3-2
136
+ -analytic -23.999547 0 2062.2473 0 0 0
137
+ Vm 64.34
138
+
139
+ Epsomite
140
+ MgSO4:7H2O = Mg+2 + SO4-2 + 7 H2O
141
+ -analytical 1.718069 0 -1073.1417 0 0 0
142
+ Vm 146.71
143
+
144
+ Gypsum
145
+ CaSO4:2H2O = Ca+2 + SO4-2 + 2 H2O
146
+ -analytic -2136.655631 -1.43513531 47367.1982 944.564423 -1086550.1 0.000855338
147
+ Vm 74.69
148
+
149
+ Halite
150
+ NaCl = Cl- + Na+
151
+ -analytic 596.809454 0.73058662 9360.9197 -315.516708 -1749318.4 -0.000495535
152
+ Vm 27.02
153
+
154
+ Hexahydrite
155
+ MgSO4:6H2O = Mg+2 + SO4-2 + 6 H2O
156
+ -analytic -2.513523 0.00297531 0 0 0 0
157
+ Vm 132.58
158
+
159
+ Hydrohalite
160
+ NaCl:2H2O = Na+ + Cl- + 2H2O
161
+ -analytic -2366.884053 -1.81627952 24690.3183 1098.482092 1523945.4 0.001033303
162
+ Vm 57.96
163
+
164
+ Hydromagnesite
165
+ (MgCO3)3:Mg(OH)2:3H2O = 4Mg+2 + 3CO3-2 + 2OH- + 3H2O
166
+ -analytic -55.503269 0 5585.4613 0 0 0
167
+ Vm 169.13
168
+
169
+ Ikaite
170
+ CaCO3:6H2O = Ca+2 + CO3-2 + 6H2O
171
+ -analytic 0.159812 0 -2011.1005 0 0 0
172
+ Vm 117.54
173
+
174
+ Kalicinite
175
+ KHCO3 = K+ + HCO3-
176
+ -analytic -2.823001 0.00565068 0 0 0 1.49489E-05
177
+ Vm 46.14
178
+
179
+ Kieserite
180
+ MgSO4:H2O = Mg+2 + SO4-2 + H2O
181
+ -analytic 56.731193 -0.36657234 0 0 0 0.000588992
182
+ Vm 56.60
183
+
184
+ Landsfordite
185
+ MgCO3:5H2O = Mg+2 + CO3-2 + 5H2O
186
+ -analytic 34372.12012 24.21262132 -766987.6164 -15294.74182 17593834.6 -0.015476732
187
+ Vm 100.80
188
+
189
+ Magnesite
190
+ MgCO3 = CO3-2 + Mg+2
191
+ -analytic -12.551979 0 1348.1804 0 0 0
192
+ Vm 28.02
193
+
194
+ Meridianite
195
+ MgSO4:11H2O = Mg+2 + SO4-2 + 11H2O
196
+ -analytic -13.417432 0.04061372 0 0 0 0
197
+ Vm 207.44
198
+
199
+ MgCl2:8H2O
200
+ MgCl2:8H2O = Mg+2 + 2Cl- + 8H2O
201
+ -analytic 989.331411 0.28201417 -27059.8088 -395.438891 0 0
202
+ Vm 159.08
203
+
204
+ MgCl2:12H2O
205
+ MgCl2:12H2O = Mg+2 + 2Cl- + 12H2O
206
+ -analytic 6251.417981 18.27412717 610125.588 -4799.728491 -54142200.5 -0.014127812
207
+ Vm 218.10
208
+
209
+ Mirabilite
210
+ Na2SO4:10H2O = SO4-2 + 2Na+ + 10H2O
211
+ -analytic -20.12422 0.07613508 0 0 0 -4.26568E-05
212
+ Vm 219.80
213
+
214
+ Na2CO3:7H2O
215
+ Na2CO3:7H2O = 2Na+ + CO3-2 + 7H2O
216
+ -analytic -7.848843 0.02485766 0 0 0 0
217
+ Vm 153.71
218
+
219
+ Nahcolite
220
+ NaHCO3 = HCO3- + Na+
221
+ -analytic 5733.307217 4.09729508 -128132.8263 -2555.137922 2939222.2 -0.002655951
222
+ Vm 38.91
223
+
224
+ Natron
225
+ Na2CO3:10H2O = CO3-2 + 2 Na+ + 10H2O
226
+ -analytic -3.414245 -0.02520158 0 0 0 0.000113891
227
+ Vm 198.71
228
+
229
+ Nesquehonite
230
+ MgCO3:3H2O = CO3-2 + Mg+2 + 3H2O
231
+ -analytic 25.395192 -0.20362652 0 0 0 0.000337509
232
+ Vm 74.79
233
+
234
+ Picromerite
235
+ MgSO4:K2SO4:6H2O = Mg+2 + 2SO4-2 + 2K+ + 6H2O
236
+ -analytic -37.615383 0.20453793 0 0 0 -0.000312121
237
+ Vm 191.78
238
+
239
+ Sylvite
240
+ KCl = K+ + Cl-
241
+ -analytic -114.93339 -0.1612449 -3569.5943 66.15685 307041.4 9.81432E-05
242
+ Vm 37.52
243
+
244
+ Tachyhydrite
245
+ CaCl2:(MgCl2)2:12H2O = Ca+2 + 6Cl- + 2Mg+2 + 12H2O
246
+ -analytic 34.907631 -0.06028307 0 0 0 0
247
+ Vm 311.81
248
+
249
+ Thenardite
250
+ Na2SO4 = 2Na+ + SO4-2
251
+ -analytic -0.53789 0.0008381 0 0 0 0
252
+ Vm 53.33
253
+
254
+ Trona
255
+ Na3H(CO3)2:2H2O = 3Na+ + HCO3- + CO3-2 + 2H2O
256
+ -analytic -4.337187 0.01113429 0 0 0 0
257
+ Vm 107.02
258
+
259
+ Vaterite
260
+ CaCO3 = Ca+2 + CO3-2
261
+ -analytic -172.129491 -0.07799321 3074.6881 71.595 0 0
262
+ Vm 37.72
263
+
264
+ Ice(s)
265
+ H2O = H2O
266
+ -analytic -485.2923 -0.2382738 13615.59 203.8087 -365935.2 0.000118951
267
+ Vm 19.65
268
+
269
+ CO2(g)
270
+ CO2 = CO2
271
+ -analytic 108.386483 0.01985076 -6919.5315 -40.45154 669365.1 0
272
+ -T_c 304.2 # critical T, K
273
+ -P_c 72.80 # critical P, atm
274
+ -Omega 0.225 # acentric factor
275
+
276
+ PITZER
277
+ -B0
278
+ Ca+2 Cl- 0.304058 1265.271 11.94793 -0.03558926 1.64514E-05 -3394.2
279
+ Ca+2 HCO3- 0.182545 -576520.518 -5661.1237 18.447305 -0.009989 0
280
+ Ca+2 OH- -0.1747 0 0 0 0 0
281
+ Ca+2 SO4-2 0.115384 145.327 2.57051 -0.01120842 1.68444E-05 -6826.8
282
+ H+ Cl- 0.197946 0 0 -0.00053053 0 0
283
+ H+ SO4-2 0.0298 0 0 0 0 0
284
+ K+ Cl- 0.048342 -758.497 -4.69717 0.01003107 -3.7342E-06 64
285
+ K+ CO3-2 0.1288 0 0 0.0011 0 0
286
+ K+ HCO3- -0.010702 -0.001 0 0.001 0 0
287
+ K+ OH- 0.1298 0 0 0 0 0
288
+ K+ SO4-2 0.003795 22.492 0.2029 0.00165088 9.746E-07 -540.7
289
+ Mg+2 Cl- 0.351542 -392.241 -17.65506 0.0703283 -4.17563E-05 -117885
290
+ Mg+2 HCO3- -0.009313 -273406.172 -2607.1152 8.25084 -0.00434 0
291
+ Mg+2 SO4-2 0.126545 470.866 6.08307 -0.03139609 2.82462E-05 -15937.6
292
+ MgOH+ Cl- -0.1 0 0 0 0 0
293
+ Na+ Cl- 0.076276 -886.777 -4.19728 0.00613645 -1.1006E-06 8942.9
294
+ Na+ CO3-2 0.036205 1108.376 11.19856 -0.02330165 0 0
295
+ Na+ HCO3- 0.028002 682.886 6.89959 -0.01445932 0 0
296
+ Na+ OH- -0.079596 13870.605 120.12506 -0.40580835 0.000231103 -318176
297
+ Na+ SO4-2 0.038071 -26.946 -0.36262 0.00595978 -1.6429E-06 945
298
+
299
+ -B1
300
+ Ca+2 Cl- 1.708132 0 0 -0.015417 0.000031791 0
301
+ Ca+2 HCO3- 0.300039 26492.24 183.13156 -0.37258767 0.000089691 0
302
+ Ca+2 OH- -0.2303 0 0 0 0 0
303
+ Ca+2 SO4-2 3.56045 -6591.464 -37.68237 0.17530628 -0.000174047 103372
304
+ H+ Cl- 0.176822 -30287.948 -205.82977 0.59473772 -0.000307166 793994.6
305
+ K+ Cl- 0.210434 -14898.951 -173.19076 0.55331238 -0.000283943 -412199.8
306
+ K+ CO3-2 1.432996 0.001 0 0.00436 0 0
307
+ K+ HCO3- 0.0478 0.001 0.00001 0.00109999 0 0
308
+ K+ OH- 0.32 0 0 0 0 0
309
+ K+ SO4-2 1.052416 767.611 6.36874 -0.03159629 2.98397E-05 -16995.7
310
+ Mg+2 Cl- 1.821364 -65485.608 1302.23382 -6.71036992 0.004429219 13522889.4
311
+ Mg+2 HCO3- 0.804725 3203209.695 29927.1515 -92.77793541 0.0477642 0
312
+ Mg+2 SO4-2 3.491512 2603.294 34.29203 -0.13991327 0.000161578 -90018.9
313
+ MgOH+ Cl- 1.658 0 0 0 0 0
314
+ Na+ Cl- 0.280431 -8677.858 -94.69966 0.2944375 -0.000147476 -191956
315
+ Na+ CO3-2 1.512069 4412.512 44.58207 -0.09989121 0 0
316
+ Na+ HCO3- 0.044005 1129.389 11.41086 -0.02446734 0 0
317
+ Na+ OH- 0.253083 10166.406 88.04521 -0.30719174 0.000185849 -233205.9
318
+ Na+ SO4-2 1.035408 -106.397 -1.89717 0.01819155 -8.1292E-06 4580.4
319
+
320
+ -B2
321
+ Ca+2 OH- -5.72 0 0 0 0 0
322
+ Ca+2 SO4-2 -61.685514 21440.768 133.72156 -0.59337506 0.000399407 -359056.7
323
+ Mg+2 SO4-2 -6.243985 245008.193 1276.67549 -6.82364722 0.007402746 -3561447.4
324
+
325
+ -C0
326
+ Ca+2 Cl- -0.00199 125.363 -0.64691 0.00444735 -3.2027E-06 -12466.4
327
+ Ca+2 SO4-2 0.039751 70.752 0.59046 -0.00274756 3.6688E-06 -1597.7
328
+ H+ Cl- -0.002891 0 0 0.00001735 -5.94E-08 0
329
+ H+ SO4-2 0.0438 0 0 0 0 0
330
+ K+ Cl- -0.000839 91.27 0.58481 -0.00129068 4.911E-07 -11.4
331
+ K+ CO3-2 0.0005 0 0 0 0 0
332
+ K+ OH- 0.0041 0 0 0 0 0
333
+ K+ SO4-2 0.014845 6.792 0.12817 -0.00049111 5.849E-07 -332
334
+ Mg+2 Cl- 0.006507 0 0 -0.00024995 2.418E-07 0
335
+ Mg+2 SO4-2 0.05291 -6.004 -0.43928 0.00120236 -1.9372E-06 1116.1
336
+ Na+ Cl- 0.001271 52.6 0.07951 0.00031974 -3.195E-07 -1237.7
337
+ Na+ CO3-2 0.0052 0 0 0 0 0
338
+ Na+ OH- 0.004116 500.658 4.3359 -0.01615845 1.05123E-05 -11484.5
339
+ Na+ SO4-2 -0.002331 -0.711 -0.04568 -0.00053454 -2.014E-07 116.1
340
+
341
+ -LAMDA
342
+ Ca+2 CO2 0.164379 245541.544 2452.50972 -8.101555 0.00442472 0
343
+ Cl- CO2 0.02048 -33159.618 -315.82788 0.9964326 -0.00052122 0
344
+ K+ CO2 0.044942 -55954.193 -546.07447 1.7670079 -0.0009487 0
345
+ Mg+2 CO2 0.144733 3589.474 104.34527 -0.541843 0.00038812 0
346
+ Na+ CO2 0.081474 109399.341 1047.02157 -3.326566 0.0017532 0
347
+ SO4-2 CO2 0.138973 -33927.762 -457.01574 1.8270948 -0.00114272 0
348
+
349
+ -PSI
350
+ Ca+2 H+ Cl- -0.0142 0 0 0 0 0
351
+ Ca+2 Mg+2 Cl- -0.02381 -981.659 -7.4062 0.01303773 0 0
352
+ Ca+2 Mg+2 SO4-2 0.024 0 0 0 0 0
353
+ Cl- CO3-2 K+ 0.004 0 0 0 0 0
354
+ Cl- CO3-2 Na+ 0.008656 -6.96 -0.08625 0.00037348 -4.315E-07 227.1
355
+ Cl- HCO3- Mg+2 -0.096 0 0 0 0 0
356
+ Cl- HCO3- Na+ -0.012777 -6.334 -0.10633 0.00042061 -5.501E-07 279
357
+ Cl- OH- Ca+2 -0.025 0 0 0 0 0
358
+ Cl- OH- K+ -0.006 0 0 0 0 0
359
+ Cl- OH- Na+ -0.006 0 0 0 0 0
360
+ Cl- SO4-2 Ca+2 -0.054444 -27.382 -0.49859 0.00202214 -2.5738E-06 1303.4
361
+ Cl- SO4-2 K+ -0.003829 -9.341 -0.12911 0.00036001 -6.009E-07 334
362
+ Cl- SO4-2 Mg+2 -0.01833 -21.244 0.02933 -0.00019719 1.618E-07 -66.2
363
+ Cl- SO4-2 Na+ -0.001451 12.605 0.1146 -0.00056411 0.000000528 -309.6
364
+ HCO3- CO3-2 K+ 0.012 0 0 0 0 0
365
+ HCO3- CO3-2 Na+ 0.002 0 0 0 0 0
366
+ K+ Ca+2 Cl- -0.028561 -13.439 0 0.00025428 0 0
367
+ K+ Ca+2 SO4-2 -0.028561 -13.439 0 0.00025428 0 0
368
+ K+ H+ Cl- -0.0114 0 0 0 0 0
369
+ K+ H+ SO4-2 0.130006 0 0 0.005456 0 0
370
+ K+ Mg+2 Cl- -0.049483 -28.991 0 -0.00000875 0 0
371
+ K+ Mg+2 SO4-2 -0.124362 -8.156 -0.36908 0.00150172 -1.9823E-06 954.2
372
+ Mg+2 H+ Cl- -0.0077 0 0 0 0 0
373
+ Mg+2 MgOH+ Cl- 0.028 0 0 0 0 0
374
+ Na+ Ca+2 Cl- -0.003297 0 1.8475 -0.01299 0.00001106 0
375
+ Na+ Ca+2 SO4-2 -0.073409 -7353.945 -53.26546 0.23794424 -0.00024367 143653.4
376
+ Na+ H+ Cl- -0.004 0 0 0 0 0
377
+ Na+ K+ Cl- -0.002539 -204.354 -1.09448 0.00146803 0 0
378
+ Na+ K+ CO3-2 0.003 0 0 0 0 0
379
+ Na+ K+ HCO3- -0.0079 0 0 0 0 0
380
+ Na+ K+ SO4-2 0.003969 -1192.758 -7.92204 0.03628726 -3.72313E-05 21474.2
381
+ Na+ Mg+2 Cl- -0.008172 1.994 0 0.00005446 0 0
382
+ Na+ Mg+2 SO4-2 -0.009911 -36.718 -0.15613 0.00124948 -1.3145E-06 447
383
+ OH- CO3-2 Na+ -0.017 0 0 0 0 0
384
+ SO4-2 CO3-2 K+ -0.009 0 0 0 0 0
385
+ SO4-2 CO3-2 Na+ 0.004501 9.126 0.24028 -0.00098138 1.2522E-06 -627.3
386
+ SO4-2 HCO3- Mg+2 -0.161 0 0 0 0 0
387
+ SO4-2 HCO3- Na+ -0.005 0 0 0 0 0
388
+ SO4-2 OH- K+ -0.05 0 0 0 0 0
389
+ SO4-2 OH- Na+ -0.009 0 0 0 0 0
390
+ OH- CO3-2 K+ -0.01 0 0 0 0 0
391
+
392
+ -THETA
393
+ Ca+2 H+ 0.092 0 0 0 0 0
394
+ Ca+2 Mg+2 0.124367 -983.114 0 -0.00634242 0 0
395
+ Cl- CO3-2 -0.02 0 0 0 0 0
396
+ Cl- HCO3- 0.03 0 0 0 0 0
397
+ Cl- OH- -0.05 0 0 0 0 0
398
+ Cl- SO4-2 0.045973 -35.626 -0.29988 0.00128989 -0.000001378 794.3
399
+ HCO3- CO3-2 -0.04 0 0 0 0 0
400
+ K+ Ca+2 0.056416 -284.94 0 -0.00454 0 0
401
+ K+ H+ 0.005 0 0 0 0 0
402
+ K+ Mg+2 0.1167 0 0 0 0 0
403
+ Mg+2 H+ 0.1 0 0 0 0 0
404
+ Na+ Ca+2 0.048535 39.673 0.36653 -0.00159002 1.6783E-06 -967.4
405
+ Na+ H+ 0.036 0 0 0 0 0
406
+ Na+ K+ -0.00948 612.415 3.02995 -0.00369038 0 0
407
+ Na+ Mg+2 0.07 0 0 0 0 0
408
+ OH- CO3-2 0.1 0 0 0 0 0
409
+ SO4-2 CO3-2 0.02 0 0 0 0 0
410
+ SO4-2 HCO3- 0.01 0 0 0 0 0
411
+ SO4-2 OH- -0.013 0 0 0 0 0
412
+
413
+ -ZETA
414
+ Ca+2 Cl- CO2 -0.014131 5256.844 27.37745 -0.018002 -2.47349E-05 0
415
+ H+ Cl- CO2 -0.004705 16334.389 152.38388 -0.470474 0.000240526 0
416
+ K+ Cl- CO2 -0.01207 6853.264 73.79977 -0.257891 0.000147333 0
417
+ K+ SO4-2 CO2 -0.000358 30756.867 611.37561 -2.860763 0.001951086 0
418
+ Mg+2 Cl- CO2 -0.009847 27726.81 253.62319 -0.772286 0.000391603 0
419
+ Mg+2 SO4-2 CO2 -0.041586 143162.608 1412.3029 -4.608331 0.002489207 0
420
+ Na+ Cl- CO2 -0.000572 6879.031 73.74512 -0.258005 0.000147823 0
421
+ Na+ SO4-2 CO2 -0.037454 -1399082.37 -12630.27457 37.930519 -0.0189473 0
422
+
423
+
424
+ EXCHANGE_MASTER_SPECIES
425
+ X X-
426
+ EXCHANGE_SPECIES
427
+ X- = X-
428
+ log_k 0.0
429
+
430
+ Na+ + X- = NaX
431
+ log_k 0.0
432
+
433
+ K+ + X- = KX
434
+ log_k 0.7
435
+ delta_h -4.3 # Jardine & Sparks, 1984
436
+
437
+ Ca+2 + 2X- = CaX2
438
+ log_k 0.8
439
+ delta_h 7.2 # Van Bladel & Gheyl, 1980
440
+
441
+ Mg+2 + 2X- = MgX2
442
+ log_k 0.6
443
+ delta_h 7.4 # Laudelout et al., 1968
444
+
445
+ SURFACE_MASTER_SPECIES
446
+ Hfo_s Hfo_sOH
447
+ Hfo_w Hfo_wOH
448
+ SURFACE_SPECIES
449
+ # All surface data from
450
+ # Dzombak and Morel, 1990
451
+ #
452
+ #
453
+ # Acid-base data from table 5.7
454
+ #
455
+ # strong binding site--Hfo_s,
456
+
457
+ Hfo_sOH = Hfo_sOH
458
+ log_k 0.0
459
+
460
+ Hfo_sOH + H+ = Hfo_sOH2+
461
+ log_k 7.29 # = pKa1,int
462
+
463
+ Hfo_sOH = Hfo_sO- + H+
464
+ log_k -8.93 # = -pKa2,int
465
+
466
+ # weak binding site--Hfo_w
467
+
468
+ Hfo_wOH = Hfo_wOH
469
+ log_k 0.0
470
+
471
+ Hfo_wOH + H+ = Hfo_wOH2+
472
+ log_k 7.29 # = pKa1,int
473
+
474
+ Hfo_wOH = Hfo_wO- + H+
475
+ log_k -8.93 # = -pKa2,int
476
+
477
+ ###############################################
478
+ # CATIONS #
479
+ ###############################################
480
+ #
481
+ # Cations from table 10.1 or 10.5
482
+ #
483
+ # Calcium
484
+ Hfo_sOH + Ca+2 = Hfo_sOHCa+2
485
+ log_k 4.97
486
+
487
+ Hfo_wOH + Ca+2 = Hfo_wOCa+ + H+
488
+ log_k -5.85
489
+ #
490
+ # Derived constants table 10.5
491
+ #
492
+ # Magnesium
493
+ Hfo_wOH + Mg+2 = Hfo_wOMg+ + H+
494
+ log_k -4.6
495
+
496
+ ###############################################
497
+ # ANIONS #
498
+ ###############################################
499
+ #
500
+ # Anions from table 10.8
501
+ #
502
+ # Sulfate
503
+ Hfo_wOH + SO4-2 + H+ = Hfo_wSO4- + H2O
504
+ log_k 7.78
505
+
506
+ Hfo_wOH + SO4-2 = Hfo_wOHSO4-2
507
+ log_k 0.79
508
+ #
509
+ # Carbonate: Van Geen et al., 1994 reoptimized for HFO
510
+ # 0.15 g HFO/L has 0.344 mM sites == 2 g of Van Geen's Goethite/L
511
+ #
512
+ # Hfo_wOH + CO3-2 + H+ = Hfo_wCO3- + H2O
513
+ # log_k 12.56
514
+ #
515
+ # Hfo_wOH + CO3-2 + 2H+= Hfo_wHCO3 + H2O
516
+ # log_k 20.62
517
+
518
+
519
+ END
520
+ MEAN GAM
521
+ CaCl2
522
+ CaSO4
523
+ CaCO3
524
+ Ca(OH)2
525
+ MgCl2
526
+ MgSO4
527
+ MgCO3
528
+ Mg(OH)2
529
+ NaCl
530
+ Na2SO4
531
+ NaHCO3
532
+ Na2CO3
533
+ NaOH
534
+ KCl
535
+ K2SO4
536
+ KHCO3
537
+ K2CO3
538
+ KOH
539
+ HCl
540
+ H2SO4
541
+ HBr
542
+
543
+ END
544
+
545
+
546
+ # =============================================================================================
547
+ #This database is based on the low-temperature Pitzer model
548
+ #in the Na-K-Ca-Mg-H-Cl-SO4-CO3-HCO3-OH-H2O system, valid from 25 deg C
549
+ #to -60 deg C. The model was developed by Spencer et al (1990), Marion and Farren (1999), and Marion (2001):
550
+ #
551
+ # Spencer, R. J., N. Møller, and J. H. Weare (1990)
552
+ # The prediction of mineral solubilities in natural waters: A chemical equilibrium model for the Na-K-Ca-Mg-Cl-SO4-H2O system at temperatures below 25°C
553
+ # Geochimica et Cosmochimica Acta, 54(3), 575-590.
554
+ #
555
+ # Marion, G. M., and R. E. Farren (1999)
556
+ # Mineral solubilities in the Na-K-Mg-Ca-Cl-SO4-H2O system: A re-evaluation of the sulfate chemistry in the Spencer-Møller-Weare model
557
+ # Geochimica et Cosmochimica Acta, 63(9), 1305-1318.
558
+ #
559
+ # Marion, G. M. (2001)
560
+ # Carbonate mineral solubility at low temperatures in the Na-K-Mg-Ca-H-Cl-SO4-OH-HCO3-CO3-CO2-H2O system
561
+ # Geochimica et Cosmochimica Acta, 65(12), 1883-1896.
562
+ #
563
+ #For solid phases, molar volumes are taken from Marion et al. (2005):
564
+ #
565
+ # Marion, G. M., J. S. Kargel, D. C. Catling, and S. D. Jakubowski (2005)
566
+ # Effects of pressure on aqueous chemical equilibria at subzero temperatures with applications to Europa
567
+ # Geochimica et Cosmochimica Acta, 69(2), 259-274.
568
+ #
569
+ #The original implementation of this model was in the fortran based FREZCHEM
570
+ #model, as described by Marion and Grant (1994) and Marion and Kargel (2008):
571
+ #
572
+ # Marion, G. M., and S. A. Grant (1994)
573
+ # FREZCHEM: A chemical-thermodynamic model for aqueous solutions at subzero temperatures
574
+ # Cold Regions Research & Engineering Laboratory, U.S. Army Corps of Engineers, Hanover, NH.
575
+ #
576
+ # Marion, G. M., and J. S. Kargel (2008)
577
+ # Cold aqueous planetary geochemistry with FREZCHEM: From modeling to the search for life at the limits
578
+ # Springer, Berlin/Heidelberg.
579
+ #
580
+ #FREZCHEM was later adapted to the present frezchem.dat PHREEQC database by Toner and Sletten (2013):
581
+ #
582
+ # Toner, J. D., and R. S. Sletten (2013)
583
+ # The formation of Ca-Cl enriched groundwaters in the Dry Valleys of Antarctica by cation exchange reactions: Field measurements and modeling of reactive transport
584
+ # Geochimica et Cosmochimica Acta, 110, 84-105.
585
+ #
586
+ #See Fig. 2.2 in Toner and Sletten (2013) for a comparison between
587
+ #PHREEQC and FREZCHEM for freezing seawater. Please cite appropriate
588
+ #references when using this database.
589
+ #
590
+ # =============================================================================================
591
+ #
592
+ # For the reaction aA + bB = cC + dD,
593
+ # with delta_v = c*Vm(C) + d*Vm(D) - a*Vm(A) - b*Vm(B),
594
+ # PHREEQC adds the pressure term to log_k: -= delta_v * (P - 1) / (2.3RT).
595
+ # Vm(A) is volume of A, cm3/mol, P is pressure, atm, R is the gas constant, T is Kelvin.
596
+ # Gas-pressures and fugacity coefficients are calculated with Peng-Robinson's EOS.
597
+ # Binary interaction coefficients from Soreide and Whitson, 1992, FPE 77, 217 are
598
+ # hard-coded in calc_PR():
599
+ # kij CH4 CO2 H2S N2
600
+ # H2O 0.49 0.19 0.19 0.49
601
+ # =============================================================================================
602
+ # The molar volumes of solids are entered with
603
+ # -Vm vm cm3/mol
604
+ # vm is the molar volume, cm3/mol (default), but dm3/mol and m3/mol are permitted.
605
+ # Data for minerals' vm (= MW (g/mol) / rho (g/cm3)) are defined using rho from
606
+ # Deer, Howie and Zussman, The rock-forming minerals, Longman.
607
+ # --------------------
608
+ # Temperature- and pressure-dependent volumina of aqueous species are calculated with a Redlich-
609
+ # type equation (cf. Redlich and Meyer, Chem. Rev. 64, 221), from parameters entered with
610
+ # -Vm a1 a2 a3 a4 W a0 i1 i2 i3 i4
611
+ # The volume (cm3/mol) is
612
+ # Vm(T, pb, I) = 41.84 * (a1 * 0.1 + a2 * 100 / (2600 + pb) + a3 / (T - 228) +
613
+ # a4 * 1e4 / (2600 + pb) / (T - 228) - W * QBrn)
614
+ # + z^2 / 2 * Av * f(I^0.5)
615
+ # + (i1 + i2 / (T - 228) + i3 * (T - 228)) * I^i4
616
+ # Volumina at I = 0 are obtained using supcrt92 formulas (Johnson et al., 1992, CG 18, 899).
617
+ # 41.84 transforms cal/bar/mol into cm3/mol.
618
+ # pb is pressure in bar.
619
+ # W * QBrn is the energy of solvation, calculated from W and the pressure dependence of the
620
+ # Born equation.
621
+ # z is charge of the solute species.
622
+ # Av is the Debye-Hückel limiting slope.
623
+ # a0 is the ion-size parameter in the extended Debye-Hückel equation:
624
+ # f(I^0.5) = I^0.5) / (1 + a0 * DH_B * I^0.5),
625
+ # a0 = -gamma x for cations, = 0 for anions.
626
+ # For details, consult ref. 1.
627
+ #
628
+ # ref. 1: Appelo, Parkhurst and Post, 2014. Geochim. Cosmochim. Acta 125, 49-67.
629
+ # ref. 2: Procedures from ref. 1 using data compiled by Laliberté, 2009, J. Chem. Eng. Data 54, 1725.
630
+ #
631
+ #
632
+ # =============================================================================================
633
+ # It remains the responsibility of the user to check the calculated results, for example with
634
+ # measured solubilities as a function of (P, T).