How can i calculate reliability for simulate routing protocol in WSN. (ex: Leach or any one)
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Anurag Shukla
el 4 de Dic. de 2017
Comentada: Anurag Shukla
el 11 de Dic. de 2017
How can i calculate reliability for simulate routing protocol in WSN. (ex: Leach or any one)
0 comentarios
Respuesta aceptada
Walter Roberson
el 4 de Dic. de 2017
Because you are simulating, you can have each simulated node keep a count of the number of messages it sends and the number it successfully receives. Then at the end of the simulation, you can have your program run through all of those data structures and total up the values, and calculate the fraction.
You might want to use two counters on receiving, one for packets addressed to the node specifically and one for packets that are "pass through" to another node; likewise you would want two sending counters, one for self-generated messages and the other for pass-through messages. The overall system reliability is the fraction of the total self-generated messages relative to the total successful terminal receives.
Más respuestas (0)
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!