示例#1
0
 public LinkBudgetResultAllWithLocation(double transmitterAntennaGainInLinkDirection,
                                        double receiverAntennaGainInLinkDirection,
                                        double bitErrorRate,
                                        double carrierToInterference,
                                        double carrierToNoise,
                                        double carrierToNoiseDensity,
                                        double carrierToNoisePlusInterference,
                                        double effectiveIsotropicRadiatedPower,
                                        double energyPerBitToNoiseDensity,
                                        double powerAtReceiverOutput,
                                        double propagationLoss,
                                        double receivedIsotropicPower,
                                        double receivedPowerFluxDensity,
                                        DateTime time,
                                        ServiceCartographic location)
     : base(transmitterAntennaGainInLinkDirection,
            receiverAntennaGainInLinkDirection,
            bitErrorRate,
            carrierToInterference,
            carrierToNoise,
            carrierToNoiseDensity,
            carrierToNoisePlusInterference,
            effectiveIsotropicRadiatedPower,
            energyPerBitToNoiseDensity,
            powerAtReceiverOutput,
            propagationLoss,
            receivedIsotropicPower,
            receivedPowerFluxDensity,
            time)
 {
     Location = location;
 }
 /// <summary>
 /// Sets the defaults for a Site.
 /// </summary>
 public SiteData()
 {
     Location       = new ServiceCartographic();
     MeanSeaLevel   = false;
     OutputSettings = new OutputSettings();
 }
示例#3
0
 public LinkBudgetResultInterferenceWithLocation(LinkBudgetResultAll fullResults,
                                                 ServiceCartographic location) : base(fullResults)
 {
     Location = location;
 }
 public LinkBudgetResultStandardWithLocation(LinkBudgetResultAll fullResults,
                                             ServiceCartographic location) : base(fullResults)
 {
     Location = location;
 }