Brief description
Connection generator in which connection requests from traffic demands arrive according to a Poisson process and are independent of each other
Algorithm description table
Algorithm inputs | This connection generator require two attributes from every demand. These attributes are: connectionSize, an integer value representing the amount of bandwidth (in Erlangs) requested for every new connection coming from that demand; holdingTime, average connection duration (in seconds). If these values are not provided, then default values will be used. Algorithm parameters:
|
---|---|
Algorithm outputs | New connection requests |
Required libraries | None |
Keywords | None |
Authors | Pablo Pavón Mariño, José Luis Izquierdo Zaragoza |
Date | March 2013 |
Code | CACSim_EG_exponentialConnectionGenerator.java |
Detailed description
Interarrival and holding times follow independent, random exponential distributions.
Average interarrival time is computed as follows:
\( IAT_{d} = \frac{s_{d}\cdot ht_{d}}{h_{d}} \),
where \( IAT_{d} \) is the average interarrival time for demand \( d \), \( s_d \) is the connection size for demand \( d \), \( ht_{d} \) is the average holding time for demand \( d \), and \( h_{d} \) is the average offered traffic for demand \( d \)