phrGetComponentList {phreeqc} | R Documentation |
Retrieve a list containing the current list of components.
phrGetComponentList()
A list containing the names of the components defined in the current system.
ftp://brrftp.cr.usgs.gov/pub/charlton/iphreeqc/IPhreeqc.pdf
# This example runs the ex2 input file and echos the list of components. phrLoadDatabaseString(phreeqc.dat) phrRunString(ex2) cat("components:\n") for (comp in phrGetComponentList()) { cat(comp, "\n") }