NRMacGnb

Package: simu5g.stack.mac

NRMacGnb

simple module

This module provides functionalities for the Medium Access Control (MAC) of the New Radio (NR) protocol stack at the gNodeB (gNB) side. In particular, it extends the LteMacEnbD2D module by initializing the NR version of the uplink scheduler and using, by default, the NR version of the Adaptive Modulation and Coding (AMC) module.

Inheritance diagram

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

Extends

Name Type Description
LteMacEnbD2D simple module

This module extends LTE MAC functionalities at the eNodeB side to support device-to-device (D2D) communications. Specifically, it enhances resource allocation procedures to enable direct communication between User Equipments (UEs), i.e., it allocates resources for D2D transmissions. Network-assisted D2D is only implemented (out-of-coverage D2D is not supported).

Parameters

Name Type Default value Description
binderModule string "binder"
packetFlowManagerModule string "^.packetFlowManager"

TODO or nrPacketFlowManager

queueSize int 2MiB
muMimo bool true
harqProcesses int 8
maxHarqRtx int 3
harqFbEvaluationTimer int 4

number of slots for sending back HARQ FB

statDisplay bool false
amcType string "NRAmc"

AMC Type: "LteAmc", "NRAmc"

amcMode string "AUTO"

AMC Mode: "auto", "piloted", "multi", "das", "D2D"

rbAllocationType string "localized"

resource allocation type ("distributed" or "localized")

summaryLowerBound double 5ms

summary feedback confidence function lower bound

summaryUpperBound double 20ms

summary feedback confidence function upper bound

fbhbCapacityDl int 5

FeedBack Historical Base capacity in DL (number of stored feedback samples per UE)

fbhbCapacityUl int 5

FeedBack Historical Base capacity in UL (number of stored feedback samples per UE)

fbhbCapacityD2D int 5

FeedBack Historical Base capacity in D2D (number of stored feedback samples per UE)

pmiWeight double 0.0

wideband PMI generation parameter (0.0 means "use the mean value" )

cqiWeight double 0.0

wideband CQI generation parameter (0.0 means "use the mean value" )

eNodeBCount int 0

number of eNodeBs - set to 0 if unknown

schedulingDisciplineDl string "MAXCI"

Scheduling discipline. See LteCommon.h for discipline meaning.

schedulingDisciplineUl string "MAXCI"
pfAlpha double 0.95

Proportional Fair parameters

pilotMode string "ROBUST_CQI"
cellInfoModule string
rlcUmModule string "^.rlc.um"
pdcpRrcModule string "^.pdcpRrc"
usePreconfiguredTxParams bool false
d2dCqi int 7
reuseD2D bool false

frequency reuse parameters

reuseD2DMulti bool false
conflictGraphUpdatePeriod double 1s
conflictGraphThreshold double 90

CG thresholds can be defined in either dBm or meters if distances are set to -1.0, then dBm thresholds are used, otherwise distances have priority on dBm thresholds

conflictGraphD2DInterferenceRadius double -1.0m

meters

conflictGraphD2DMultiTxRadius double -1.0m

meters

conflictGraphD2DMultiInterferenceRadius double -1.0m

meters

msHarqInterrupt bool true

handling of D2D mode switch

msClearRlcBuffer bool true

Properties

Name Value Description
display i=block/mac
class NRMacGnb

Gates

Name Direction Size Description
RLC_to_MAC input

RLC to MAC

MAC_to_RLC output

MAC to RLC

PHY_to_MAC input

PHY to MAC

MAC_to_PHY output

MAC to PHY

Signals

Name Type Unit Description
macCellThroughputD2D
macCellPacketLossD2D

Statistics

Name Title Source Record Unit Interpolation Mode Description
macCellThroughputD2D Cell Throughput at the MAC layer D2D macCellThroughputD2D mean Bps
macCellPacketLossD2D Mac Cell Packet Loss D2D macCellPacketLossD2D mean

Source code

//
// This module provides functionalities for the Medium Access Control (MAC) of the
// New Radio (NR) protocol stack at the gNodeB (gNB) side. In particular, it extends the
// ~LteMacEnbD2D module by initializing the NR version of the uplink scheduler and
// using, by default, the NR version of the Adaptive Modulation and Coding (AMC) module.
//
simple NRMacGnb extends LteMacEnbD2D
{
    parameters:
        @class("NRMacGnb");
        amcType = default("NRAmc");
}

File: src/stack/mac/NRMacGnb.ned