phrClearAccumulatedLines {phreeqc} | R Documentation |
Clears the accumulated input buffer. The input buffer is accumulated from
calls to the phrAccumulateLine
method.
phrClearAccumulatedLines()
ftp://brrftp.cr.usgs.gov/pub/charlton/iphreeqc/IPhreeqc.pdf
Other Accumulate: phrAccumulateLine
,
phrGetAccumulatedLines
,
phrRunAccumulated
# This example loads some keyword input, clears the input, and displays # the results. phrAccumulateLine("SOLUTION 1") phrAccumulateLine("END") cat("The accumulated input is:", phrGetAccumulatedLines(), sep = "\n") phrClearAccumulatedLines() cat("The accumulated input now is:\n", phrGetAccumulatedLines(), sep = "\n")