CalculationToolParameterSetFactory#
- class ansys.stk.core.analysis_workbench.CalculationToolParameterSetFactory#
The factory is used to create instances of available parameter set types.
Overview#
Create and registers a parameter set using specified name and description. |
|
Create a parameter set defined by identifying one set of axes in reference to another. |
|
Create a parameter set defined by identifying location in reference central body. |
|
Create a parameter set defined by identifying location in reference coordinate system. |
|
Create a parameter set defined by identifying orbiting point and its central body. |
|
Create a parameter set defined by identifying vector in reference axes. |
|
Return whether the specified type is supported. |
Import detail#
from ansys.stk.core.analysis_workbench import CalculationToolParameterSetFactory
Method detail#
- CalculationToolParameterSetFactory.create(self, name: str, description: str, type: ParameterSetType) ICalculationToolParameterSet #
Create and registers a parameter set using specified name and description.
- CalculationToolParameterSetFactory.create_attitude(self, name: str, description: str) ICalculationToolParameterSet #
Create a parameter set defined by identifying one set of axes in reference to another.
- CalculationToolParameterSetFactory.create_ground_trajectory(self, name: str, description: str) ICalculationToolParameterSet #
Create a parameter set defined by identifying location in reference central body.
- CalculationToolParameterSetFactory.create_trajectory(self, name: str, description: str) ICalculationToolParameterSet #
Create a parameter set defined by identifying location in reference coordinate system.
- CalculationToolParameterSetFactory.create_orbit(self, name: str, description: str) ICalculationToolParameterSet #
Create a parameter set defined by identifying orbiting point and its central body.
- CalculationToolParameterSetFactory.create_vector(self, name: str, description: str) ICalculationToolParameterSet #
Create a parameter set defined by identifying vector in reference axes.
- CalculationToolParameterSetFactory.is_type_supported(self, type: ParameterSetType) bool #
Return whether the specified type is supported.
- Parameters:
type :
ParameterSetType
- Returns: