Skip to content

Commit

Permalink
covnergence1: add protocol startup time
Browse files Browse the repository at this point in the history
  • Loading branch information
mwarning committed May 15, 2024
1 parent 56d3fcd commit 270a417
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
Binary file modified results/2024/convergence1/convergence1-grid4.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified results/2024/convergence1/convergence1-line.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified results/2024/convergence1/convergence1-rtree.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
16 changes: 8 additions & 8 deletions tests/convergence1/plot.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,14 @@ for id in 'line' 'rtree' 'grid4'; do
set termoption lw 3; \
set ytics 10; \
plot \
'${prefix}convergence1-babel-$id.csv' using (column('offset_ms') / 1000):(100 * column('packets_received') / column('packets_send')) with linespoints linetype rgb 'dark-violet' title 'babel', \
'${prefix}convergence1-batman-adv-$id.csv' using (column('offset_ms') / 1000):(100 * column('packets_received') / column('packets_send')) with linespoints linetype rgb 'skyblue' title 'batman-adv', \
'${prefix}convergence1-bmx6-$id.csv' using (column('offset_ms') / 1000):(100 * column('packets_received') / column('packets_send')) with linespoints linetype rgb 'dark-yellow' title 'bmx6', \
'${prefix}convergence1-bmx7-$id.csv' using (column('offset_ms') / 1000):(100 * column('packets_received') / column('packets_send')) with linespoints linetype rgb 'gold' title 'bmx7', \
'${prefix}convergence1-cjdns-$id.csv' using (column('offset_ms') / 1000):(100 * column('packets_received') / column('packets_send')) with linespoints linetype rgb 'dark-red' title 'cjdns', \
'${prefix}convergence1-olsr1-$id.csv' using (column('offset_ms') / 1000):(100 * column('packets_received') / column('packets_send')) with linespoints linetype rgb 'coral' title 'olsr1', \
'${prefix}convergence1-olsr2-$id.csv' using (column('offset_ms') / 1000):(100 * column('packets_received') / column('packets_send')) with linespoints linetype rgb 'green' title 'olsr2', \
'${prefix}convergence1-yggdrasil-$id.csv' using (column('offset_ms') / 1000):(100 * column('packets_received') / column('packets_send')) with linespoints linetype rgb 'purple' title 'yggdrasil' \
'${prefix}convergence1-babel-$id.csv' using ((column('software_ms') + column('offset_ms')) / 1000):(100 * column('packets_received') / column('packets_send')) with linespoints linetype rgb 'dark-violet' title 'babel', \
'${prefix}convergence1-batman-adv-$id.csv' using ((column('software_ms') + column('offset_ms')) / 1000):(100 * column('packets_received') / column('packets_send')) with linespoints linetype rgb 'skyblue' title 'batman-adv', \
'${prefix}convergence1-bmx6-$id.csv' using ((column('software_ms') + column('offset_ms')) / 1000):(100 * column('packets_received') / column('packets_send')) with linespoints linetype rgb 'dark-yellow' title 'bmx6', \
'${prefix}convergence1-bmx7-$id.csv' using ((column('software_ms') + column('offset_ms')) / 1000):(100 * column('packets_received') / column('packets_send')) with linespoints linetype rgb 'gold' title 'bmx7', \
'${prefix}convergence1-cjdns-$id.csv' using ((column('software_ms') + column('offset_ms')) / 1000):(100 * column('packets_received') / column('packets_send')) with linespoints linetype rgb 'dark-red' title 'cjdns', \
'${prefix}convergence1-olsr1-$id.csv' using ((column('software_ms') + column('offset_ms')) / 1000):(100 * column('packets_received') / column('packets_send')) with linespoints linetype rgb 'coral' title 'olsr1', \
'${prefix}convergence1-olsr2-$id.csv' using ((column('software_ms') + column('offset_ms')) / 1000):(100 * column('packets_received') / column('packets_send')) with linespoints linetype rgb 'green' title 'olsr2', \
'${prefix}convergence1-yggdrasil-$id.csv' using ((column('software_ms') + column('offset_ms')) / 1000):(100 * column('packets_received') / column('packets_send')) with linespoints linetype rgb 'purple' title 'yggdrasil' \
; \
"
done

0 comments on commit 270a417

Please sign in to comment.