Results Configurations
You can create configuration features where you can define times, eigenvalue or parameter tuples to evaluate for.Other results features such as data evaluation and plot groups can take their settings from the configuration features.
The following API syntax is available:
model.result().configuration();
model.result().configuration(<ctag>);
model.result().configuration(<ctag>).feature(<subtag>);
The following subfeatures are available:
Single-Select Solution, for plots or evaluations that use a single time, eigenvalue, or parameter: model.result().configuration().create(<ctag>, "SingleSelectSolution");
Graph Plot Style, for coloring, style, and legend settings in graph plots: model.result().configuration().create(<ctag>, "GraphStyle");
For Multiselect Solution and Single-Select Solution, you specify the solution selections in these features (see the sections above about solution selections).
For Graph Plot Style configurations, they can be created and initialized from graph plots using the following method:
ConfigurationFeature createStyleConfiguration(String confTag)
For more information about Graph Plot Style configurations, see Graph Plot Style.