D2DModeSelectionBestCqi.ned

NED File src/simu5g/stack/d2d/rrc/D2DModeSelectionBestCqi.ned

Name Type Description
D2DModeSelectionBestCqi simple module

Implements the mode selection algorithm for D2D communications that selects the mode based on the best Channel Quality Indicator (CQI). It evaluates the CQI for each D2D-capable flow and selects the communication mode that provides the best performance in terms of achievable data rate. The primary goal is to optimize data transmission quality and efficiency by dynamically switching between modes based on CQI measurements.

Source code

//
//                  Simu5G
//
// Copyright (C) 2019-2021 Giovanni Nardini, Giovanni Stea, Antonio Virdis et al. (University of Pisa)
// Copyright (C) 2022-2026 Giovanni Nardini, Giovanni Stea et al. (University of Pisa)
//
// This file is part of a software released under the license included in file
// "license.pdf". Please read LICENSE and README files before using it.
// The above files and the present reference are part of the software itself,
// and cannot be removed from it.
//

package simu5g.stack.d2d.rrc;

//
// Implements the mode selection algorithm for D2D communications
// that selects the mode based on the best Channel Quality Indicator (CQI).
// It evaluates the CQI for each D2D-capable flow and selects the communication
// mode that provides the best performance in terms of achievable data rate.
// The primary goal is to optimize data transmission quality and efficiency
// by dynamically switching between modes based on CQI measurements.
//
simple D2DModeSelectionBestCqi extends D2dModeSelectionBase
{
    parameters:
        @class("D2DModeSelectionBestCqi");
}