Set output file on/off.
Sets the output file switch on or off. This switch controls whether or not phreeqc writes to the output file. This is the output normally generated when phreeqc is run. The initial setting is off.
phrSetOutputFileOn(value)
value |
if TRUE, writes output to the the output file. |
# This example runs ex2 with the output file turned on. # write temporary input file tf <- tempfile() writeLines(ex2, tf) # load database and run input file phrLoadDatabaseString(phreeqc.dat) phrSetOutputFileOn(TRUE) phrSetOutputFileName(file.path(tempdir(), "ex2.out")) if (is.null(phrRunFile(tf))) { cat(paste("see ", phrGetOutputFileName(), ".\n", sep = "")) } # delete temporary input file unlink(tf)
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.