update RELEASE.TXT for kinetics_formula$ and sys("kin",

change eol on sys_kin
check in unequal
add unequal to Makefile

git-svn-id: svn://136.177.114.72/svn_GW/phreeqc3/trunk@11154 1feff8c3-07ed-0310-ac33-dd36852eb9cd
This commit is contained in:
David L Parkhurst 2016-05-04 21:08:17 +00:00
parent be13bc77ef
commit 87f3986827

View File

@ -1,5 +1,28 @@
Version @PHREEQC_VER@: @PHREEQC_DATE@
---------
svn 11152
---------
Added two new Basic functions related to KINETICS.
n$ = KINETICS_FORMULA$("Albite", count, elt$, coef)
This function searches for a kinetic reaction definition (Albite, in the example). If found, n$
is set equal to the first argument (Albite), otherwise an empty string is returned. The
function returns these values: count is the number of items in the arrays elt$ and coef; elt$
is a list of element names in the formula for the kinetic reaction; and coef is a numeric
array containing the number of atoms of each element in the kinetic-reaction formula, in the
order defined by elt$, which is alphabetical by element.
m = SYS("kin", count , name$ , type$ , moles)
This function identifies all of the kinetic reactants in the current KINETICS definition
and returns the sum of moles of all kinetic reactants. Count is number of kinetic
reactants. Name$ contains the kinetic reactant names. Type$ is “kin”. Moles contains the
moles of each kinetic reactant. The chemical formula used in the kinetic reaction can be
determined by using a reaction name from Name$ as the first argument of the
KINETICS_FORMULA$ Basic function.
---------
svn 11106
---------