This group is for functions included in the Results Manager. The Results Manager stores analysis results and provides methods to get, print, and export them. Click here to return to the main page. More...
Functions | |
| std::vector< std::string > | vsp::GetAllResultsNames () |
| std::vector< std::string > | vsp::GetAllDataNames (const std::string &results_id) |
| int | vsp::GetNumResults (const std::string &name) |
| std::string | vsp::GetResultsName (const std::string &results_id) |
| std::string | vsp::GetResultsSetDoc (const std::string &results_id) |
| std::string | vsp::GetResultsEntryDoc (const std::string &results_id, const std::string &data_name) |
| std::string | vsp::FindResultsID (const std::string &name, int index=0) |
| std::string | vsp::FindLatestResultsID (const std::string &name) |
| int | vsp::GetNumData (const std::string &results_id, const std::string &data_name) |
| int | vsp::GetResultsType (const std::string &results_id, const std::string &data_name) |
| const std::vector< int > & | vsp::GetIntResults (const std::string &id, const std::string &name, int index=0) |
| const std::vector< double > & | vsp::GetDoubleResults (const std::string &id, const std::string &name, int index=0) |
| const std::vector< std::vector< double > > & | vsp::GetDoubleMatResults (const std::string &id, const std::string &name, int index=0) |
| const std::vector< std::string > & | vsp::GetStringResults (const std::string &id, const std::string &name, int index=0) |
| const std::vector< vec3d > & | vsp::GetVec3dResults (const std::string &id, const std::string &name, int index=0) |
| std::string | vsp::CreateGeomResults (const std::string &geom_id, const std::string &name) |
| void | vsp::DeleteAllResults () |
| void | vsp::DeleteResult (const std::string &id) |
| void | vsp::WriteResultsCSVFile (const std::string &id, const std::string &file_name) |
| void | vsp::PrintResults (const std::string &results_id) |
| void | vsp::PrintResultsDocs (const std::string &results_id) |
| void | vsp::WriteTestResults () |
|
extern |
Create a new result for a Geom
| [in] | geom_id | string Geom ID |
| [in] | name | string Result name |
|
extern |
Delete all results
|
extern |
Delete a particular result
| [in] | id | string Result ID |
|
extern |
Find the latest results ID for particular result name
| [in] | name | string Result name |
|
extern |
Find a results ID given its name and index
| [in] | name | string Result name |
| [in] | index | int Result index |
|
extern |
Get all data names for a particular result
| [in] | results_id | string Result ID |
|
extern |
Get the name of all results in the Results Manager
|
extern |
Get all matrix (vector<vector<double>>) values for a particular result, name, and index
| [in] | id | string Result ID |
| [in] | name | string Data name |
| [in] | index | int Data index |
|
extern |
Get all double values for a particular result, name, and index
| [in] | id | string Result ID |
| [in] | name | string Data name |
| [in] | index | int Data index |
|
extern |
Get all integer values for a particular result, name, and index
| [in] | id | string Result ID |
| [in] | name | string Data name |
| [in] | index | int Data index |
|
extern |
Get the number of data values for a given result ID and data name
| [in] | results_id | string Result ID |
| [in] | data_name | string Data name |
|
extern |
Get the number of results for a particular result name
| [in] | name | string Input name |
|
extern |
Get the documentation string for one entry of a results object.
| [in] | results_id | string Results ID |
| [in] | data_name | string Name of the entry in that results object |
|
extern |
Get the name of a result given its ID
| [in] | results_id | string Result ID |
|
extern |
Get the documentation string for a result given its ID
| [in] | results_id | string Result ID |
|
extern |
Get the data type for a given result ID and data name
| [in] | results_id | string Result ID |
| [in] | data_name | string Data name |
|
extern |
Get all string values for a particular result, name, and index
| [in] | id | string Result ID |
| [in] | name | string Data name |
| [in] | index | int Data index |
|
extern |
Get all vec3d values for a particular result, name, and index
| [in] | id | string Result ID |
| [in] | name | string Data name |
| [in] | index | int Data index |
|
extern |
Print a result's name value pairs to stdout
| [in] | results_id | string Result ID |
|
extern |
Print a result's names and documentation to stdout
| [in] | results_id | string Result ID |
|
extern |
Export a result to CSV
| [in] | id | string Rsult ID |
| [in] | file_name | string CSV output file name |
|
extern |
Generate some example results for testing.