added put$ and get$ Basic functions. Added test cases get_put_ to test get$ and put$. Added kinetic_rates_carbfix to use new database kinec.v2.dat. Fixed pad$ to use strexpr.

This commit is contained in:
David Parkhurst 2024-04-21 20:40:36 -06:00
parent 543816f065
commit de06166d14

View File

@ -1,5 +1,15 @@
Version @PHREEQC_VER@: @PHREEQC_DATE@
-----------------
April 21, 2024
-----------------
PHREEQC: Added Basic functions GET$ and PUT$. They are are the same as
GET and PUT, except the first argument is a character string. You may
one or more indices as needed to identify the value that is put or
gotten.
PUT$("MgCl2", 1, 1, 1)
x$ = GET$(1, 1, 1)
-----------------
April 19, 2024