phrSetErrorFileOn {phreeqc} | R Documentation |
Sets the error file switch on or off. This switch controls whether or not phreeqc writes to the error file. The initial setting is off.
phrSetErrorFileOn(value)
value |
if TRUE, writes output to the the error file. |
The try is necessary to keep the error message from displaying immediately.
ftp://brrftp.cr.usgs.gov/pub/charlton/iphreeqc/IPhreeqc.pdf
Other Error: phrGetErrorFileName
,
phrGetErrorFileOn
,
phrGetErrorStringsOn
,
phrGetErrorStrings
,
phrSetErrorFileName
,
phrSetErrorStringsOn
# This example attempts to run ex1, fails, and writes the error # message to the error file (no database is loaded). phrSetErrorFileOn(TRUE) phrSetErrorFileName("phreeqc.errors") if (!is.null(try(phrRunString(ex1), silent=TRUE))) { cat("see", phrGetErrorFileName(), "\n") }