Package: simu5g.stack.phy
NRPhyUe
simple moduleThis 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.
Inheritance diagram
The following diagram shows inheritance relationships for this type. Unresolved types are missing from the diagram.
Extends
Name | Type | Description |
---|---|---|
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. |
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 |
otherPhyModule | string |
Properties
Name | Value | Description |
---|---|---|
display | i=block/wrxtx | |
class | NRPhyUe |
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 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. // simple NRPhyUe extends LtePhyUeD2D { parameters: @class("NRPhyUe"); string otherPhyModule; }File: src/stack/phy/NRPhyUe.ned