Exemplo n.º 1
0
 public LinkBudgetResultStandard(LinkBudgetResultAll fullResults)
 {
     BitErrorRate                    = fullResults.BitErrorRate;
     CarrierToNoise                  = fullResults.CarrierToNoise;
     CarrierToNoiseDensity           = fullResults.CarrierToNoiseDensity;
     EffectiveIsotropicRadiatedPower = fullResults.EffectiveIsotropicRadiatedPower;
     PowerAtReceiverOutput           = fullResults.PowerAtReceiverOutput;
     PropagationLoss                 = fullResults.PropagationLoss;
     ReceivedIsotropicPower          = fullResults.ReceivedIsotropicPower;
 }
Exemplo n.º 2
0
 public LinkBudgetResultInterference(LinkBudgetResultAll fullResults)
 {
     BitErrorRate                    = fullResults.BitErrorRate;
     CarrierToInterference           = fullResults.CarrierToInterference;
     CarrierToNoise                  = fullResults.CarrierToNoise;
     CarrierToNoiseDensity           = fullResults.CarrierToNoiseDensity;
     CarrierToNoisePlusInterference  = fullResults.CarrierToNoisePlusInterference;
     EffectiveIsotropicRadiatedPower = fullResults.EffectiveIsotropicRadiatedPower;
     EnergyPerBitToNoiseDensity      = fullResults.EnergyPerBitToNoiseDensity;
     PowerAtReceiverOutput           = fullResults.PowerAtReceiverOutput;
     PropagationLoss                 = fullResults.PropagationLoss;
     ReceivedIsotropicPower          = fullResults.ReceivedIsotropicPower;
     ReceivedPowerFluxDensity        = fullResults.ReceivedPowerFluxDensity;
     Time = fullResults.Time;
 }
Exemplo n.º 3
0
 public LinkBudgetResultInterferenceWithLocation(LinkBudgetResultAll fullResults,
                                                 ServiceCartographic location) : base(fullResults)
 {
     Location = location;
 }
Exemplo n.º 4
0
 public LinkBudgetResultStandardWithLocation(LinkBudgetResultAll fullResults,
                                             ServiceCartographic location) : base(fullResults)
 {
     Location = location;
 }