To implement the Fog Radio Access Network which is Fog RAN in OMNeT++ encompasses some steps. Now we are providing below is big-level guide is get started:
Step-by-Step Implementation:
NED File (FogRAN.ned)
network FogRAN {
submodules:
baseStation: BaseStation {
@display(“p=100,100”);
}
userEquipment: UserEquipment {
@display(“p=200,100”);
}
fogNode: FogNode {
@display(“p=150,200”);
}
cloudServer: CloudServer {
@display(“p=150,300”);
}
connections:
baseStation.out++ –> userEquipment.in++;
userEquipment.out++ –> baseStation.in++;
baseStation.out++ –> fogNode.in++;
fogNode.out++ –> cloudServer.in++;
}
INI File (omnetpp.ini)
[General]
network = FogRAN
sim-time-limit = 1000s
*.baseStation.numUe = 10
*.fogNode.processingDelay = 5ms
*.cloudServer.storageCapacity = 100GB
# Additional parameters for traffic generation and node properties
In this scripts the summary in the method to formulate the Fog RAN in OMNeT++. Here, to give an ideas of what the configuration files. We support the lively compacted to implement the Fog RAN in OMNeT++ for your projects so be in touch with us .