Learn R Programming

phreeqc (version 3.6.3)

phrLoadDatabaseString: Load a phreeqc database as a string or a list of strings.

Description

Load the specified string(s) as a database into phreeqc. Returns NULL if successful.

Usage

phrLoadDatabaseString(input)

Arguments

input

String containing data to be used as the phreeqc database.

Value

This function returns NULL.

Details

All previous definitions are cleared.

References

ftp://brrftp.cr.usgs.gov/pub/charlton/iphreeqc/IPhreeqc.pdf

See Also

Other Load Database: phrLoadDatabase

Examples

Run this code
# NOT RUN {
# this example loads the phreeqc.dat database, turns on the
# output file and runs ex2 as a string
phrLoadDatabaseString(phreeqc.dat)
phrSetOutputFileOn(TRUE)
phrSetOutputFileName(file.path(tempdir(), "ex2.load-database.out"))
if (is.null(phrRunString(ex2))) {
  cat(paste("see ", phrGetOutputFileName(), ".\n", sep = ""))
}

# }

Run the code above in your browser using DataLab