Static CDL¶
- class CDL(model_type, rms_delay, rayleigh_factor=0.0, decorrelation_distance=30.0, **kwargs)[source]¶
Bases:
Channel
[CDLRealization
,ClusterDelayLineSample
]Static cluster delay line model for link-level simulations.
- Parameters:
model_type (
CDLType
) – Type of the cluster delay line model.rms_delay (
float
) – Root mean square delay spread of the channel.rayleigh_factor (
float
) – Rayleigh K-factor of the channel.decorrelation_distance (
float
) – Decorrelation distance of the channel.**kwargs – Additional parameters for the base class.
- _realize()[source]¶
Generate a new channel realzation.
Abstract subroutine of
realize
. EachChannel
is required to implement their own_realize()
method.Returns: A new channel realization.
- Return type:
- recall_realization(group)[source]¶
Recall a realization of this channel type from its HDF serialization.
- Parameters:
group (h5py.Group) – HDF group to which the channel realization was serialized.
- Return type:
Returns: The recalled realization instance.
- property decorrelation_distance: float¶
Decorrelation distance of the channel.
- Raises:
ValueError – If the decorrelation distance is negative.
- property rayleigh_factor: float¶
Rayleigh K-factor of the channel.
- Raises:
ValueError – If the K-factor is negative.
- class CDLRealization(type, rms_delay, rayleigh_factor, angle_coupling_indices, consistent_realization, xpr_phase, sample_hooks, gain)[source]¶
Bases:
ChannelRealization
[ClusterDelayLineSample
]Realization of a static cluster delay line model for link-level simulations.
Generated by the
realize
method of theCDL
class.- Parameters:
type (
CDLType
) – Type of the cluster delay line model.rms_delay (
float
) – Root mean square delay spread of the channel.rayleigh_factor (
float
) – Rayleigh K-factor of the channel.angle_coupling_indices (
ndarray
) – Indices for the coupling of rays within a cluster.consistent_realization (
ConsistentRealization
) – Realization of the consistent distribution.xpr_phase (
ConsistentUniform
) – Realization of the cross-polarization phase.sample_hooks (
Set
[ChannelSampleHook
[ClusterDelayLineSample
]]) – Hooks to be called after the channel sample has been generated.gain (
float
) – Linear channel gain factor.