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; }
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; }
public LinkBudgetResultInterferenceWithLocation(LinkBudgetResultAll fullResults, ServiceCartographic location) : base(fullResults) { Location = location; }
public LinkBudgetResultStandardWithLocation(LinkBudgetResultAll fullResults, ServiceCartographic location) : base(fullResults) { Location = location; }