CbrSender

Package: simu5g.apps.cbr

CbrSender

simple module

Simple module for generating Constant Bit Rate (CBR) traffic. This module periodically sends packets of a specified size to a designated address and port. The intervals between packets and the overall duration of the communication are configurable. The module emits statistics related to the generated throughput and the total amount of bytes sent.

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 -1
destPort int 3000
destAddress string
packetSize int 40B
sampling_time double 0.02s
startTime double 0s
finishTime double 0s
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/source

Gates

Name Direction Size Description
socketOut output
socketIn input

Signals

Name Type Unit Description
cbrGeneratedThroughput
cbrGeneratedBytes
cbrSentPkt

Statistics

Name Title Source Record Unit Interpolation Mode Description
cbrGeneratedThroughput Throughput generated by the application cbrGeneratedThroughput timeavg, mean, vector, last(sumPerDuration), sum Bps
cbrGeneratedBytes Bytes generated by the application cbrGeneratedBytes timeavg, mean, last(sumPerDuration), sum Bps
cbrSentPkt Sent packet ID cbrSentPkt vector

Source code

//
// Simple module for generating Constant Bit Rate (CBR) traffic. This module
// periodically sends packets of a specified size to a designated address
// and port. The intervals between packets and the overall duration of the
// communication are configurable. The module emits statistics related to
// the generated throughput and the total amount of bytes sent.
//
simple CbrSender like IApp
{
    parameters:
        int localPort = default(-1);
        int destPort = default(3000);
        string destAddress;
        int packetSize @unit(B) = default(40B);
        double sampling_time @unit("s") = default(0.02s);
        double startTime @unit("s") = default(0s);
        double finishTime @unit("s") = default(0s);
        int tos = default(-1); // if not -1, set the Type Of Service (IPv4) / Traffic Class (IPv6) field of sent packets to this value

        @signal[cbrGeneratedThroughput];
        @statistic[cbrGeneratedThroughput](title="Throughput generated by the application"; unit="Bps"; source="cbrGeneratedThroughput"; record=timeavg,mean,vector,"last(sumPerDuration)",sum);

        @signal[cbrGeneratedBytes];
        @statistic[cbrGeneratedBytes](title="Bytes generated by the application"; unit="Bps"; source="cbrGeneratedBytes"; record=timeavg,mean,"last(sumPerDuration)",sum);

        @signal[cbrSentPkt];
        @statistic[cbrSentPkt](title="Sent packet ID"; unit=""; source="cbrSentPkt"; record=vector);

        @display("i=block/source");
    gates:
        output socketOut;
        input socketIn;
}
File: src/apps/cbr/CbrSender.ned