Click or drag to resize

WirelessLinkExtensionPropagationModels Property

Gets a list of the propagation models applied when propagating the signal from transmitter to receiver (free space loss and doppler are added by default).

Namespace:  AGI.Foundation.Communications
Assembly:  AGI.Foundation.Communications (in AGI.Foundation.Communications.dll) Version: 24.1.418.0 (24.1.418.0)
Syntax
public IList<SignalPropagationModel> PropagationModels { get; }

Property Value

Type: IListSignalPropagationModel

Implements

IAvailableSignalPropagationModelsServicePropagationModels
Remarks
By default, PropagationModels will include an instance of FreeSpacePathLossModel and DopplerShiftModel. Since free space path loss occurs first in the list, it is computed before any other models. When adding additional models, make note of the order of the list when determining whether the model should be applied before or after the doppler shift. Alternately, the two default models can be removed individually from PropagationModels, or PropagationModels can be cleared.
See Also