MCETE {endtoend} | R Documentation |
Monte Carlo transmissions/receptions simulations for a L-limited End to End model
Description
This function compute the mean of the number of transmissions/receptions for End to End model with L-limited retransmissions per packet simulating via Monte Carlo.
Usage
MCETE(p1, p2, L, N, M = 5000)
Arguments
p1 |
Data success probability |
p2 |
ACK success probability |
L |
Maximum number of retransmissions |
N |
Number of Hops |
M |
Number of Monte Carlo Simulations |
Value
The ouput is a matrix containing the following values:
1 |
MC Success Probability |
2 |
MC Mean Data Transmissions |
3 |
MC Mean ACK Transmissions |
4 |
MC Mean Total Transmissions |
5 |
MC Mean Data Receptions |
6 |
MC Mean ACK Receptions |
7 |
MC Mean Total Receptions |
Author(s)
Christian E. Galarza and Jonathan M. Olate
References
Heimlicher, S., Nuggehalli, P., & May, M. (2007). End-to-end vs. hop-by-hop transport. ACM SIGMETRICS Performance Evaluation Review, 35(3), 59.
Heimlicher, S., Karaliopoulos, M., Levy, H., & May, M. (2007). End-to-end vs. Hop-by-hop Transport under Intermittent Connectivity (Invited Paper). Proceedings of the First International Conference on Autonomic Computing and Communication Systems.
See Also
Examples
#Monte Carlo simulations for an N=5 End to End system
#with limited L=7 retransmission per hop
MCETE(p1=0.65,p2=0.4,L=7,N=5)