AGI STK Objects 11 Send comments on this topic.
IAgFmDefSystemResponseTime Interface





Description

System Response Time Figure of Merit.

Public Properties

Public Property AllowForwardCrosslink Determines if a single cross-link between assets is allowed to be used to minimize the response time.
Public Property CollectionTime Amount of time in seconds required for data collection.
Public Property CommandingTime Amount of time in seconds required for transmission of the prepared command from the CommandStation to the assets.
Public Property CommandPerpTime Amount of time in seconds required for command preparation.
Public Property CommandStationPath Instance path for the commanding object. NONE can be used to clear the commanding object.
Public Property DownlinkTime Amount of time in seconds required for transmission of the collected data from the assets to the ReceiveStation.
Public Property PostCollectionTime Amount of time in seconds required from asset collection until data can be transmitted to the ReceiveStation.
Public Property PreCollectionTime Amount of time in seconds required from receipt of commanding until a collection can be performed by the assets.
Public Property ReceiveStationPath Instance path for the receiving object. NONE can be used to clear the receiving object.
Public Property TimeStep The value in seconds to be used during the computation of satisfaction intervals.

Interfaces

Implemented Interface
IAgFmDefCompute

Example

Configure figure of merit System Response Time
[C#] Copy Code
fom.SetDefinitionType(AgEFmDefinitionType.eFmSystemResponseTime); 
IAgFmDefSystemResponseTime systemResponseTime = fom.Definition as IAgFmDefSystemResponseTime; 
 
systemResponseTime.CommandStationPath = @"/Application/STK/Scenario/CodeSnippetScenario/Facility/Facility1"
 

Configure figure of merit System Response Time reset
[C#] Copy Code
fom.SetDefinitionType(AgEFmDefinitionType.eFmSystemResponseTime); 
IAgFmDefSystemResponseTime systemResponseTime = fom.Definition as IAgFmDefSystemResponseTime; 
 
systemResponseTime.CommandStationPath = "NONE"
 

Configure figure of merit System Response Time
[Visual Basic .NET] Copy Code
fom.SetDefinitionType(AgEFmDefinitionType.eFmSystemResponseTime)
Dim systemResponseTime As IAgFmDefSystemResponseTime = TryCast(fom.Definition, IAgFmDefSystemResponseTime)

systemResponseTime.CommandStationPath = "/Application/STK/Scenario/CodeSnippetScenario/Facility/Facility1"

Configure figure of merit System Response Time reset
[Visual Basic .NET] Copy Code
fom.SetDefinitionType(AgEFmDefinitionType.eFmSystemResponseTime)
Dim systemResponseTime As IAgFmDefSystemResponseTime = TryCast(fom.Definition, IAgFmDefSystemResponseTime)

systemResponseTime.CommandStationPath = "NONE"

CoClasses that Implement IAgFmDefSystemResponseTime

© 2016 Analytical Graphics, Inc. All Rights Reserved.

STK Programming Interface 11.0.1