phrRunFile {phreeqc} | R Documentation |
phrRunFile executes a phreeqc run using a file as input
phrRunFile(filename)
filename |
The file name of the phreeqc input file. |
This function returns NULL on success.
ftp://brrftp.cr.usgs.gov/pub/charlton/iphreeqc/IPhreeqc.pdf
Other Run: phrRunAccumulated
,
phrRunString
# 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.") } unlink("ex2") # tidy up