根据 omnet++ 中的事件数指定模拟结束时间

Specifying simulation end time in terms of number of events in omnet++

omnetpp.ini 中,要结束模拟,我们指定:

sim-time-limit = 10s (say)

如何根据事件数来指定它。 OMNeT++ 内置有相关参数吗?

不,OMNeT++ 没有准备好使用参数在指定事件数后停止模拟。
但是,可以通过将以下代码添加到每个 handleMessage():

以编程方式实现该行为
if (getSimulation()->getEventNumber() > 20000) {
    endSimulation();
}