Defines the sensor using a half power pattern.
[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": |
- Frequency
- AntennaDiameter
- AngularResolution
- Allows a user to set the angular separation between the pattern data points. This is an advanced user field, available only through STK's object model interface. 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.
Define a half power sensor
[C#] | ||
---|---|---|
|
Define a half power sensor
[Visual Basic .NET] | ||
---|---|---|
|