LteChannelModel.ned

NED File src/stack/phy/ChannelModel/LteChannelModel.ned

Name Type Description
LteChannelModel simple module

This is the base module for developing more realistic models of the radio channel. It primarily provides the initialization of parameters such as the reference to the Component Carrier (CC) and its associated parameters related to the channel model itself.

Source code

//
//                  Simu5G
//
// Authors: Giovanni Nardini, Giovanni Stea, Antonio Virdis (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.phy.ChannelModel;

//
// This is the base module for developing more realistic models of the radio channel.
// It primarily provides the initialization of parameters such as the reference to the
// Component Carrier (CC) and its associated parameters related to the channel
// model itself.
//
simple LteChannelModel like ILteChannelModel
{
    parameters:
        @display("i=block/classifier2");
        @class("LteChannelModel");

        string binderModule = default("binder");
        string cellInfoModule = default("^.^.cellInfo");  // optional

        // component carrier for this channel model
        string componentCarrierModule = default("carrierAggregation.componentCarrier[0]");
}