SphericalTabularMonostaticCrossSectionScatteringCoefficient Constructor (Double, Double) |
Initializes an instance given an array of cone angles, in radians, and an array of monostatic cross section values, in meters
squared. This represents a symmetrical pattern about the z-axis. For a given cone angle, the cross section is the
same for every clock angle about the z-axis.
Namespace:
AGI.Foundation.Communications
Assembly:
AGI.Foundation.Communications (in AGI.Foundation.Communications.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax public SphericalTabularMonostaticCrossSectionScatteringCoefficient(
double[] coneAngles,
double[] crossSectionValues
)
Public Sub New (
coneAngles As Double(),
crossSectionValues As Double()
)
public:
SphericalTabularMonostaticCrossSectionScatteringCoefficient(
array<double>^ coneAngles,
array<double>^ crossSectionValues
)
new :
coneAngles : float[] *
crossSectionValues : float[] -> SphericalTabularMonostaticCrossSectionScatteringCoefficient
Parameters
- coneAngles
- Type: SystemDouble
An array of cone angles. The cone angle is defined as the zenith angle from the positive z-axis to the point.
- crossSectionValues
- Type: SystemDouble
An array of cross section values in meters squared.
Exceptions Exception | Condition |
---|
ArgumentNullException |
Thrown if either the coneAngles or crossSectionValues arguments are null.
|
ArgumentException |
Thrown if the coneAngles array argument length is less than or equal to 1. Thrown if the coneAngles array argument
and crossSectionValues array argument do not have the same length.
Thrown if there is less than 1 unique cone angle value in the coneAngles array argument.
|
Remarks
The polarization scattering basis defaults to T:AGI.Foundation.Graphics.SetHint when
using this constructor.
See Also