Learn R Programming

phreeqc (version 3.8.7)

phrRunFile: Run phreeqc input file

Description

phrRunFile executes a phreeqc run using a file as input

Usage

phrRunFile(filename)

Value

This function returns NULL on success.

Arguments

filename

The file name of the phreeqc input file.

References

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

See Also

Other Run: phrRunAccumulated(), phrRunString()

Examples

Run this code

# load the phreeqc.dat database
phrLoadDatabaseString(phreeqc.dat)

# create ex2 if it doesn't exist
if (!file.exists("ex2")) writeLines(ex2, "ex2")

# run ex2
if (is.null(phrRunFile("ex2"))) {
  cat("use phrGetSelectedOutput() to see results.\n")
}

unlink("ex2")  # tidy up

Run the code above in your browser using DataLab