phrGetComponentList | 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.
https://water.usgs.gov/water-resources/software/PHREEQC/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")
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.