IVectorGeometryToolSystem#

class ansys.stk.core.analysis_workbench.IVectorGeometryToolSystem#

The interface contains methods and properties shared by all VGT systems.

Overview#

find_in_system

Find position, velocity, rate and orientation using the specified system.

transform

Translate the position vector from this system into the output system.

transform_with_rate

Translate the position and rate vectors from this system into the output system.

type

Return a type of the system object.

Import detail#

from ansys.stk.core.analysis_workbench import IVectorGeometryToolSystem

Property detail#

property IVectorGeometryToolSystem.type: SystemType#

Return a type of the system object.

Method detail#

IVectorGeometryToolSystem.find_in_system(self, epoch: Any, system: IVectorGeometryToolSystem) AnalysisWorkbenchSystemFindInSystemResult#

Find position, velocity, rate and orientation using the specified system.

Parameters:

epoch : Any

system : IVectorGeometryToolSystem

Returns:

AnalysisWorkbenchSystemFindInSystemResult

IVectorGeometryToolSystem.transform(self, epoch: Any, output_system: IVectorGeometryToolSystem, position_in_my_system: ICartesian3Vector) AnalysisWorkbenchSystemTransformResult#

Translate the position vector from this system into the output system.

Parameters:

epoch : Any

output_system : IVectorGeometryToolSystem

position_in_my_system : ICartesian3Vector

Returns:

AnalysisWorkbenchSystemTransformResult

IVectorGeometryToolSystem.transform_with_rate(self, epoch: Any, output_system: IVectorGeometryToolSystem, position_in_my_system: ICartesian3Vector, velocity_in_my_system: ICartesian3Vector) AnalysisWorkbenchSystemTransformWithRateResult#

Translate the position and rate vectors from this system into the output system.

Parameters:

epoch : Any

output_system : IVectorGeometryToolSystem

position_in_my_system : ICartesian3Vector

velocity_in_my_system : ICartesian3Vector

Returns:

AnalysisWorkbenchSystemTransformWithRateResult