AQSearch.Parameter {LLSR} | R Documentation |
Search function for ATPS Systems data
Description
This function allow the user to search the package database to find any ATPS that matches the available criteria.
Usage
## S3 method for class 'Parameter'
AQSearch(
db = LLSR::llsr_data,
db.CompA = NULL,
db.CompB = NULL,
db.CompC = NULL,
db.Temp = NULL,
db.ph = NULL,
db.uid = NULL,
stacked = FALSE,
...
)
Arguments
db |
A highly structure db containing data from previously analised data. LLSR database is used by default but user may input his own db if formatted properly. |
db.CompA |
A String variable containing either the CAS, chemical formula or name of the upper phase enriched component.. |
db.CompB |
A String variable containing either the CAS, chemical formula or name of the lower phase component. |
db.CompC |
A String variable containing either the CAS, chemical formula or name of the additive component. |
db.Temp |
A numeric variable containing the Temperature (in Kelvin) to be searched within DB. |
db.ph |
A numeric variable containing the pH to be searched within DB. |
db.uid |
An Unique md5 hash Identification. User can retrieve data for a specific system if in possesion of its UID. |
stacked |
A boolean variable used to return value as a nested list or a data.frame. Used internally to organize data output. |
... |
Additional optional arguments. None are used at present. |
Details
The function return the systems that matches the criteria submitted by the user.
Value
Returns a data.frame containing system's parameters which match searched conditions
Examples
## Not run:
AQSearch.Parameter(db.CompA="Ammonium")
## End(Not run)