Darth Vader 21df9497a0 Squashed 'src/' changes from 57b3a6cd..ce34aa5e
ce34aa5e Merge commit '8184121c90728d5026fa0485302e4584a559ffd8'
8184121c Squashed 'phreeqcpp/' changes from f5587da..b576c75

git-subtree-dir: src
git-subtree-split: ce34aa5e05ddf53f5b3b7ae2240437d31a736f4a
2024-11-18 21:29:52 +00:00
2010-02-23 05:04:35 +00:00
2014-12-19 17:58:29 +00:00
2017-03-31 20:32:48 +00:00

In Fortran, you will need to include the source file IPhreeqc_interface.F90
in your project files. This file defines the IPhreeqc Fortran module. This
is the preferred method to use IPhreeqc from a Fortran program.

     USE IPhreeqc
     INTEGER(KIND=4) id
     id = CreateIPhreeqc()

Use of the include files IPhreeqc.f.inc and IPhreeqc.f90.inc has been
deprecated. To continue using them you must unset IPHREEQC_ENABLE_MODULE in
CMake builds or use the --disable-fortran-module in configure builds. If 
either of these settings are used the Fortran include files will be
installed to the include directory.

     INCLUDE 'IPhreeqc.f90.inc'
     INTEGER(KIND=4) id
     id = CreateIPhreeqc()
Description
No description provided
Readme 40 MiB
Languages
C++ 81.6%
Makefile 9.2%
C 4.8%
Fortran 1.8%
R 1%
Other 1.3%