LtePhyEnb

Package: simu5g.stack.phy

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.

Inheritance diagram

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

Known subclasses

Name Type Description
LtePhyEnbD2D simple module

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.

Extends

Name Type Description
LtePhyBase simple module

Base module for the Physical (PHY) layer of the LTE protocol stack.

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

Properties

Name Value Description
display i=block/wrxtx
class LtePhyEnb

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 ~LtePhyBase 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.
//
simple LtePhyEnb extends LtePhyBase
{
    @class("LtePhyEnb");

    double targetBler = default(0.001);
    double lambdaMinTh = default(0.02);
    double lambdaMaxTh = default(0.2);
    double lambdaRatioTh = default(20);
}

File: src/stack/phy/LtePhyEnb.ned