Results Configurations
You can create configuration features where you can define times, eigenvalue, or parameter tuples to evaluate for, graph plot style, and preferred units. 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");
model.result().configuration().create(<ctag>, "PreferredUnits");
For Multiselect Solution and Single-Select Solution configurations, 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.
For Preferred Units configurations, there is an apply() method, which applies the preferred units to the corresponding physical quantities.