LtePhyUeD2D

Package: simu5g.stack.phy

LtePhyUeD2D

simple module

This module extends LTE PHY functionalities at the User Equipment side to support device-to-device (D2D) communications. Specifically, it customizes the LtePhyUe functionalities to support the transmission and reception of frames to another UE directly, without going through the serving eNodeB. It also supports one-to-many D2D transmission to UEs belonging to a multicast group. It is assumed that one-to-one D2D communication is only possible when both endpoints are served by the same eNodeB. When a handover is triggered, this module is responsible for initiating a mode switch from direct (D2D) mode to infrastructure mode.

Inheritance diagram

The following diagram shows inheritance relationships for this type. Unresolved types are missing from the diagram.

Known subclasses

Name Type Description
NRPhyUe simple module

This module provides the functionalities for the Physical (PHY) layer of the New Radio (NR) protocol stack at the User Equipment (UE) side. In particular, it is responsible for handling the transmission and reception of frames over the radio, as well as the handover procedures when utilizing the NR technology.

Extends

Name Type Description
LtePhyUe simple module

This module extends the LtePhyBase(1,2) module by providing specific PHY functions on the User Equipment (UE) side. It ensures that frames received on the air interface are sourced from the serving eNodeB (eNB) and provides functions to manage the handover procedure, including periodic measurement of channel conditions to determine when a handover should occur. If enabled, the selection of the serving eNB at initialization is done dynamically based on radio conditions.

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]"

rlcUmModule string "^.rlc.um"

or "^.nrRlc.um"

pdcpRrcModule string "^.pdcpRrc"
ip2nicModule string "^.ip2nic"
feedbackGeneratorModule string "^.dlFbGen"

TODO or "^.nrDlFbGen"

minRssiDefault bool true

if true, get minRssi from PhyPisaData

minRssi double -99.0dB

configurable minimum threshold RSSI for attaching to an eNB (meaningful only if minRssiDefault==false)

hasCollector bool false

true when node has a collector module (ueCollector/NRueCollector) for this PHY module

d2dTxPower double 26dBm
d2dMulticastCaptureEffect bool true
d2dMulticastCaptureEffectFactor string "RSRP"

or distance

Properties

Name Value Description
display i=block/wrxtx
class LtePhyUeD2D

Gates

Name Direction Size Description
upperGateIn input

from upper layer

upperGateOut output

to upper layer

radioIn input

gate to receive message via sendDirect

Signals

Name Type Unit Description
averageCqiD2D

Statistics

Name Title Source Record Unit Interpolation Mode Description
averageCqiD2D Average Cqi reported in D2D averageCqiD2D mean, vector cqi

Source code

//
// This module extends LTE PHY functionalities at the User Equipment side to support device-to-device (D2D)
// communications. Specifically, it customizes the ~LtePhyUe functionalities to support the transmission and reception
// of frames to another UE directly, without going through the serving eNodeB. It also supports one-to-many
// D2D transmission to UEs belonging to a multicast group. It is assumed that one-to-one D2D communication is only possible
// when both endpoints are served by the same eNodeB. When a handover is triggered, this module is responsible
// for initiating a mode switch from direct (D2D) mode to infrastructure mode.
//
simple LtePhyUeD2D extends LtePhyUe
{
    parameters:
        @class("LtePhyUeD2D");
        double d2dTxPower @unit(dBm) = default(26dBm);
        bool d2dMulticastCaptureEffect = default(true);
        string d2dMulticastCaptureEffectFactor = default("RSRP");  // or distance

        //# D2D CQI statistic
        @signal[averageCqiD2D];
        @statistic[averageCqiD2D](title="Average Cqi reported in D2D"; unit="cqi"; source="averageCqiD2D"; record=mean,vector);
}

File: src/stack/phy/LtePhyUeD2D.ned