MCSUpdate#
- class ansys.stk.core.stkobjects.astrogator.MCSUpdate#
Bases:
IMCSSegment
,IRuntimeTypeInfoProvider
,IComponentInfo
,ICloneable
The Update segment.
Overview#
Set an action and the new value. |
|
Get the action type for a parameter. |
|
Get the value type for a parameter. |
|
Set the update action type. |
|
Set the update value. |
|
Disables the specified control parameter. |
|
Enable the specified control parameter. |
|
Sees if the specified control is enabled. |
Return whether or not the control parameters can be set. |
|
Interface used to modify user variables for the update segment. |
Import detail#
from ansys.stk.core.stkobjects.astrogator import MCSUpdate
Property detail#
- property MCSUpdate.control_parameters_available: bool#
Return whether or not the control parameters can be set.
- property MCSUpdate.user_variables: UserVariableUpdateCollection#
Interface used to modify user variables for the update segment.
Method detail#
- MCSUpdate.set_action_and_value(self, parameter_type: UpdateParam, action_type: UpdateAction, value: float) None #
Set an action and the new value.
- MCSUpdate.get_action(self, parameter_type: UpdateParam) UpdateAction #
Get the action type for a parameter.
- Parameters:
parameter_type :
UpdateParam
- Returns:
UpdateAction
- MCSUpdate.get_value(self, parameter_type: UpdateParam) float #
Get the value type for a parameter.
- Parameters:
parameter_type :
UpdateParam
- Returns:
- MCSUpdate.set_action(self, parameter_name: UpdateParam, action_type: UpdateAction) None #
Set the update action type.
- Parameters:
parameter_name :
UpdateParam
action_type :
UpdateAction
- Returns:
- MCSUpdate.set_value(self, parameter_name: UpdateParam, value: float) None #
Set the update value.
- MCSUpdate.disable_control_parameter(self, param: ControlUpdate) None #
Disables the specified control parameter.
- Parameters:
param :
ControlUpdate
- Returns:
- MCSUpdate.enable_control_parameter(self, param: ControlUpdate) None #
Enable the specified control parameter.
- Parameters:
param :
ControlUpdate
- Returns:
- MCSUpdate.is_control_parameter_enabled(self, param: ControlUpdate) bool #
Sees if the specified control is enabled.
- Parameters:
param :
ControlUpdate
- Returns: