SingleCell_withSecondaryGnb.ned

NED File simulations/nr/networks/SingleCell_withSecondaryGnb.ned

Name Type Description
SingleCell_withSecondaryGnb network

An EN-DC topology: an eNodeB master paired over X2 with a gNodeB secondary. The eNodeB is the only node with a core-network link -- an EPC PgwStandard facing a router and a server -- so all data-plane traffic enters there, and the gNodeB contributes its radio leg alone. numUe NrUe terminals attach to both, and numBgCells BackgroundCell cells can be added as interferers.

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.simulations.nr.networks;

import inet.networklayer.configurator.ipv4.Ipv4NetworkConfigurator;
import inet.networklayer.ipv4.RoutingTableRecorder;
import inet.node.ethernet.Eth10G;
import inet.node.inet.Router;
import inet.node.inet.StandardHost;
import simu5g.common.binder.Binder;
import simu5g.common.carrierAggregation.CarrierAggregation;
import simu5g.corenetwork.bearerConfigurator.BearerConfigurator;
import simu5g.nodes.NrUe;
import simu5g.nodes.gNodeB;
import simu5g.nodes.PgwStandard;
import simu5g.nodes.BackgroundCell;
import simu5g.nodes.eNodeB;
import simu5g.world.radio.LteChannelControl;


//
// An EN-DC topology: an ~eNodeB master paired over X2 with a ~gNodeB secondary.
// The eNodeB is the only node with a core-network link -- an EPC ~PgwStandard
// facing a router and a server -- so all data-plane traffic enters there, and
// the gNodeB contributes its radio leg alone. numUe ~NrUe terminals attach to
// both, and numBgCells ~BackgroundCell cells can be added as interferers.
//
network SingleCell_withSecondaryGnb
{
    parameters:
        int numUe = default(1);
        int numBgCells = default(0);
        @display("i=block/network2;bgb=991,558;bgi=background/pisa");
    submodules:
        channelControl: LteChannelControl {
            @display("p=88,24;is=s");
        }
        routingRecorder: RoutingTableRecorder {
            @display("p=88,74;is=s");
        }
        configurator: Ipv4NetworkConfigurator {
            @display("p=88,124;is=s");
        }
        binder: Binder {
            @display("p=88,174;is=s");
        }
        bearerConfigurator: BearerConfigurator {
            @display("p=88,224;is=s");
        }
        carrierAggregation: CarrierAggregation {
            @display("p=88,274;is=s");
        }
        server: StandardHost {
            @display("p=210,63;is=n;i=device/server");
        }
        router: Router {
            @display("p=361,62;i=device/smallrouter");
        }
        pgw: PgwStandard {
            @display("p=524,63;is=l");
        }
        masterEnb: eNodeB {
            @display("p=527,277;is=vl");
        }
        secondaryGnb: gNodeB {
            @display("p=726,277;is=vl");
        }
        bgCell[numBgCells]: BackgroundCell {
            @display("p=910,98;is=vl");
        }
        ue[numUe]: NrUe {
            @display("p=628,411");
        }
    connections:
        server.pppg++ <--> Eth10G <--> router.pppg++;
        router.pppg++ <--> Eth10G <--> pgw.dnPppg;
        pgw.pppg++ <--> Eth10G <--> masterEnb.ppp;

        //# X2 connections
        masterEnb.x2++ <--> Eth10G <--> secondaryGnb.x2++;
}