info
is the primary function used for querying the thermodynamic database (thermo$obigt
).
It is often called recursively; first with a character value (or values) for species
indicating the name(s) or formula(s) of the species of interest.
The result of this call is a numeric value, which can be provided as an argument in a second call to info
in order to retrieve a data frame of the thermodynamic properties of the species.
The searches of the indicated species
are made among the names, chemical formulas, and abbreviations (in the abbrv column) in the thermodynamic database.
If the text of the species
is matched the index of that species is returned.
If there are multiple matches for the species
, and state
is NULL, the index of first match is returned.
The order of entries in thermo$obigt
is grouped by states in the order aq, cr, gas, liq, so for species in both aqueous and gaseous states the index of the aqueous species is returned, unless state
is set to gas.
Names of species including an underscore character are indicative of proteins, e.g. LYSC_CHICK.
If the name of a protein is provided to info
and the composition of the protein can be found using protein
, the thermodyamic properties and parameters of the nonionized protein (calculated using amino acid group additivity) are added to the thermodynamic database.
Included in the return value, as for other species, is the index of the protein in the thermodynamic database or NA
if the protein is not found. Names of proteins and other species can be mixed.
If no exact matches are found, info
searches the database for similar names or formulas using agrep
.
If any of these are found, the results are summarized on the screen, but the function always returns NA in this case.
With a numeric argument, the rows of thermo$obigt
indicated by ispecies
are returned, after removing any order-of-magnitude scaling factors.
If these species are all aqueous or are all not aqueous, the compounded column names used in thermo$obigt
are replaced with names appropriate for the corresponding equations of state.
A missing value of one of the standard molal Gibbs energy (G
) or enthalpy (H
) of formation from the elements or entropy (S
) is calculated from the other two, if available.
If check.it
is TRUE, several checks of self consistency among the thermodynamic properties and parameters are performed using checkGHS
and checkEOS
.