MecResponseApp

Package: simu5g.apps.mecRequestResponseApp

MecResponseApp

simple module

This module provides a simplified model of an edge application, intended to run on an edge host associated with a base station. It receives requests from a User Equipment (UE) application, such as a MecRequestApp, and sends a response after a processing time. The processing time is calculated based on the size of the request packet and a value representing the computational capabilities of the node hosting this application module. If the UE that sends the request is not served by the base station associated with this application, then an additional delay is applied to the response, which represents the time required to traverse the cellular core network.

Inheritance diagram

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

Parameters

Name Type Default value Description
localPort int 5000
coreNetworkDelay double 0.1s
tos int -1

if not -1, set the Type Of Service (IPv4) / Traffic Class (IPv6) field of sent packets to this value

Properties

Name Value Description
display i=block/app;is=s

Gates

Name Direction Size Description
socketOut output
socketIn input

Signals

Name Type Unit Description
recvRequestSno

Statistics

Name Title Source Record Unit Interpolation Mode Description
recvRequestSno Received Sequence number recvRequestSno vector

Source code

//
// This module provides a simplified model of an edge application, intended
// to run on an edge host associated with a base station. It receives requests from a
// User Equipment (UE) application, such as a ~MecRequestApp, and sends a response after
// a processing time. The processing time is calculated based on the size of the request packet
// and a value representing the computational capabilities of the node hosting this
// application module.
// If the UE that sends the request is not served by the base station associated with this
// application, then an additional delay is applied to the response, which represents
// the time required to traverse the cellular core network.
//
simple MecResponseApp like IApp
{
    parameters:
        @display("i=block/app;is=s");

        int localPort = default(5000);
        double coreNetworkDelay @unit("s") = default(0.1s);
        int tos = default(-1); // if not -1, set the Type Of Service (IPv4) / Traffic Class (IPv6) field of sent packets to this value

        @signal[recvRequestSno];
        @statistic[recvRequestSno](title="Received Sequence number"; unit=""; source="recvRequestSno"; record=vector);

    gates:
        output socketOut;
        input socketIn;
}

File: src/apps/mecRequestResponseApp/MecResponseApp.ned