phrSetOutputFileOn: Set output file on/off.

View source: R/phreeqc.R

phrSetOutputFileOnR Documentation

Set output file on/off.

Description

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.

Usage

phrSetOutputFileOn(value)

Arguments

value

if TRUE, writes output to the the output file.

References

https://water.usgs.gov/water-resources/software/PHREEQC/IPhreeqc.pdf

See Also

Other Output: phrGetOutputFileName(), phrGetOutputFileOn(), phrGetOutputStringsOn(), phrGetOutputStrings(), phrSetOutputFileName(), phrSetOutputStringsOn()

Examples


# 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)


phreeqc documentation built on Jan. 24, 2023, 1:08 a.m.