Learn R Programming

phreeqc (version 3.8.7)

phrGetOutputFileName: Retrieve the name of the output file.

Description

Retrieves the name of the output file. The default name is phreeqc.0.out.

Usage

phrGetOutputFileName()

Arguments

Value

The name of the output file as a string.

References

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

See Also

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

Examples

Run this code

# This example equilibrates pure water with gypsum with the output file on.
phrLoadDatabaseString(phreeqc.dat)
phrSetOutputFileOn(TRUE)
phrSetOutputFileName(file.path(tempdir(), "gypsum.out"))

input <- vector(mode="character")
input <- c(input, "SOLUTION 1 Pure water ")
input <- c(input, "EQUILIBRIUM_PHASES 1  ")
input <- c(input, "  Gypsum 0 10         ")

if (is.null(phrRunString(input))) {
  output <- readLines(phrGetOutputFileName())
  unlink(phrGetOutputFileName())  # tidy up
}

Run the code above in your browser using DataLab