Package: simu5g.stack.phy.ChannelModel
ILteChannelModel
module interfaceThis module provides the interface for modules implementing the model of the radio channel. Such modules are responsible for providing functions to compute the Signal to Interference-plus-Noise Ratio (SINR) of received frames, taking into account channel effects such as propagation loss, fading/shadowing, and inter-cell interference.
Inheritance diagram
The following diagram shows inheritance relationships for this type. Unresolved types are missing from the diagram.
Implemented by
Name | Type | Description |
---|---|---|
LteChannelModel | simple module |
This is the base module for developing more realistic models of the radio channel. It primarily provides the initialization of parameters such as the reference to the Component Carrier (CC) and its associated parameters related to the channel model itself. |
LteRealisticChannelModel | simple module |
This module implements the functions for a model representing the 2D channel in the LTE specification 3GPP TR 36.803. It includes the computation of: |
NRChannelModel | simple module |
This channel model implements path loss, LOS probability, and shadowing according to the following specifications: 3GPP TR 36.873, "Study on 3D channel model for LTE", v12.7.0, December 2017 |
NRChannelModel_3GPP38_901 | simple module |
NRChannelModel_3GPP38_901 |
Used in compound modules
Name | Type | Description |
---|---|---|
LteNicBase | compound module |
The LteNicBase module serves as the foundational building block for LTE networking in Simu5G. It integrates protocols for LTE communication, including PDCP, RLC, MAC, and PHY layers. This base module allows higher-level modules, such as User Equipment (UE) and eNodeB (evolved Node B), to configure and utilize these layers according to their specific requirements. |
NRNicUe | compound module |
This module defines a User Equipment (UE) network interface card that supports both LTE and NR (New Radio) technologies. It extends the LteNicUeD2D module by adding additional submodules and parameters to support NR-specific functionalities. |
Properties
Name | Value | Description |
---|---|---|
display | i=block/classifier2 |
Source code
// // This module provides the interface for modules implementing the model of // the radio channel. Such modules are responsible for providing functions to compute // the Signal to Interference-plus-Noise Ratio (SINR) of received frames, taking into // account channel effects such as propagation loss, fading/shadowing, and inter-cell // interference. // moduleinterface ILteChannelModel { @display("i=block/classifier2"); }File: src/stack/phy/ChannelModel/ILteChannelModel.ned