I'm developing a network simulator in which events for packet arrivals and transmission attempts are following a Poisson distribution. I have an adaptation of Knuth's algorithm:
public class Poisson {
private double λ;
private Random rand;
/** Creates a variable with a given mean. */
public Poisson(double λ) {
this.λ = λ;
rand = new Random();
}
public int next() {
double L = Math.exp(-λ);
double p = 1.0;
int k = 0;
do {
k++;
p *= rand.nextDouble();
} while (p > L);
return k - 1;
}
}
My specs state that nodes reschedule floors randomly with a Poisson process. The average interarrival time is exponentially distributed with mean of Ts = 2.5ms. Am I correct in using λ = 2.5?
When I want to make an new arrival event I do something like:
Event evt = new Event(EventType.ARRIVAL_EVENT,
MasterClock.getTime + poisson.next());
eventList.add(evt);
The simulator is supposedly running several times, every time with increased load to measure performance. At first I thought that the arrival rate equals λ but the bigger the λ the less packets per second I get. What is the relationship between arrival rate and λ? I am sorry for the very long post but I am really frustrated by searching in lots of university books and all over the internet without a valid source for network simulation...
Thank you in advance for your help.