Package: simu5g.corenetwork.statsCollector
UeStatsCollector
compound moduleThis module collects the radio network information of a LTE User Equipment (UE), which can be accessed by the RNIService module of a MECHost. For example, this module provides information such as packet delay and discard rate.
Inheritance diagram
The following diagram shows inheritance relationships for this type. Unresolved types are missing from the diagram.
Used in compound modules
Name | Type | Description |
---|---|---|
Ue | compound module |
This module models a User Equipment (UE) in a 4G LTE network. It is a host equipped with an LTE Network Interface Card (NIC), allowing the UE to connect to an eNodeB module via the Radio Access Network (RAN) of the LTE network and communicate with any other host in the system. In addition to a NIC submodule, this compound module includes all the higher layers of the protocol stack, from IP to application modules. It supports a configurable number of UDP and TCP applications. It also features an Ethernet interface, which is utilized in real-time emulation mode to connect the UE to the real network (outside the simulator) via a virtual Ethernet interface. |
Known subclasses
Name | Type | Description |
---|---|---|
NRueStatsCollector | compound module |
This module collects the radio network information of a NR UE, which can be accessed by the RNIService module of a MECHost. Currently, it exposes the same functionalities as the UeStatsCollector. |
Parameters
Name | Type | Default value | Description |
---|---|---|---|
collectorType | string | "ueStatsCollector" | |
binderModule | string | "binder" | |
interfaceTableModule | string | ||
macModule | string | "^.cellularNic.mac" | |
packetFlowManagerModule | string | "^.cellularNic.packetFlowManager" |
string pdcpRrcModule = default("^.cellularNic.pdcpRrc"); |
movingAverage | bool | true | |
dataVolumePeriods | int | 15 |
time periods for measurements |
delayPacketPeriods | int | 10 | |
discardRatePeriods | int | 15 | |
tPutPeriods | int | 15 | |
numberOfSamples | int | 20 |
Properties
Name | Value | Description |
---|---|---|
display | i=block/cogwheel | |
class | UeStatsCollector |
Source code
// // This module collects the radio network information of a LTE User Equipment (UE), which can // be accessed by the ~RNIService module of a ~MECHost. For example, this module // provides information such as packet delay and discard rate. // // module UeStatsCollector like IStatsCollector { parameters: string collectorType = default("ueStatsCollector"); string binderModule = default("binder"); string interfaceTableModule; string macModule = default("^.cellularNic.mac"); // string pdcpRrcModule = default("^.cellularNic.pdcpRrc"); string packetFlowManagerModule = default("^.cellularNic.packetFlowManager"); bool movingAverage = default(true); // time periods for measurements int dataVolumePeriods = default(15); int delayPacketPeriods = default(10); int discardRatePeriods = default(15); int tPutPeriods = default(15); int numberOfSamples = default(20); @display("i=block/cogwheel"); @class("UeStatsCollector"); }File: src/corenetwork/statsCollector/UeStatsCollector.ned