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.2.419.0 (24.2.419.0)
Syntax public IList<SignalPropagationModel> PropagationModels { get; }
Public ReadOnly Property PropagationModels As IList(Of SignalPropagationModel)
Get
public:
virtual property IList<SignalPropagationModel^>^ PropagationModels {
IList<SignalPropagationModel^>^ get () sealed;
}
abstract PropagationModels : IList<SignalPropagationModel> with get
override PropagationModels : IList<SignalPropagationModel> with get
Property Value
Type:
IListSignalPropagationModelImplements
IAvailableSignalPropagationModelsServicePropagationModelsRemarks
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