Revised manual: Figure 8 had part B twice and was missing part A.

Fixed in Version 3 in previous check in.
Fixed in doc.
Fixed in HTMLversion examples.fm, and reset cross refs so all .fm files changed.
Replaced phreeqc3-232.gif with revised figure.

Fixed system_total_si to return max SI, returned zero if max SI was less than zero.
Added Basic function tokstr_e$ to format a number in exponential form.
log10 not checked for positive argument, probably will print NaN if result is printed.

git-svn-id: svn://136.177.114.72/svn_GW/phreeqc3/trunk@7782 1feff8c3-07ed-0310-ac33-dd36852eb9cd
This commit is contained in:
David L Parkhurst 2013-07-01 19:04:05 +00:00
parent 94643c6c7c
commit 5cc7e79a69
2 changed files with 27 additions and 2 deletions

Binary file not shown.

View File

@ -1,4 +1,25 @@
Version @PHREEQC_VER@: @PHREEQC_DATE@
--------
svn 7781
--------
Basic function SYS("phases",...) returned 0.0, rather
than the maximum saturation index if the maximum
saturation index was less than zero. Now returns the
maximum saturation index even if it is less than zero.
Added new Basic function STR_E$(x, w, d) that produces
a string with exponential format from a number with a
given width (w) and number of decimal places (d). w is
the minimum width of the string. The string is padded
with spaces to the left to produce a string of the
specified width (w); however, the string will be wider
than w characters, if the number does not fit in the
specified width. If x = 123456.789, then STR_E$(x,15,5)
produces the following on a Windows computer:
1.23457e+005
--------
svn 7766
--------
@ -8,8 +29,12 @@ Version @PHREEQC_VER@: @PHREEQC_DATE@
number of decimal places (d). w is the minimum width of
the string. The string is padded with spaces to the
left to produce a string of the specified width (w);
however, the string will be wider than w characters,
if the number does not fit in the specified width.
however, the string will be wider than w characters, if
the number does not fit in the specified width. If x =
123456.789, then STR_F$(x,15,5) produces the following
on a Windows computer:
123456.78900
--------
svn 7763