STK ObjectsSend comments on this topic.
SetPatternHalfPower Method (IAgSnCommonTasks)
See Also
Frequency
AntennaDiameter
AngularResolution
This is an advanced user field, available only through STK's object model interface. The Angular Resolution field allows a user to set the angular separation between the pattern data points. The default value for the number of pattern samples is 90 points over the Simple Conic (circular) pattern. The default setting is considered sufficient for interpolation and graphics purposes. However, advanced users have the option to increase/decrease the angular resolution of the sample points to conform to their analytical requirements.
Windows





Windows & Linux

Description

Defines the sensor using a half power pattern.

Syntax

[Visual Basic .NET]
Public Function SetPatternHalfPower( _
    ByVal Frequency As Double, _
    ByVal AntennaDiameter As Double, _
    ByVal AngularResolution As System.Object _
) As IAgSnHalfPowerPattern
[C#]
public IAgSnHalfPowerPattern SetPatternHalfPower(
    double Frequency,
    double AntennaDiameter,
    System.Object AngularResolution
);
[Managed C++]
public: IAgSnHalfPowerPattern^ SetPatternHalfPower(
    double Frequency,
    double AntennaDiameter,
    VARIANT AngularResolution
);
[Unmanaged C++]
public: HRESULT SetPatternHalfPower(
    double Frequency,
    double AntennaDiameter,
    VARIANT AngularResolution,
    IAgSnHalfPowerPattern ** ppIAgSnHalfPowerPattern
);
[Java]
public IAgSnHalfPowerPattern setPatternHalfPower(
    double Frequency,
    double AntennaDiameter,
    AgVariant AngularResolution
);
[Python - STK API ]
def SetPatternHalfPower(self, Frequency:float, AntennaDiameter:float, AngularResolution:typing.Any) -> "IAgSnHalfPowerPattern":

Parameters

Frequency
AntennaDiameter
AngularResolution
This is an advanced user field, available only through STK's object model interface. The Angular Resolution field allows a user to set the angular separation between the pattern data points. The default value for the number of pattern samples is 90 points over the Simple Conic (circular) pattern. The default setting is considered sufficient for interpolation and graphics purposes. However, advanced users have the option to increase/decrease the angular resolution of the sample points to conform to their analytical requirements.

See Also

Example

Define a half power sensor
[C#]
// Configure pattern
IAgSnHalfPowerPattern pattern = sensor.CommonTasks.SetPatternHalfPower(12.5, 3.4, 6.0);
Define a half power sensor
[Visual Basic .NET]
' Configure pattern
Dim pattern As IAgSnHalfPowerPattern = sensor.CommonTasks.SetPatternHalfPower(12.5, 3.4, 6)
© 2024 Analytical Graphics, Inc. All Rights Reserved.