Package: simu5g.stack.phy
LtePhyEnbD2D
simple moduleThis module extends the LTE PHY functionalities on the eNodeB side to support device-to-device (D2D) communications. Specifically, it enables the computation of Channel Status Information (CSI) related to the D2D link between two UEs, which still needs to be stored at the eNodeB for scheduling purposes.
Inheritance diagram
The following diagram shows inheritance relationships for this type. Unresolved types are missing from the diagram.
Extends
Name | Type | Description |
---|---|---|
LtePhyEnb | simple module |
This module extends the LtePhyBase(1,2) module by providing the specific PHY functions on the eNodeB side. It is responsible for checking if a frame received on the air interface originates from a User Equipment (UE) connected to the eNB itself, and it provides the functions necessary to compute the Channel Status Information (CSI) for the UEs connected to it. |
Parameters
Name | Type | Default value | Description |
---|---|---|---|
ueTxPower | double | 26dBm | |
eNodeBTxPower | double | 46dBm | |
microTxPower | double | 30dBm | |
txDirection | string | "OMNI" | |
txAngle | double | 0deg | |
dynamicCellAssociation | bool | false | |
enableHandover | bool | false |
switch for handover messages handling on UEs |
handoverLatency | double | 0.05s | |
enableMulticastD2DRangeCheck | bool | false |
TODO move to LtePhyUeD2D module |
multicastD2DRange | double | 1000m | |
binderModule | string | "binder" | |
channelModelModule | string | "^.channelModel[0]" |
or "nrChannelModel[0]" |
targetBler | double | 0.001 | |
lambdaMinTh | double | 0.02 | |
lambdaMaxTh | double | 0.2 | |
lambdaRatioTh | double | 20 | |
enableD2DCqiReporting | bool | true |
Properties
Name | Value | Description |
---|---|---|
display | i=block/wrxtx | |
class | LtePhyEnbD2D |
Gates
Name | Direction | Size | Description |
---|---|---|---|
upperGateIn | input |
from upper layer |
|
upperGateOut | output |
to upper layer |
|
radioIn | input |
gate to receive message via sendDirect |
Source code
// // This module extends the LTE PHY functionalities on the eNodeB side to support device-to-device (D2D) // communications. Specifically, it enables the computation of Channel Status Information (CSI) related // to the D2D link between two UEs, which still needs to be stored at the eNodeB for scheduling purposes. // simple LtePhyEnbD2D extends LtePhyEnb { parameters: @class("LtePhyEnbD2D"); bool enableD2DCqiReporting = default(true); }File: src/stack/phy/LtePhyEnbD2D.ned