GaussianOpticalGainPatternComputeMaximumGain Method  | 
 
            Computes the maximum antenna gain using the equation (4 * PI * ApertureArea * Efficiency) / wavelength^2.
            ApertureArea is computed as (PI * ApertureDiameter^2) / 4
            
 
    Namespace: 
   AGI.Foundation.Communications.Antennas
    Assembly:
   AGI.Foundation.Communications (in AGI.Foundation.Communications.dll) Version: 25.1.421.0 (25.1.421.0)
Syntaxpublic static double ComputeMaximumGain(
	double apertureDiameter,
	double efficiency,
	double wavelength
)
Public Shared Function ComputeMaximumGain ( 
	apertureDiameter As Double,
	efficiency As Double,
	wavelength As Double
) As Double
public:
static double ComputeMaximumGain(
	double apertureDiameter, 
	double efficiency, 
	double wavelength
)
static member ComputeMaximumGain : 
        apertureDiameter : float * 
        efficiency : float * 
        wavelength : float -> float 
Parameters
- apertureDiameter
 - Type: SystemDouble
The diameter of the optical circular aperture. - efficiency
 - Type: SystemDouble
The efficiency of the optical antenna. - wavelength
 - Type: SystemDouble
The wavelength of interest. 
Return Value
Type: 
DoubleThe computed maximum on axis optical gain.
See Also