5
0
mirror of https://github.com/cwinfo/yggdrasil-network.github.io.git synced 2024-09-19 16:09:36 +00:00

Merge pull request #136 from yggdrasil-network/benchmarks

Benchmarks
This commit is contained in:
Arceliar 2021-06-26 16:00:05 -05:00 committed by GitHub
commit 0490f2f5cb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
12 changed files with 4163 additions and 0 deletions

View File

@ -0,0 +1,71 @@
---
layout: post
title: "v0.4 Pre-release Benchmarks"
date: 2021-06-26 21:00:00 +0000
author: Arceliar
---
### Revisiting v0.3
In the current stable release of Yggdrasil, `v0.3.16`, routing works basically the same way that it has always worked since release. Traffic is forwarded by greedy routing in a metric space. In essence, each node has a "distance label", and given the distance label of any two nodes, you can calculate the distance of some path between them. In the code, this label is usually called `coords`, as it represents a position in the tree, but technically we don't care about the position itself, we only care that it works as a distance label. Traffic is forwarded to whichever peer minimizes that distance to the destination. This has been discussed in an [earlier blog post](2018-07-17-world-tree.md), so lets not worry about the details of how it works for now. Instead, we'll focus on what happens when it *doesn't* work.
To be able to send traffic to a destination `D`, the sender `S` must look up the node's distance label and key in the DHT. This happens just before session setup, where ephemeral keys are exchanged. You can think of it a bit like a DNS lookup: it maps some known static information (the node's Yggdrasil IPv6 address) onto some unknown or dynamic information (the node's static key and dynamic distance label). If anything happens to the network that causes the destination node `D`'s distance label to change, then all traffic to `D` will drop until the `S` can look up `D`'s new distance label. However, that lookup depends on the DHT, and the DHT *also* uses distance labels for communication, so DHT lookups for `D` will fail for some amount of time, until the out-of-date information about `D` times out or is replaced. While that's happening, `S` cannot communicate with `D`, even if the path between `S` and `D` is unaffected. Further exacerbating the problem, the DHT search is an iterative process, which requires round trip communication with multiple nodes. These nodes are, for the most part, randomly distributed across the physical network, meaning most of them are likely to be near the edge of the network, where connections are comparatively unreliable and costly to use. If any part of the lookup fails, then this delays search progress (if it doesn't cause the search to fail entirely).
The network tries to combat these problems by having `D` refresh itself in the DHT and send a notification to `S` when `D`'s distance label changes. However, there is no guarantee that `D` knows every node which is tracking it in the DHT, and these notifications will hit a dead and and be dropped if the distance labels of the recipients have also changed. This often happens if `S` and `D` share a common ancestor in the tree.
To give a concrete example, if `S` and `D` are in a LAN with gateway `G`, and `G`'s connection to the outside world dies, then this disrupts the traffic flow between `S` and `D`. That happens even when the path between them in their own network is unaffected. It also causes various issues in the DHT, which hurt performance for the network in general, and prevents `S` and `D` in particular from being able to resume communication.
### Improvements in v0.4
As noted in a [recent post](2021-06-19-preparing-for-v0-4.md), the upcoming v0.4 release will include a number of major changes to how Yggdrasil routes traffic.
Most of these changes aim to improve performance in dynamic networks and reduce bandwidth consumption from protocol traffic.
Without repeating too much from that earlier blog post, the basic goal here is to insulate the routing from changes to distance labels.
This happens through a mix of reactive opportunistic source routing and falling back to to proactive DHT-based routing, both of which use distance labels for path setup, but neither of which is broken when the distance labels change (provided that the links in the path still work).
Since it may take a while to see how this affects performance in a live network, and because it's a bit difficult to actually measure these things in a real network, it seems like it would be useful to look at some results from benchmarks on simulated networks.
### Mesh Network Lab
All of the results shown here are from [meshnet-lab](https://github.com/mwarning/meshnet-lab). You should probably just read the documentation if you want to know more, but to summarize: meshnet-lab simulates mesh networks using network namespace on linux. Each node is given a network namespace, which can be linked to other namespaces to simulate an arbitrary topology. Links are added and removed as needed to e.g. simulate movement in a mobile adhoc network.
Although meshnet-lab supports many other mesh networking protocols, this post will focus on comparing Yggdrasil `v0.3.16` (the latest stable release) with `v0.4rc3` (the most recent release candidate). Comparisons with other mesh routers would be interesting, but it would be best if those were done by an unbiased 3rd party (and using a stable `v0.4.X` release instead of a release candidate). Instead, this post will try to highlight (qualitatively) what sort of performance changes we expect to see in the new release.
#### Mobility1
The `mobility1` benchmark simulates a dynamic [unit disc graph](https://en.wikipedia.org/wiki/Unit_disk_graph). Nodes are simulated within a two-dimensional Euclidean plane, with each node having connections to other nodes that fall within a certain radius. The network periodically moves all nodes a random distance between 0 and X (X=10,30,60m) in a 1km x 1km virtual space, then waits some amount of time (10s or 30s) before pinging 200 random paths. The paths are limited to source/destination pairs that are in the same connected component, so it only tests paths that plausibly could work.
![mobility1-10-10_arrival_progress](/assets/images/2021-06-26/mobility1-10-10_arrival_progress.svg)
![mobility1-10-30_arrival_progress](/assets/images/2021-06-26/mobility1-10-30_arrival_progress.svg)
![mobility1-10-60_arrival_progress](/assets/images/2021-06-26/mobility1-10-60_arrival_progress.svg)
![mobility1-30-10_arrival_progress](/assets/images/2021-06-26/mobility1-30-10_arrival_progress.svg)
![mobility1-30-30_arrival_progress](/assets/images/2021-06-26/mobility1-30-30_arrival_progress.svg)
![mobility1-30-60_arrival_progress](/assets/images/2021-06-26/mobility1-30-60_arrival_progress.svg)
These mobility tests are an area where Yggdrasil has struggled up to now, as seen in the `v0.3.16` results. Basically, when a node moves, this can affect the coords of other nodes in the network. With the changes in `v0.4rc3`, the 30s tests are generally in good shape. The 10s tests see some loss, due to the time it takes to detect failed links before we can route around them.
#### Mobility2
The `mobility2` test is essentially a much more aggressive variation of the above. Nodes periodically move a random (increasing) step size with a 15s delay before testing 200 random paths. This test also monitors bandwidth usage.
![mobility2_arrival_progress](/assets/images/2021-06-26/mobility2_arrival_progress.svg)
![mobility2_traffic_progress](/assets/images/2021-06-26/mobility2_traffic_progress.svg)
The main feature to note is that, aside from having terrible reliability in this test, `v0.3.16` uses a ridiculous amount of bandwidth when mobility is involved. With `v0.4rc3`, the bandwith use drops to at or below around 10KBps, depending on how mobile things are. I'm fairly certain that most of this bandwith is still a reaction to mobility events in the network, because (as we're about to see) the bandwith use a pretty low in static networks.
#### Scalability1
The `scalability1` test set involves running the network over line, tree, or square grid networks. The line and tree networks start at 50 nodes and increase to 300. The grid network starts at 49 nodes (7x7) and increases the side length by 1 at each step, up to 298 nodes (17x17). This test waits for about 5 minutes before pinging 200 paths (slowly, over an additional 5 minutes), and measures both packet delivery rate and network utilization.
![scalability1-line](/assets/images/2021-06-26/scalability1-line.svg)
![scalability1-rtree](/assets/images/2021-06-26/scalability1-rtree.svg)
![scalability1-grid](/assets/images/2021-06-26/scalability1-grid4.svg)
There's not a whole lot to say here, `v0.4rc3` is just an improvement across the board. Note that it's a little surprising how the bandwidth use *decreases* as the network grows. This may be an artifact of how the test works, since a fixed number of pings may represent proportionally more traffic in small network, but that's speculation.
### Conclusion
The upcoming v0.4 release changes how packets are routed through the network. While it's hard to say exactly how things will behave in the real world, the performance gains in the simulated networks give us reason to be optimistic.
If things go according to plan, then these changes should improve the user experience and overall usefulness of the network. Changes to the network state should no longer affect existing traffic flows, as long as the path the flow is using is unaffected. In cases where the path *is* affected, it should take much less time for the network to detect this and route around the damage (when it's possible to do so). With or without disruptive changes in the network, there should be reduced bandwidth from protocol traffic, leading to lower data use and longer battery life in energy constrained environments (e.g. mobile phones).

View File

@ -0,0 +1,337 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<svg
width="600" height="480"
viewBox="0 0 600 480"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
>
<title>Gnuplot</title>
<desc>Produced by GNUPLOT 5.2 patchlevel 8 </desc>
<g id="gnuplot_canvas">
<rect x="0" y="0" width="600" height="480" fill="#ffffff"/>
<defs>
<circle id='gpDot' r='0.5' stroke-width='0.5' stroke='currentColor'/>
<path id='gpPt0' stroke-width='0.222' stroke='currentColor' d='M-1,0 h2 M0,-1 v2'/>
<path id='gpPt1' stroke-width='0.222' stroke='currentColor' d='M-1,-1 L1,1 M1,-1 L-1,1'/>
<path id='gpPt2' stroke-width='0.222' stroke='currentColor' d='M-1,0 L1,0 M0,-1 L0,1 M-1,-1 L1,1 M-1,1 L1,-1'/>
<rect id='gpPt3' stroke-width='0.222' stroke='currentColor' x='-1' y='-1' width='2' height='2'/>
<rect id='gpPt4' stroke-width='0.222' stroke='currentColor' fill='currentColor' x='-1' y='-1' width='2' height='2'/>
<circle id='gpPt5' stroke-width='0.222' stroke='currentColor' cx='0' cy='0' r='1'/>
<use xlink:href='#gpPt5' id='gpPt6' fill='currentColor' stroke='none'/>
<path id='gpPt7' stroke-width='0.222' stroke='currentColor' d='M0,-1.33 L-1.33,0.67 L1.33,0.67 z'/>
<use xlink:href='#gpPt7' id='gpPt8' fill='currentColor' stroke='none'/>
<use xlink:href='#gpPt7' id='gpPt9' stroke='currentColor' transform='rotate(180)'/>
<use xlink:href='#gpPt9' id='gpPt10' fill='currentColor' stroke='none'/>
<use xlink:href='#gpPt3' id='gpPt11' stroke='currentColor' transform='rotate(45)'/>
<use xlink:href='#gpPt11' id='gpPt12' fill='currentColor' stroke='none'/>
<path id='gpPt13' stroke-width='0.222' stroke='currentColor' d='M0,1.330 L1.265,0.411 L0.782,-1.067 L-0.782,-1.076 L-1.265,0.411 z'/>
<use xlink:href='#gpPt13' id='gpPt14' fill='currentColor' stroke='none'/>
<filter id='textbox' filterUnits='objectBoundingBox' x='0' y='0' height='1' width='1'>
<feFlood flood-color='#FFFFFF' flood-opacity='1' result='bgnd'/>
<feComposite in='SourceGraphic' in2='bgnd' operator='atop'/>
</filter>
<filter id='greybox' filterUnits='objectBoundingBox' x='0' y='0' height='1' width='1'>
<feFlood flood-color='lightgrey' flood-opacity='1' result='grey'/>
<feComposite in='SourceGraphic' in2='grey' operator='atop'/>
</filter>
</defs>
<g fill="none" color="#FFFFFF" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M71.9,422.4 L575.0,422.4 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M71.9,422.4 L80.9,422.4 M575.0,422.4 L566.0,422.4 '/> <g transform="translate(63.6,426.3)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
<text><tspan font-family="Arial" > 0</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M71.9,352.3 L575.0,352.3 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M71.9,352.3 L80.9,352.3 M575.0,352.3 L566.0,352.3 '/> <g transform="translate(63.6,356.2)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
<text><tspan font-family="Arial" > 20</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M71.9,282.3 L343.5,282.3 M566.7,282.3 L575.0,282.3 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M71.9,282.3 L80.9,282.3 M575.0,282.3 L566.0,282.3 '/> <g transform="translate(63.6,286.2)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
<text><tspan font-family="Arial" > 40</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M71.9,212.2 L343.5,212.2 M566.7,212.2 L575.0,212.2 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M71.9,212.2 L80.9,212.2 M575.0,212.2 L566.0,212.2 '/> <g transform="translate(63.6,216.1)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
<text><tspan font-family="Arial" > 60</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M71.9,142.2 L575.0,142.2 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M71.9,142.2 L80.9,142.2 M575.0,142.2 L566.0,142.2 '/> <g transform="translate(63.6,146.1)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
<text><tspan font-family="Arial" > 80</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M71.9,72.1 L575.0,72.1 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M71.9,72.1 L80.9,72.1 M575.0,72.1 L566.0,72.1 '/> <g transform="translate(63.6,76.0)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
<text><tspan font-family="Arial" > 100</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M71.9,422.4 L71.9,72.1 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M71.9,422.4 L71.9,413.4 M71.9,72.1 L71.9,81.1 '/> <g transform="translate(71.9,444.3)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text><tspan font-family="Arial" > 0</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M155.8,422.4 L155.8,72.1 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M155.8,422.4 L155.8,413.4 M155.8,72.1 L155.8,81.1 '/> <g transform="translate(155.8,444.3)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text><tspan font-family="Arial" > 5</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M239.6,422.4 L239.6,72.1 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M239.6,422.4 L239.6,413.4 M239.6,72.1 L239.6,81.1 '/> <g transform="translate(239.6,444.3)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text><tspan font-family="Arial" > 10</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M323.5,422.4 L323.5,72.1 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M323.5,422.4 L323.5,413.4 M323.5,72.1 L323.5,81.1 '/> <g transform="translate(323.5,444.3)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text><tspan font-family="Arial" > 15</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M407.3,422.4 L407.3,301.3 M407.3,193.3 L407.3,72.1 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M407.3,422.4 L407.3,413.4 M407.3,72.1 L407.3,81.1 '/> <g transform="translate(407.3,444.3)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text><tspan font-family="Arial" > 20</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M491.2,422.4 L491.2,301.3 M491.2,193.3 L491.2,72.1 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M491.2,422.4 L491.2,413.4 M491.2,72.1 L491.2,81.1 '/> <g transform="translate(491.2,444.3)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text><tspan font-family="Arial" > 25</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M575.0,422.4 L575.0,72.1 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M575.0,422.4 L575.0,413.4 M575.0,72.1 L575.0,81.1 '/> <g transform="translate(575.0,444.3)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text><tspan font-family="Arial" > 30</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M71.9,72.1 L71.9,422.4 L575.0,422.4 L575.0,72.1 L71.9,72.1 Z '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(19.0,247.3) rotate(270)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text><tspan font-family="Arial" >packet arrival [%]</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(323.4,471.3)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text><tspan font-family="Arial" >10s steps [-]</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(323.4,31.0)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text>Mobility1 test of 50 nodes. Start inside 1x1km square.</text>
</g>
<g transform="translate(323.4,49.0)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text>Step duration is 10 seconds. Step width is 0-10m. 100MBit/s - 1ms latency links.</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g id="gnuplot_plot_1" ><title>v0.3.16 [%]</title>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(482.1,226.2)" stroke="none" fill="black" font-family="Helvetica" font-size="18.00" text-anchor="end">
<text><tspan font-family="Helvetica" >v0.3.16 [%]</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='rgb(192, 128, 255)' d='M494.7,220.3 L554.1,220.3 M71.9,72.1 L88.7,124.6 L105.4,189.5 L122.2,157.9 L139.0,145.7 L155.8,107.1
L172.5,93.1 L189.3,368.1 L206.1,331.3 L222.8,292.8 L239.6,242.0 L256.4,245.5 L273.1,324.3 L289.9,296.3
L306.7,348.8 L323.5,242.0 L340.2,200.0 L357.0,250.8 L373.8,219.2 L390.5,154.4 L407.3,150.9 L424.1,131.7
L440.8,150.9 L457.6,129.9 L474.4,150.9 L491.2,150.9 L507.9,193.0 L524.7,184.2 L541.5,117.6 L558.2,157.9
'/> <use xlink:href='#gpPt0' transform='translate(71.9,72.1) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(88.7,124.6) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(105.4,189.5) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(122.2,157.9) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(139.0,145.7) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(155.8,107.1) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(172.5,93.1) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(189.3,368.1) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(206.1,331.3) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(222.8,292.8) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(239.6,242.0) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(256.4,245.5) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(273.1,324.3) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(289.9,296.3) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(306.7,348.8) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(323.5,242.0) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(340.2,200.0) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(357.0,250.8) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(373.8,219.2) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(390.5,154.4) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(407.3,150.9) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(424.1,131.7) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(440.8,150.9) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(457.6,129.9) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(474.4,150.9) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(491.2,150.9) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(507.9,193.0) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(524.7,184.2) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(541.5,117.6) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(558.2,157.9) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(524.4,220.3) scale(4.50)' color='rgb(192, 128, 255)'/>
</g>
</g>
<g id="gnuplot_plot_2" ><title>v0.4rc3 [%]</title>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(482.1,280.2)" stroke="none" fill="black" font-family="Helvetica" font-size="18.00" text-anchor="end">
<text><tspan font-family="Helvetica" >v0.4rc3 [%]</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='rgb( 0, 100, 0)' d='M494.7,274.3 L554.1,274.3 M71.9,72.1 L88.7,72.1 L105.4,72.1 L122.2,72.1 L139.0,72.1 L155.8,72.1
L172.5,72.1 L189.3,72.1 L206.1,72.1 L222.8,72.1 L239.6,72.1 L256.4,72.1 L273.1,72.1 L289.9,72.1
L306.7,72.1 L323.5,72.1 L340.2,72.1 L357.0,72.1 L373.8,72.1 L390.5,72.1 L407.3,72.1 L424.1,72.1
L440.8,72.1 L457.6,72.1 L474.4,72.1 L491.2,72.1 L507.9,72.1 L524.7,72.1 L541.5,72.1 L558.2,72.1
'/> <use xlink:href='#gpPt1' transform='translate(71.9,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(88.7,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(105.4,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(122.2,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(139.0,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(155.8,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(172.5,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(189.3,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(206.1,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(222.8,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(239.6,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(256.4,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(273.1,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(289.9,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(306.7,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(323.5,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(340.2,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(357.0,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(373.8,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(390.5,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(407.3,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(424.1,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(440.8,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(457.6,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(474.4,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(491.2,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(507.9,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(524.7,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(541.5,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(558.2,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(524.4,274.3) scale(4.50)' color='rgb( 0, 100, 0)'/>
</g>
</g>
<g fill="none" color="#FFFFFF" stroke="rgb( 0, 100, 0)" stroke-width="6.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="6.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M71.9,72.1 L71.9,422.4 L575.0,422.4 L575.0,72.1 L71.9,72.1 Z '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 25 KiB

View File

@ -0,0 +1,337 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<svg
width="600" height="480"
viewBox="0 0 600 480"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
>
<title>Gnuplot</title>
<desc>Produced by GNUPLOT 5.2 patchlevel 8 </desc>
<g id="gnuplot_canvas">
<rect x="0" y="0" width="600" height="480" fill="#ffffff"/>
<defs>
<circle id='gpDot' r='0.5' stroke-width='0.5' stroke='currentColor'/>
<path id='gpPt0' stroke-width='0.222' stroke='currentColor' d='M-1,0 h2 M0,-1 v2'/>
<path id='gpPt1' stroke-width='0.222' stroke='currentColor' d='M-1,-1 L1,1 M1,-1 L-1,1'/>
<path id='gpPt2' stroke-width='0.222' stroke='currentColor' d='M-1,0 L1,0 M0,-1 L0,1 M-1,-1 L1,1 M-1,1 L1,-1'/>
<rect id='gpPt3' stroke-width='0.222' stroke='currentColor' x='-1' y='-1' width='2' height='2'/>
<rect id='gpPt4' stroke-width='0.222' stroke='currentColor' fill='currentColor' x='-1' y='-1' width='2' height='2'/>
<circle id='gpPt5' stroke-width='0.222' stroke='currentColor' cx='0' cy='0' r='1'/>
<use xlink:href='#gpPt5' id='gpPt6' fill='currentColor' stroke='none'/>
<path id='gpPt7' stroke-width='0.222' stroke='currentColor' d='M0,-1.33 L-1.33,0.67 L1.33,0.67 z'/>
<use xlink:href='#gpPt7' id='gpPt8' fill='currentColor' stroke='none'/>
<use xlink:href='#gpPt7' id='gpPt9' stroke='currentColor' transform='rotate(180)'/>
<use xlink:href='#gpPt9' id='gpPt10' fill='currentColor' stroke='none'/>
<use xlink:href='#gpPt3' id='gpPt11' stroke='currentColor' transform='rotate(45)'/>
<use xlink:href='#gpPt11' id='gpPt12' fill='currentColor' stroke='none'/>
<path id='gpPt13' stroke-width='0.222' stroke='currentColor' d='M0,1.330 L1.265,0.411 L0.782,-1.067 L-0.782,-1.076 L-1.265,0.411 z'/>
<use xlink:href='#gpPt13' id='gpPt14' fill='currentColor' stroke='none'/>
<filter id='textbox' filterUnits='objectBoundingBox' x='0' y='0' height='1' width='1'>
<feFlood flood-color='#FFFFFF' flood-opacity='1' result='bgnd'/>
<feComposite in='SourceGraphic' in2='bgnd' operator='atop'/>
</filter>
<filter id='greybox' filterUnits='objectBoundingBox' x='0' y='0' height='1' width='1'>
<feFlood flood-color='lightgrey' flood-opacity='1' result='grey'/>
<feComposite in='SourceGraphic' in2='grey' operator='atop'/>
</filter>
</defs>
<g fill="none" color="#FFFFFF" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M71.9,422.4 L575.0,422.4 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M71.9,422.4 L80.9,422.4 M575.0,422.4 L566.0,422.4 '/> <g transform="translate(63.6,426.3)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
<text><tspan font-family="Arial" > 0</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M71.9,352.3 L575.0,352.3 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M71.9,352.3 L80.9,352.3 M575.0,352.3 L566.0,352.3 '/> <g transform="translate(63.6,356.2)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
<text><tspan font-family="Arial" > 20</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M71.9,282.3 L343.5,282.3 M566.7,282.3 L575.0,282.3 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M71.9,282.3 L80.9,282.3 M575.0,282.3 L566.0,282.3 '/> <g transform="translate(63.6,286.2)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
<text><tspan font-family="Arial" > 40</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M71.9,212.2 L343.5,212.2 M566.7,212.2 L575.0,212.2 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M71.9,212.2 L80.9,212.2 M575.0,212.2 L566.0,212.2 '/> <g transform="translate(63.6,216.1)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
<text><tspan font-family="Arial" > 60</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M71.9,142.2 L575.0,142.2 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M71.9,142.2 L80.9,142.2 M575.0,142.2 L566.0,142.2 '/> <g transform="translate(63.6,146.1)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
<text><tspan font-family="Arial" > 80</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M71.9,72.1 L575.0,72.1 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M71.9,72.1 L80.9,72.1 M575.0,72.1 L566.0,72.1 '/> <g transform="translate(63.6,76.0)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
<text><tspan font-family="Arial" > 100</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M71.9,422.4 L71.9,72.1 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M71.9,422.4 L71.9,413.4 M71.9,72.1 L71.9,81.1 '/> <g transform="translate(71.9,444.3)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text><tspan font-family="Arial" > 0</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M155.8,422.4 L155.8,72.1 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M155.8,422.4 L155.8,413.4 M155.8,72.1 L155.8,81.1 '/> <g transform="translate(155.8,444.3)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text><tspan font-family="Arial" > 5</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M239.6,422.4 L239.6,72.1 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M239.6,422.4 L239.6,413.4 M239.6,72.1 L239.6,81.1 '/> <g transform="translate(239.6,444.3)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text><tspan font-family="Arial" > 10</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M323.5,422.4 L323.5,72.1 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M323.5,422.4 L323.5,413.4 M323.5,72.1 L323.5,81.1 '/> <g transform="translate(323.5,444.3)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text><tspan font-family="Arial" > 15</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M407.3,422.4 L407.3,301.3 M407.3,193.3 L407.3,72.1 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M407.3,422.4 L407.3,413.4 M407.3,72.1 L407.3,81.1 '/> <g transform="translate(407.3,444.3)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text><tspan font-family="Arial" > 20</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M491.2,422.4 L491.2,301.3 M491.2,193.3 L491.2,72.1 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M491.2,422.4 L491.2,413.4 M491.2,72.1 L491.2,81.1 '/> <g transform="translate(491.2,444.3)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text><tspan font-family="Arial" > 25</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M575.0,422.4 L575.0,72.1 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M575.0,422.4 L575.0,413.4 M575.0,72.1 L575.0,81.1 '/> <g transform="translate(575.0,444.3)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text><tspan font-family="Arial" > 30</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M71.9,72.1 L71.9,422.4 L575.0,422.4 L575.0,72.1 L71.9,72.1 Z '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(19.0,247.3) rotate(270)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text><tspan font-family="Arial" >packet arrival [%]</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(323.4,471.3)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text><tspan font-family="Arial" >10s steps [-]</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(323.4,31.0)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text>Mobility1 test of 50 nodes. Start inside 1x1km square.</text>
</g>
<g transform="translate(323.4,49.0)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text>Step duration is 10 seconds. Step width is 0-30m. 100MBit/s - 1ms latency links.</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g id="gnuplot_plot_1" ><title>v0.3.16 [%]</title>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(482.1,226.2)" stroke="none" fill="black" font-family="Helvetica" font-size="18.00" text-anchor="end">
<text><tspan font-family="Helvetica" >v0.3.16 [%]</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='rgb(192, 128, 255)' d='M494.7,220.3 L554.1,220.3 M71.9,150.9 L88.7,355.8 L105.4,303.3 L122.2,247.2 L139.0,347.1 L155.8,233.2
L172.5,178.9 L189.3,296.3 L206.1,231.5 L222.8,268.3 L239.6,280.5 L256.4,315.6 L273.1,376.9 L289.9,348.8
L306.7,387.4 L323.5,343.6 L340.2,390.9 L357.0,291.0 L373.8,361.1 L390.5,361.1 L407.3,382.1 L424.1,254.3
L440.8,257.8 L457.6,238.5 L474.4,355.8 L491.2,380.4 L507.9,350.6 L524.7,312.1 L541.5,270.0 L558.2,294.5
'/> <use xlink:href='#gpPt0' transform='translate(71.9,150.9) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(88.7,355.8) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(105.4,303.3) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(122.2,247.2) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(139.0,347.1) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(155.8,233.2) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(172.5,178.9) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(189.3,296.3) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(206.1,231.5) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(222.8,268.3) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(239.6,280.5) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(256.4,315.6) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(273.1,376.9) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(289.9,348.8) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(306.7,387.4) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(323.5,343.6) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(340.2,390.9) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(357.0,291.0) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(373.8,361.1) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(390.5,361.1) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(407.3,382.1) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(424.1,254.3) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(440.8,257.8) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(457.6,238.5) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(474.4,355.8) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(491.2,380.4) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(507.9,350.6) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(524.7,312.1) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(541.5,270.0) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(558.2,294.5) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(524.4,220.3) scale(4.50)' color='rgb(192, 128, 255)'/>
</g>
</g>
<g id="gnuplot_plot_2" ><title>v0.4rc3 [%]</title>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(482.1,280.2)" stroke="none" fill="black" font-family="Helvetica" font-size="18.00" text-anchor="end">
<text><tspan font-family="Helvetica" >v0.4rc3 [%]</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='rgb( 0, 100, 0)' d='M494.7,274.3 L554.1,274.3 M71.9,72.1 L88.7,72.1 L105.4,72.1 L122.2,73.9 L139.0,72.1 L155.8,72.1
L172.5,72.1 L189.3,72.1 L206.1,72.1 L222.8,72.1 L239.6,72.1 L256.4,72.1 L273.1,72.1 L289.9,72.1
L306.7,72.1 L323.5,72.1 L340.2,72.1 L357.0,72.1 L373.8,72.1 L390.5,72.1 L407.3,72.1 L424.1,72.1
L440.8,72.1 L457.6,72.1 L474.4,72.1 L491.2,72.1 L507.9,72.1 L524.7,72.1 L541.5,72.1 L558.2,72.1
'/> <use xlink:href='#gpPt1' transform='translate(71.9,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(88.7,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(105.4,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(122.2,73.9) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(139.0,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(155.8,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(172.5,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(189.3,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(206.1,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(222.8,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(239.6,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(256.4,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(273.1,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(289.9,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(306.7,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(323.5,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(340.2,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(357.0,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(373.8,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(390.5,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(407.3,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(424.1,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(440.8,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(457.6,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(474.4,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(491.2,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(507.9,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(524.7,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(541.5,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(558.2,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(524.4,274.3) scale(4.50)' color='rgb( 0, 100, 0)'/>
</g>
</g>
<g fill="none" color="#FFFFFF" stroke="rgb( 0, 100, 0)" stroke-width="6.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="6.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M71.9,72.1 L71.9,422.4 L575.0,422.4 L575.0,72.1 L71.9,72.1 Z '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 25 KiB

View File

@ -0,0 +1,337 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<svg
width="600" height="480"
viewBox="0 0 600 480"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
>
<title>Gnuplot</title>
<desc>Produced by GNUPLOT 5.2 patchlevel 8 </desc>
<g id="gnuplot_canvas">
<rect x="0" y="0" width="600" height="480" fill="#ffffff"/>
<defs>
<circle id='gpDot' r='0.5' stroke-width='0.5' stroke='currentColor'/>
<path id='gpPt0' stroke-width='0.222' stroke='currentColor' d='M-1,0 h2 M0,-1 v2'/>
<path id='gpPt1' stroke-width='0.222' stroke='currentColor' d='M-1,-1 L1,1 M1,-1 L-1,1'/>
<path id='gpPt2' stroke-width='0.222' stroke='currentColor' d='M-1,0 L1,0 M0,-1 L0,1 M-1,-1 L1,1 M-1,1 L1,-1'/>
<rect id='gpPt3' stroke-width='0.222' stroke='currentColor' x='-1' y='-1' width='2' height='2'/>
<rect id='gpPt4' stroke-width='0.222' stroke='currentColor' fill='currentColor' x='-1' y='-1' width='2' height='2'/>
<circle id='gpPt5' stroke-width='0.222' stroke='currentColor' cx='0' cy='0' r='1'/>
<use xlink:href='#gpPt5' id='gpPt6' fill='currentColor' stroke='none'/>
<path id='gpPt7' stroke-width='0.222' stroke='currentColor' d='M0,-1.33 L-1.33,0.67 L1.33,0.67 z'/>
<use xlink:href='#gpPt7' id='gpPt8' fill='currentColor' stroke='none'/>
<use xlink:href='#gpPt7' id='gpPt9' stroke='currentColor' transform='rotate(180)'/>
<use xlink:href='#gpPt9' id='gpPt10' fill='currentColor' stroke='none'/>
<use xlink:href='#gpPt3' id='gpPt11' stroke='currentColor' transform='rotate(45)'/>
<use xlink:href='#gpPt11' id='gpPt12' fill='currentColor' stroke='none'/>
<path id='gpPt13' stroke-width='0.222' stroke='currentColor' d='M0,1.330 L1.265,0.411 L0.782,-1.067 L-0.782,-1.076 L-1.265,0.411 z'/>
<use xlink:href='#gpPt13' id='gpPt14' fill='currentColor' stroke='none'/>
<filter id='textbox' filterUnits='objectBoundingBox' x='0' y='0' height='1' width='1'>
<feFlood flood-color='#FFFFFF' flood-opacity='1' result='bgnd'/>
<feComposite in='SourceGraphic' in2='bgnd' operator='atop'/>
</filter>
<filter id='greybox' filterUnits='objectBoundingBox' x='0' y='0' height='1' width='1'>
<feFlood flood-color='lightgrey' flood-opacity='1' result='grey'/>
<feComposite in='SourceGraphic' in2='grey' operator='atop'/>
</filter>
</defs>
<g fill="none" color="#FFFFFF" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M71.9,422.4 L575.0,422.4 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M71.9,422.4 L80.9,422.4 M575.0,422.4 L566.0,422.4 '/> <g transform="translate(63.6,426.3)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
<text><tspan font-family="Arial" > 0</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M71.9,352.3 L575.0,352.3 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M71.9,352.3 L80.9,352.3 M575.0,352.3 L566.0,352.3 '/> <g transform="translate(63.6,356.2)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
<text><tspan font-family="Arial" > 20</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M71.9,282.3 L343.5,282.3 M566.7,282.3 L575.0,282.3 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M71.9,282.3 L80.9,282.3 M575.0,282.3 L566.0,282.3 '/> <g transform="translate(63.6,286.2)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
<text><tspan font-family="Arial" > 40</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M71.9,212.2 L343.5,212.2 M566.7,212.2 L575.0,212.2 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M71.9,212.2 L80.9,212.2 M575.0,212.2 L566.0,212.2 '/> <g transform="translate(63.6,216.1)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
<text><tspan font-family="Arial" > 60</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M71.9,142.2 L575.0,142.2 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M71.9,142.2 L80.9,142.2 M575.0,142.2 L566.0,142.2 '/> <g transform="translate(63.6,146.1)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
<text><tspan font-family="Arial" > 80</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M71.9,72.1 L575.0,72.1 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M71.9,72.1 L80.9,72.1 M575.0,72.1 L566.0,72.1 '/> <g transform="translate(63.6,76.0)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
<text><tspan font-family="Arial" > 100</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M71.9,422.4 L71.9,72.1 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M71.9,422.4 L71.9,413.4 M71.9,72.1 L71.9,81.1 '/> <g transform="translate(71.9,444.3)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text><tspan font-family="Arial" > 0</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M155.8,422.4 L155.8,72.1 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M155.8,422.4 L155.8,413.4 M155.8,72.1 L155.8,81.1 '/> <g transform="translate(155.8,444.3)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text><tspan font-family="Arial" > 5</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M239.6,422.4 L239.6,72.1 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M239.6,422.4 L239.6,413.4 M239.6,72.1 L239.6,81.1 '/> <g transform="translate(239.6,444.3)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text><tspan font-family="Arial" > 10</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M323.5,422.4 L323.5,72.1 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M323.5,422.4 L323.5,413.4 M323.5,72.1 L323.5,81.1 '/> <g transform="translate(323.5,444.3)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text><tspan font-family="Arial" > 15</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M407.3,422.4 L407.3,301.3 M407.3,193.3 L407.3,72.1 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M407.3,422.4 L407.3,413.4 M407.3,72.1 L407.3,81.1 '/> <g transform="translate(407.3,444.3)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text><tspan font-family="Arial" > 20</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M491.2,422.4 L491.2,301.3 M491.2,193.3 L491.2,72.1 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M491.2,422.4 L491.2,413.4 M491.2,72.1 L491.2,81.1 '/> <g transform="translate(491.2,444.3)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text><tspan font-family="Arial" > 25</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M575.0,422.4 L575.0,72.1 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M575.0,422.4 L575.0,413.4 M575.0,72.1 L575.0,81.1 '/> <g transform="translate(575.0,444.3)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text><tspan font-family="Arial" > 30</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M71.9,72.1 L71.9,422.4 L575.0,422.4 L575.0,72.1 L71.9,72.1 Z '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(19.0,247.3) rotate(270)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text><tspan font-family="Arial" >packet arrival [%]</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(323.4,471.3)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text><tspan font-family="Arial" >10s steps [-]</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(323.4,31.0)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text>Mobility1 test of 50 nodes. Start inside 1x1km square.</text>
</g>
<g transform="translate(323.4,49.0)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text>Step duration is 10 seconds. Step width is 0-60m. 100MBit/s - 1ms latency links.</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g id="gnuplot_plot_1" ><title>v0.3.16 [%]</title>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(482.1,226.2)" stroke="none" fill="black" font-family="Helvetica" font-size="18.00" text-anchor="end">
<text><tspan font-family="Helvetica" >v0.3.16 [%]</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='rgb(192, 128, 255)' d='M494.7,220.3 L554.1,220.3 M71.9,313.8 L88.7,373.4 L105.4,313.8 L122.2,317.3 L139.0,313.8 L155.8,364.6
L172.5,364.6 L189.3,315.6 L206.1,396.1 L222.8,389.1 L239.6,305.0 L256.4,380.4 L273.1,385.6 L289.9,359.3
L306.7,333.1 L323.5,284.0 L340.2,334.8 L357.0,261.3 L373.8,259.5 L390.5,287.5 L407.3,334.8 L424.1,347.1
L440.8,350.6 L457.6,362.8 L474.4,364.6 L491.2,285.8 L507.9,343.6 L524.7,331.3 L541.5,352.3 L558.2,313.8
'/> <use xlink:href='#gpPt0' transform='translate(71.9,313.8) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(88.7,373.4) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(105.4,313.8) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(122.2,317.3) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(139.0,313.8) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(155.8,364.6) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(172.5,364.6) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(189.3,315.6) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(206.1,396.1) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(222.8,389.1) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(239.6,305.0) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(256.4,380.4) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(273.1,385.6) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(289.9,359.3) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(306.7,333.1) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(323.5,284.0) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(340.2,334.8) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(357.0,261.3) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(373.8,259.5) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(390.5,287.5) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(407.3,334.8) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(424.1,347.1) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(440.8,350.6) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(457.6,362.8) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(474.4,364.6) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(491.2,285.8) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(507.9,343.6) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(524.7,331.3) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(541.5,352.3) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(558.2,313.8) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(524.4,220.3) scale(4.50)' color='rgb(192, 128, 255)'/>
</g>
</g>
<g id="gnuplot_plot_2" ><title>v0.4rc3 [%]</title>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(482.1,280.2)" stroke="none" fill="black" font-family="Helvetica" font-size="18.00" text-anchor="end">
<text><tspan font-family="Helvetica" >v0.4rc3 [%]</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='rgb( 0, 100, 0)' d='M494.7,274.3 L554.1,274.3 M71.9,72.1 L88.7,98.4 L105.4,145.7 L122.2,93.1 L139.0,79.1 L155.8,82.6
L172.5,112.4 L189.3,79.1 L206.1,75.6 L222.8,75.6 L239.6,91.4 L256.4,87.9 L273.1,86.1 L289.9,75.6
L306.7,79.1 L323.5,98.4 L340.2,75.6 L357.0,77.4 L373.8,89.6 L390.5,75.6 L407.3,73.9 L424.1,93.1
L440.8,73.9 L457.6,73.9 L474.4,77.4 L491.2,72.1 L507.9,96.6 L524.7,73.9 L541.5,72.1 L558.2,79.1
'/> <use xlink:href='#gpPt1' transform='translate(71.9,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(88.7,98.4) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(105.4,145.7) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(122.2,93.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(139.0,79.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(155.8,82.6) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(172.5,112.4) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(189.3,79.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(206.1,75.6) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(222.8,75.6) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(239.6,91.4) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(256.4,87.9) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(273.1,86.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(289.9,75.6) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(306.7,79.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(323.5,98.4) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(340.2,75.6) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(357.0,77.4) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(373.8,89.6) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(390.5,75.6) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(407.3,73.9) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(424.1,93.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(440.8,73.9) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(457.6,73.9) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(474.4,77.4) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(491.2,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(507.9,96.6) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(524.7,73.9) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(541.5,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(558.2,79.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(524.4,274.3) scale(4.50)' color='rgb( 0, 100, 0)'/>
</g>
</g>
<g fill="none" color="#FFFFFF" stroke="rgb( 0, 100, 0)" stroke-width="6.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="6.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M71.9,72.1 L71.9,422.4 L575.0,422.4 L575.0,72.1 L71.9,72.1 Z '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 25 KiB

View File

@ -0,0 +1,337 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<svg
width="600" height="480"
viewBox="0 0 600 480"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
>
<title>Gnuplot</title>
<desc>Produced by GNUPLOT 5.2 patchlevel 8 </desc>
<g id="gnuplot_canvas">
<rect x="0" y="0" width="600" height="480" fill="#ffffff"/>
<defs>
<circle id='gpDot' r='0.5' stroke-width='0.5' stroke='currentColor'/>
<path id='gpPt0' stroke-width='0.222' stroke='currentColor' d='M-1,0 h2 M0,-1 v2'/>
<path id='gpPt1' stroke-width='0.222' stroke='currentColor' d='M-1,-1 L1,1 M1,-1 L-1,1'/>
<path id='gpPt2' stroke-width='0.222' stroke='currentColor' d='M-1,0 L1,0 M0,-1 L0,1 M-1,-1 L1,1 M-1,1 L1,-1'/>
<rect id='gpPt3' stroke-width='0.222' stroke='currentColor' x='-1' y='-1' width='2' height='2'/>
<rect id='gpPt4' stroke-width='0.222' stroke='currentColor' fill='currentColor' x='-1' y='-1' width='2' height='2'/>
<circle id='gpPt5' stroke-width='0.222' stroke='currentColor' cx='0' cy='0' r='1'/>
<use xlink:href='#gpPt5' id='gpPt6' fill='currentColor' stroke='none'/>
<path id='gpPt7' stroke-width='0.222' stroke='currentColor' d='M0,-1.33 L-1.33,0.67 L1.33,0.67 z'/>
<use xlink:href='#gpPt7' id='gpPt8' fill='currentColor' stroke='none'/>
<use xlink:href='#gpPt7' id='gpPt9' stroke='currentColor' transform='rotate(180)'/>
<use xlink:href='#gpPt9' id='gpPt10' fill='currentColor' stroke='none'/>
<use xlink:href='#gpPt3' id='gpPt11' stroke='currentColor' transform='rotate(45)'/>
<use xlink:href='#gpPt11' id='gpPt12' fill='currentColor' stroke='none'/>
<path id='gpPt13' stroke-width='0.222' stroke='currentColor' d='M0,1.330 L1.265,0.411 L0.782,-1.067 L-0.782,-1.076 L-1.265,0.411 z'/>
<use xlink:href='#gpPt13' id='gpPt14' fill='currentColor' stroke='none'/>
<filter id='textbox' filterUnits='objectBoundingBox' x='0' y='0' height='1' width='1'>
<feFlood flood-color='#FFFFFF' flood-opacity='1' result='bgnd'/>
<feComposite in='SourceGraphic' in2='bgnd' operator='atop'/>
</filter>
<filter id='greybox' filterUnits='objectBoundingBox' x='0' y='0' height='1' width='1'>
<feFlood flood-color='lightgrey' flood-opacity='1' result='grey'/>
<feComposite in='SourceGraphic' in2='grey' operator='atop'/>
</filter>
</defs>
<g fill="none" color="#FFFFFF" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M71.9,422.4 L575.0,422.4 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M71.9,422.4 L80.9,422.4 M575.0,422.4 L566.0,422.4 '/> <g transform="translate(63.6,426.3)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
<text><tspan font-family="Arial" > 0</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M71.9,352.3 L575.0,352.3 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M71.9,352.3 L80.9,352.3 M575.0,352.3 L566.0,352.3 '/> <g transform="translate(63.6,356.2)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
<text><tspan font-family="Arial" > 20</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M71.9,282.3 L343.5,282.3 M566.7,282.3 L575.0,282.3 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M71.9,282.3 L80.9,282.3 M575.0,282.3 L566.0,282.3 '/> <g transform="translate(63.6,286.2)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
<text><tspan font-family="Arial" > 40</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M71.9,212.2 L343.5,212.2 M566.7,212.2 L575.0,212.2 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M71.9,212.2 L80.9,212.2 M575.0,212.2 L566.0,212.2 '/> <g transform="translate(63.6,216.1)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
<text><tspan font-family="Arial" > 60</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M71.9,142.2 L575.0,142.2 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M71.9,142.2 L80.9,142.2 M575.0,142.2 L566.0,142.2 '/> <g transform="translate(63.6,146.1)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
<text><tspan font-family="Arial" > 80</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M71.9,72.1 L575.0,72.1 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M71.9,72.1 L80.9,72.1 M575.0,72.1 L566.0,72.1 '/> <g transform="translate(63.6,76.0)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
<text><tspan font-family="Arial" > 100</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M71.9,422.4 L71.9,72.1 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M71.9,422.4 L71.9,413.4 M71.9,72.1 L71.9,81.1 '/> <g transform="translate(71.9,444.3)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text><tspan font-family="Arial" > 0</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M155.8,422.4 L155.8,72.1 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M155.8,422.4 L155.8,413.4 M155.8,72.1 L155.8,81.1 '/> <g transform="translate(155.8,444.3)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text><tspan font-family="Arial" > 5</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M239.6,422.4 L239.6,72.1 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M239.6,422.4 L239.6,413.4 M239.6,72.1 L239.6,81.1 '/> <g transform="translate(239.6,444.3)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text><tspan font-family="Arial" > 10</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M323.5,422.4 L323.5,72.1 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M323.5,422.4 L323.5,413.4 M323.5,72.1 L323.5,81.1 '/> <g transform="translate(323.5,444.3)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text><tspan font-family="Arial" > 15</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M407.3,422.4 L407.3,301.3 M407.3,193.3 L407.3,72.1 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M407.3,422.4 L407.3,413.4 M407.3,72.1 L407.3,81.1 '/> <g transform="translate(407.3,444.3)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text><tspan font-family="Arial" > 20</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M491.2,422.4 L491.2,301.3 M491.2,193.3 L491.2,72.1 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M491.2,422.4 L491.2,413.4 M491.2,72.1 L491.2,81.1 '/> <g transform="translate(491.2,444.3)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text><tspan font-family="Arial" > 25</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M575.0,422.4 L575.0,72.1 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M575.0,422.4 L575.0,413.4 M575.0,72.1 L575.0,81.1 '/> <g transform="translate(575.0,444.3)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text><tspan font-family="Arial" > 30</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M71.9,72.1 L71.9,422.4 L575.0,422.4 L575.0,72.1 L71.9,72.1 Z '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(19.0,247.3) rotate(270)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text><tspan font-family="Arial" >packet arrival [%]</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(323.4,471.3)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text><tspan font-family="Arial" >30s steps [-]</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(323.4,31.0)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text>Mobility1 test of 50 nodes. Start inside 1x1km square.</text>
</g>
<g transform="translate(323.4,49.0)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text>Step duration is 30 seconds. Step width is 0-10m. 100MBit/s - 1ms latency links.</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g id="gnuplot_plot_1" ><title>v0.3.16 [%]</title>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(482.1,226.2)" stroke="none" fill="black" font-family="Helvetica" font-size="18.00" text-anchor="end">
<text><tspan font-family="Helvetica" >v0.3.16 [%]</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='rgb(192, 128, 255)' d='M494.7,220.3 L554.1,220.3 M71.9,72.1 L88.7,112.4 L105.4,205.2 L122.2,278.8 L139.0,159.7 L155.8,100.1
L172.5,93.1 L189.3,79.1 L206.1,72.1 L222.8,72.1 L239.6,75.6 L256.4,79.1 L273.1,187.7 L289.9,101.9
L306.7,96.6 L323.5,107.1 L340.2,94.9 L357.0,87.9 L373.8,94.9 L390.5,322.6 L407.3,326.1 L424.1,149.2
L440.8,233.2 L457.6,178.9 L474.4,115.9 L491.2,96.6 L507.9,73.9 L524.7,89.6 L541.5,75.6 L558.2,80.9
'/> <use xlink:href='#gpPt0' transform='translate(71.9,72.1) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(88.7,112.4) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(105.4,205.2) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(122.2,278.8) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(139.0,159.7) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(155.8,100.1) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(172.5,93.1) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(189.3,79.1) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(206.1,72.1) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(222.8,72.1) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(239.6,75.6) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(256.4,79.1) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(273.1,187.7) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(289.9,101.9) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(306.7,96.6) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(323.5,107.1) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(340.2,94.9) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(357.0,87.9) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(373.8,94.9) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(390.5,322.6) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(407.3,326.1) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(424.1,149.2) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(440.8,233.2) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(457.6,178.9) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(474.4,115.9) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(491.2,96.6) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(507.9,73.9) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(524.7,89.6) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(541.5,75.6) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(558.2,80.9) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(524.4,220.3) scale(4.50)' color='rgb(192, 128, 255)'/>
</g>
</g>
<g id="gnuplot_plot_2" ><title>v0.4rc3 [%]</title>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(482.1,280.2)" stroke="none" fill="black" font-family="Helvetica" font-size="18.00" text-anchor="end">
<text><tspan font-family="Helvetica" >v0.4rc3 [%]</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='rgb( 0, 100, 0)' d='M494.7,274.3 L554.1,274.3 M71.9,72.1 L88.7,72.1 L105.4,72.1 L122.2,72.1 L139.0,72.1 L155.8,72.1
L172.5,72.1 L189.3,72.1 L206.1,72.1 L222.8,72.1 L239.6,72.1 L256.4,72.1 L273.1,72.1 L289.9,72.1
L306.7,72.1 L323.5,72.1 L340.2,72.1 L357.0,72.1 L373.8,72.1 L390.5,72.1 L407.3,72.1 L424.1,72.1
L440.8,72.1 L457.6,72.1 L474.4,72.1 L491.2,72.1 L507.9,72.1 L524.7,72.1 L541.5,72.1 L558.2,72.1
'/> <use xlink:href='#gpPt1' transform='translate(71.9,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(88.7,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(105.4,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(122.2,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(139.0,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(155.8,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(172.5,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(189.3,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(206.1,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(222.8,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(239.6,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(256.4,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(273.1,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(289.9,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(306.7,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(323.5,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(340.2,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(357.0,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(373.8,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(390.5,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(407.3,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(424.1,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(440.8,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(457.6,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(474.4,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(491.2,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(507.9,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(524.7,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(541.5,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(558.2,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(524.4,274.3) scale(4.50)' color='rgb( 0, 100, 0)'/>
</g>
</g>
<g fill="none" color="#FFFFFF" stroke="rgb( 0, 100, 0)" stroke-width="6.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="6.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M71.9,72.1 L71.9,422.4 L575.0,422.4 L575.0,72.1 L71.9,72.1 Z '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 25 KiB

View File

@ -0,0 +1,337 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<svg
width="600" height="480"
viewBox="0 0 600 480"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
>
<title>Gnuplot</title>
<desc>Produced by GNUPLOT 5.2 patchlevel 8 </desc>
<g id="gnuplot_canvas">
<rect x="0" y="0" width="600" height="480" fill="#ffffff"/>
<defs>
<circle id='gpDot' r='0.5' stroke-width='0.5' stroke='currentColor'/>
<path id='gpPt0' stroke-width='0.222' stroke='currentColor' d='M-1,0 h2 M0,-1 v2'/>
<path id='gpPt1' stroke-width='0.222' stroke='currentColor' d='M-1,-1 L1,1 M1,-1 L-1,1'/>
<path id='gpPt2' stroke-width='0.222' stroke='currentColor' d='M-1,0 L1,0 M0,-1 L0,1 M-1,-1 L1,1 M-1,1 L1,-1'/>
<rect id='gpPt3' stroke-width='0.222' stroke='currentColor' x='-1' y='-1' width='2' height='2'/>
<rect id='gpPt4' stroke-width='0.222' stroke='currentColor' fill='currentColor' x='-1' y='-1' width='2' height='2'/>
<circle id='gpPt5' stroke-width='0.222' stroke='currentColor' cx='0' cy='0' r='1'/>
<use xlink:href='#gpPt5' id='gpPt6' fill='currentColor' stroke='none'/>
<path id='gpPt7' stroke-width='0.222' stroke='currentColor' d='M0,-1.33 L-1.33,0.67 L1.33,0.67 z'/>
<use xlink:href='#gpPt7' id='gpPt8' fill='currentColor' stroke='none'/>
<use xlink:href='#gpPt7' id='gpPt9' stroke='currentColor' transform='rotate(180)'/>
<use xlink:href='#gpPt9' id='gpPt10' fill='currentColor' stroke='none'/>
<use xlink:href='#gpPt3' id='gpPt11' stroke='currentColor' transform='rotate(45)'/>
<use xlink:href='#gpPt11' id='gpPt12' fill='currentColor' stroke='none'/>
<path id='gpPt13' stroke-width='0.222' stroke='currentColor' d='M0,1.330 L1.265,0.411 L0.782,-1.067 L-0.782,-1.076 L-1.265,0.411 z'/>
<use xlink:href='#gpPt13' id='gpPt14' fill='currentColor' stroke='none'/>
<filter id='textbox' filterUnits='objectBoundingBox' x='0' y='0' height='1' width='1'>
<feFlood flood-color='#FFFFFF' flood-opacity='1' result='bgnd'/>
<feComposite in='SourceGraphic' in2='bgnd' operator='atop'/>
</filter>
<filter id='greybox' filterUnits='objectBoundingBox' x='0' y='0' height='1' width='1'>
<feFlood flood-color='lightgrey' flood-opacity='1' result='grey'/>
<feComposite in='SourceGraphic' in2='grey' operator='atop'/>
</filter>
</defs>
<g fill="none" color="#FFFFFF" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M71.9,422.4 L575.0,422.4 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M71.9,422.4 L80.9,422.4 M575.0,422.4 L566.0,422.4 '/> <g transform="translate(63.6,426.3)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
<text><tspan font-family="Arial" > 0</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M71.9,352.3 L575.0,352.3 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M71.9,352.3 L80.9,352.3 M575.0,352.3 L566.0,352.3 '/> <g transform="translate(63.6,356.2)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
<text><tspan font-family="Arial" > 20</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M71.9,282.3 L343.5,282.3 M566.7,282.3 L575.0,282.3 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M71.9,282.3 L80.9,282.3 M575.0,282.3 L566.0,282.3 '/> <g transform="translate(63.6,286.2)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
<text><tspan font-family="Arial" > 40</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M71.9,212.2 L343.5,212.2 M566.7,212.2 L575.0,212.2 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M71.9,212.2 L80.9,212.2 M575.0,212.2 L566.0,212.2 '/> <g transform="translate(63.6,216.1)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
<text><tspan font-family="Arial" > 60</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M71.9,142.2 L575.0,142.2 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M71.9,142.2 L80.9,142.2 M575.0,142.2 L566.0,142.2 '/> <g transform="translate(63.6,146.1)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
<text><tspan font-family="Arial" > 80</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M71.9,72.1 L575.0,72.1 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M71.9,72.1 L80.9,72.1 M575.0,72.1 L566.0,72.1 '/> <g transform="translate(63.6,76.0)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
<text><tspan font-family="Arial" > 100</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M71.9,422.4 L71.9,72.1 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M71.9,422.4 L71.9,413.4 M71.9,72.1 L71.9,81.1 '/> <g transform="translate(71.9,444.3)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text><tspan font-family="Arial" > 0</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M155.8,422.4 L155.8,72.1 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M155.8,422.4 L155.8,413.4 M155.8,72.1 L155.8,81.1 '/> <g transform="translate(155.8,444.3)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text><tspan font-family="Arial" > 5</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M239.6,422.4 L239.6,72.1 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M239.6,422.4 L239.6,413.4 M239.6,72.1 L239.6,81.1 '/> <g transform="translate(239.6,444.3)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text><tspan font-family="Arial" > 10</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M323.5,422.4 L323.5,72.1 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M323.5,422.4 L323.5,413.4 M323.5,72.1 L323.5,81.1 '/> <g transform="translate(323.5,444.3)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text><tspan font-family="Arial" > 15</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M407.3,422.4 L407.3,301.3 M407.3,193.3 L407.3,72.1 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M407.3,422.4 L407.3,413.4 M407.3,72.1 L407.3,81.1 '/> <g transform="translate(407.3,444.3)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text><tspan font-family="Arial" > 20</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M491.2,422.4 L491.2,301.3 M491.2,193.3 L491.2,72.1 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M491.2,422.4 L491.2,413.4 M491.2,72.1 L491.2,81.1 '/> <g transform="translate(491.2,444.3)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text><tspan font-family="Arial" > 25</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M575.0,422.4 L575.0,72.1 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M575.0,422.4 L575.0,413.4 M575.0,72.1 L575.0,81.1 '/> <g transform="translate(575.0,444.3)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text><tspan font-family="Arial" > 30</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M71.9,72.1 L71.9,422.4 L575.0,422.4 L575.0,72.1 L71.9,72.1 Z '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(19.0,247.3) rotate(270)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text><tspan font-family="Arial" >packet arrival [%]</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(323.4,471.3)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text><tspan font-family="Arial" >30s steps [-]</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(323.4,31.0)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text>Mobility1 test of 50 nodes. Start inside 1x1km square.</text>
</g>
<g transform="translate(323.4,49.0)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text>Step duration is 30 seconds. Step width is 0-30m. 100MBit/s - 1ms latency links.</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g id="gnuplot_plot_1" ><title>v0.3.16 [%]</title>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(482.1,226.2)" stroke="none" fill="black" font-family="Helvetica" font-size="18.00" text-anchor="end">
<text><tspan font-family="Helvetica" >v0.3.16 [%]</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='rgb(192, 128, 255)' d='M494.7,220.3 L554.1,220.3 M71.9,100.1 L88.7,355.8 L105.4,292.8 L122.2,228.0 L139.0,317.3 L155.8,343.6
L172.5,117.6 L189.3,170.2 L206.1,291.0 L222.8,207.0 L239.6,182.4 L256.4,184.2 L273.1,331.3 L289.9,189.5
L306.7,177.2 L323.5,143.9 L340.2,310.3 L357.0,170.2 L373.8,170.2 L390.5,140.4 L407.3,201.7 L424.1,173.7
L440.8,124.6 L457.6,152.7 L474.4,331.3 L491.2,298.0 L507.9,180.7 L524.7,243.7 L541.5,98.4 L558.2,193.0
'/> <use xlink:href='#gpPt0' transform='translate(71.9,100.1) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(88.7,355.8) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(105.4,292.8) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(122.2,228.0) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(139.0,317.3) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(155.8,343.6) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(172.5,117.6) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(189.3,170.2) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(206.1,291.0) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(222.8,207.0) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(239.6,182.4) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(256.4,184.2) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(273.1,331.3) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(289.9,189.5) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(306.7,177.2) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(323.5,143.9) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(340.2,310.3) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(357.0,170.2) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(373.8,170.2) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(390.5,140.4) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(407.3,201.7) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(424.1,173.7) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(440.8,124.6) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(457.6,152.7) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(474.4,331.3) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(491.2,298.0) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(507.9,180.7) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(524.7,243.7) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(541.5,98.4) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(558.2,193.0) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(524.4,220.3) scale(4.50)' color='rgb(192, 128, 255)'/>
</g>
</g>
<g id="gnuplot_plot_2" ><title>v0.4rc3 [%]</title>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(482.1,280.2)" stroke="none" fill="black" font-family="Helvetica" font-size="18.00" text-anchor="end">
<text><tspan font-family="Helvetica" >v0.4rc3 [%]</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='rgb( 0, 100, 0)' d='M494.7,274.3 L554.1,274.3 M71.9,72.1 L88.7,72.1 L105.4,72.1 L122.2,72.1 L139.0,72.1 L155.8,72.1
L172.5,72.1 L189.3,72.1 L206.1,72.1 L222.8,72.1 L239.6,72.1 L256.4,72.1 L273.1,72.1 L289.9,72.1
L306.7,72.1 L323.5,72.1 L340.2,72.1 L357.0,72.1 L373.8,72.1 L390.5,72.1 L407.3,72.1 L424.1,72.1
L440.8,72.1 L457.6,72.1 L474.4,72.1 L491.2,72.1 L507.9,72.1 L524.7,72.1 L541.5,72.1 L558.2,72.1
'/> <use xlink:href='#gpPt1' transform='translate(71.9,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(88.7,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(105.4,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(122.2,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(139.0,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(155.8,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(172.5,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(189.3,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(206.1,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(222.8,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(239.6,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(256.4,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(273.1,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(289.9,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(306.7,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(323.5,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(340.2,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(357.0,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(373.8,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(390.5,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(407.3,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(424.1,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(440.8,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(457.6,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(474.4,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(491.2,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(507.9,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(524.7,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(541.5,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(558.2,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(524.4,274.3) scale(4.50)' color='rgb( 0, 100, 0)'/>
</g>
</g>
<g fill="none" color="#FFFFFF" stroke="rgb( 0, 100, 0)" stroke-width="6.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="6.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M71.9,72.1 L71.9,422.4 L575.0,422.4 L575.0,72.1 L71.9,72.1 Z '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 25 KiB

View File

@ -0,0 +1,337 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<svg
width="600" height="480"
viewBox="0 0 600 480"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
>
<title>Gnuplot</title>
<desc>Produced by GNUPLOT 5.2 patchlevel 8 </desc>
<g id="gnuplot_canvas">
<rect x="0" y="0" width="600" height="480" fill="#ffffff"/>
<defs>
<circle id='gpDot' r='0.5' stroke-width='0.5' stroke='currentColor'/>
<path id='gpPt0' stroke-width='0.222' stroke='currentColor' d='M-1,0 h2 M0,-1 v2'/>
<path id='gpPt1' stroke-width='0.222' stroke='currentColor' d='M-1,-1 L1,1 M1,-1 L-1,1'/>
<path id='gpPt2' stroke-width='0.222' stroke='currentColor' d='M-1,0 L1,0 M0,-1 L0,1 M-1,-1 L1,1 M-1,1 L1,-1'/>
<rect id='gpPt3' stroke-width='0.222' stroke='currentColor' x='-1' y='-1' width='2' height='2'/>
<rect id='gpPt4' stroke-width='0.222' stroke='currentColor' fill='currentColor' x='-1' y='-1' width='2' height='2'/>
<circle id='gpPt5' stroke-width='0.222' stroke='currentColor' cx='0' cy='0' r='1'/>
<use xlink:href='#gpPt5' id='gpPt6' fill='currentColor' stroke='none'/>
<path id='gpPt7' stroke-width='0.222' stroke='currentColor' d='M0,-1.33 L-1.33,0.67 L1.33,0.67 z'/>
<use xlink:href='#gpPt7' id='gpPt8' fill='currentColor' stroke='none'/>
<use xlink:href='#gpPt7' id='gpPt9' stroke='currentColor' transform='rotate(180)'/>
<use xlink:href='#gpPt9' id='gpPt10' fill='currentColor' stroke='none'/>
<use xlink:href='#gpPt3' id='gpPt11' stroke='currentColor' transform='rotate(45)'/>
<use xlink:href='#gpPt11' id='gpPt12' fill='currentColor' stroke='none'/>
<path id='gpPt13' stroke-width='0.222' stroke='currentColor' d='M0,1.330 L1.265,0.411 L0.782,-1.067 L-0.782,-1.076 L-1.265,0.411 z'/>
<use xlink:href='#gpPt13' id='gpPt14' fill='currentColor' stroke='none'/>
<filter id='textbox' filterUnits='objectBoundingBox' x='0' y='0' height='1' width='1'>
<feFlood flood-color='#FFFFFF' flood-opacity='1' result='bgnd'/>
<feComposite in='SourceGraphic' in2='bgnd' operator='atop'/>
</filter>
<filter id='greybox' filterUnits='objectBoundingBox' x='0' y='0' height='1' width='1'>
<feFlood flood-color='lightgrey' flood-opacity='1' result='grey'/>
<feComposite in='SourceGraphic' in2='grey' operator='atop'/>
</filter>
</defs>
<g fill="none" color="#FFFFFF" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M71.9,422.4 L575.0,422.4 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M71.9,422.4 L80.9,422.4 M575.0,422.4 L566.0,422.4 '/> <g transform="translate(63.6,426.3)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
<text><tspan font-family="Arial" > 0</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M71.9,352.3 L575.0,352.3 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M71.9,352.3 L80.9,352.3 M575.0,352.3 L566.0,352.3 '/> <g transform="translate(63.6,356.2)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
<text><tspan font-family="Arial" > 20</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M71.9,282.3 L343.5,282.3 M566.7,282.3 L575.0,282.3 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M71.9,282.3 L80.9,282.3 M575.0,282.3 L566.0,282.3 '/> <g transform="translate(63.6,286.2)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
<text><tspan font-family="Arial" > 40</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M71.9,212.2 L343.5,212.2 M566.7,212.2 L575.0,212.2 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M71.9,212.2 L80.9,212.2 M575.0,212.2 L566.0,212.2 '/> <g transform="translate(63.6,216.1)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
<text><tspan font-family="Arial" > 60</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M71.9,142.2 L575.0,142.2 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M71.9,142.2 L80.9,142.2 M575.0,142.2 L566.0,142.2 '/> <g transform="translate(63.6,146.1)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
<text><tspan font-family="Arial" > 80</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M71.9,72.1 L575.0,72.1 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M71.9,72.1 L80.9,72.1 M575.0,72.1 L566.0,72.1 '/> <g transform="translate(63.6,76.0)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
<text><tspan font-family="Arial" > 100</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M71.9,422.4 L71.9,72.1 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M71.9,422.4 L71.9,413.4 M71.9,72.1 L71.9,81.1 '/> <g transform="translate(71.9,444.3)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text><tspan font-family="Arial" > 0</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M155.8,422.4 L155.8,72.1 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M155.8,422.4 L155.8,413.4 M155.8,72.1 L155.8,81.1 '/> <g transform="translate(155.8,444.3)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text><tspan font-family="Arial" > 5</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M239.6,422.4 L239.6,72.1 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M239.6,422.4 L239.6,413.4 M239.6,72.1 L239.6,81.1 '/> <g transform="translate(239.6,444.3)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text><tspan font-family="Arial" > 10</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M323.5,422.4 L323.5,72.1 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M323.5,422.4 L323.5,413.4 M323.5,72.1 L323.5,81.1 '/> <g transform="translate(323.5,444.3)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text><tspan font-family="Arial" > 15</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M407.3,422.4 L407.3,301.3 M407.3,193.3 L407.3,72.1 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M407.3,422.4 L407.3,413.4 M407.3,72.1 L407.3,81.1 '/> <g transform="translate(407.3,444.3)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text><tspan font-family="Arial" > 20</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M491.2,422.4 L491.2,301.3 M491.2,193.3 L491.2,72.1 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M491.2,422.4 L491.2,413.4 M491.2,72.1 L491.2,81.1 '/> <g transform="translate(491.2,444.3)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text><tspan font-family="Arial" > 25</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M575.0,422.4 L575.0,72.1 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M575.0,422.4 L575.0,413.4 M575.0,72.1 L575.0,81.1 '/> <g transform="translate(575.0,444.3)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text><tspan font-family="Arial" > 30</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M71.9,72.1 L71.9,422.4 L575.0,422.4 L575.0,72.1 L71.9,72.1 Z '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(19.0,247.3) rotate(270)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text><tspan font-family="Arial" >packet arrival [%]</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(323.4,471.3)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text><tspan font-family="Arial" >30s steps [-]</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(323.4,31.0)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text>Mobility1 test of 50 nodes. Start inside 1x1km square.</text>
</g>
<g transform="translate(323.4,49.0)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text>Step duration is 30 seconds. Step width is 0-60m. 100MBit/s - 1ms latency links.</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g id="gnuplot_plot_1" ><title>v0.3.16 [%]</title>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(482.1,226.2)" stroke="none" fill="black" font-family="Helvetica" font-size="18.00" text-anchor="end">
<text><tspan font-family="Helvetica" >v0.3.16 [%]</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='rgb(192, 128, 255)' d='M494.7,220.3 L554.1,220.3 M71.9,142.2 L88.7,133.4 L105.4,194.7 L122.2,312.1 L139.0,212.2 L155.8,217.5
L172.5,354.1 L189.3,170.2 L206.1,184.2 L222.8,299.8 L239.6,164.9 L256.4,164.9 L273.1,298.0 L289.9,270.0
L306.7,243.7 L323.5,238.5 L340.2,250.8 L357.0,168.4 L373.8,194.7 L390.5,129.9 L407.3,194.7 L424.1,259.5
L440.8,222.7 L457.6,221.0 L474.4,185.9 L491.2,201.7 L507.9,189.5 L524.7,147.4 L541.5,159.7 L558.2,201.7
'/> <use xlink:href='#gpPt0' transform='translate(71.9,142.2) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(88.7,133.4) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(105.4,194.7) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(122.2,312.1) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(139.0,212.2) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(155.8,217.5) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(172.5,354.1) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(189.3,170.2) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(206.1,184.2) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(222.8,299.8) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(239.6,164.9) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(256.4,164.9) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(273.1,298.0) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(289.9,270.0) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(306.7,243.7) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(323.5,238.5) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(340.2,250.8) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(357.0,168.4) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(373.8,194.7) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(390.5,129.9) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(407.3,194.7) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(424.1,259.5) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(440.8,222.7) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(457.6,221.0) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(474.4,185.9) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(491.2,201.7) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(507.9,189.5) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(524.7,147.4) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(541.5,159.7) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(558.2,201.7) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(524.4,220.3) scale(4.50)' color='rgb(192, 128, 255)'/>
</g>
</g>
<g id="gnuplot_plot_2" ><title>v0.4rc3 [%]</title>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(482.1,280.2)" stroke="none" fill="black" font-family="Helvetica" font-size="18.00" text-anchor="end">
<text><tspan font-family="Helvetica" >v0.4rc3 [%]</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='rgb( 0, 100, 0)' d='M494.7,274.3 L554.1,274.3 M71.9,72.1 L88.7,72.1 L105.4,72.1 L122.2,72.1 L139.0,72.1 L155.8,72.1
L172.5,72.1 L189.3,72.1 L206.1,72.1 L222.8,72.1 L239.6,72.1 L256.4,72.1 L273.1,72.1 L289.9,72.1
L306.7,72.1 L323.5,72.1 L340.2,72.1 L357.0,72.1 L373.8,72.1 L390.5,72.1 L407.3,72.1 L424.1,72.1
L440.8,72.1 L457.6,72.1 L474.4,72.1 L491.2,72.1 L507.9,72.1 L524.7,72.1 L541.5,72.1 L558.2,72.1
'/> <use xlink:href='#gpPt1' transform='translate(71.9,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(88.7,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(105.4,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(122.2,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(139.0,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(155.8,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(172.5,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(189.3,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(206.1,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(222.8,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(239.6,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(256.4,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(273.1,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(289.9,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(306.7,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(323.5,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(340.2,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(357.0,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(373.8,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(390.5,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(407.3,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(424.1,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(440.8,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(457.6,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(474.4,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(491.2,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(507.9,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(524.7,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(541.5,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(558.2,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(524.4,274.3) scale(4.50)' color='rgb( 0, 100, 0)'/>
</g>
</g>
<g fill="none" color="#FFFFFF" stroke="rgb( 0, 100, 0)" stroke-width="6.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="6.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M71.9,72.1 L71.9,422.4 L575.0,422.4 L575.0,72.1 L71.9,72.1 Z '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 25 KiB

View File

@ -0,0 +1,430 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<svg
width="600" height="480"
viewBox="0 0 600 480"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
>
<title>Gnuplot</title>
<desc>Produced by GNUPLOT 5.2 patchlevel 8 </desc>
<g id="gnuplot_canvas">
<rect x="0" y="0" width="600" height="480" fill="#ffffff"/>
<defs>
<circle id='gpDot' r='0.5' stroke-width='0.5' stroke='currentColor'/>
<path id='gpPt0' stroke-width='0.222' stroke='currentColor' d='M-1,0 h2 M0,-1 v2'/>
<path id='gpPt1' stroke-width='0.222' stroke='currentColor' d='M-1,-1 L1,1 M1,-1 L-1,1'/>
<path id='gpPt2' stroke-width='0.222' stroke='currentColor' d='M-1,0 L1,0 M0,-1 L0,1 M-1,-1 L1,1 M-1,1 L1,-1'/>
<rect id='gpPt3' stroke-width='0.222' stroke='currentColor' x='-1' y='-1' width='2' height='2'/>
<rect id='gpPt4' stroke-width='0.222' stroke='currentColor' fill='currentColor' x='-1' y='-1' width='2' height='2'/>
<circle id='gpPt5' stroke-width='0.222' stroke='currentColor' cx='0' cy='0' r='1'/>
<use xlink:href='#gpPt5' id='gpPt6' fill='currentColor' stroke='none'/>
<path id='gpPt7' stroke-width='0.222' stroke='currentColor' d='M0,-1.33 L-1.33,0.67 L1.33,0.67 z'/>
<use xlink:href='#gpPt7' id='gpPt8' fill='currentColor' stroke='none'/>
<use xlink:href='#gpPt7' id='gpPt9' stroke='currentColor' transform='rotate(180)'/>
<use xlink:href='#gpPt9' id='gpPt10' fill='currentColor' stroke='none'/>
<use xlink:href='#gpPt3' id='gpPt11' stroke='currentColor' transform='rotate(45)'/>
<use xlink:href='#gpPt11' id='gpPt12' fill='currentColor' stroke='none'/>
<path id='gpPt13' stroke-width='0.222' stroke='currentColor' d='M0,1.330 L1.265,0.411 L0.782,-1.067 L-0.782,-1.076 L-1.265,0.411 z'/>
<use xlink:href='#gpPt13' id='gpPt14' fill='currentColor' stroke='none'/>
<filter id='textbox' filterUnits='objectBoundingBox' x='0' y='0' height='1' width='1'>
<feFlood flood-color='#FFFFFF' flood-opacity='1' result='bgnd'/>
<feComposite in='SourceGraphic' in2='bgnd' operator='atop'/>
</filter>
<filter id='greybox' filterUnits='objectBoundingBox' x='0' y='0' height='1' width='1'>
<feFlood flood-color='lightgrey' flood-opacity='1' result='grey'/>
<feComposite in='SourceGraphic' in2='grey' operator='atop'/>
</filter>
</defs>
<g fill="none" color="#FFFFFF" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M71.9,444.0 L575.0,444.0 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M71.9,444.0 L80.9,444.0 M575.0,444.0 L566.0,444.0 '/> <g transform="translate(63.6,447.9)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
<text><tspan font-family="Arial" > 0</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M71.9,376.8 L575.0,376.8 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M71.9,376.8 L80.9,376.8 M575.0,376.8 L566.0,376.8 '/> <g transform="translate(63.6,380.7)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
<text><tspan font-family="Arial" > 20</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M71.9,309.6 L575.0,309.6 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M71.9,309.6 L80.9,309.6 M575.0,309.6 L566.0,309.6 '/> <g transform="translate(63.6,313.5)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
<text><tspan font-family="Arial" > 40</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M71.9,242.5 L575.0,242.5 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M71.9,242.5 L80.9,242.5 M575.0,242.5 L566.0,242.5 '/> <g transform="translate(63.6,246.4)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
<text><tspan font-family="Arial" > 60</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M71.9,175.3 L343.5,175.3 M566.7,175.3 L575.0,175.3 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M71.9,175.3 L80.9,175.3 M575.0,175.3 L566.0,175.3 '/> <g transform="translate(63.6,179.2)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
<text><tspan font-family="Arial" > 80</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M71.9,108.1 L575.0,108.1 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M71.9,108.1 L80.9,108.1 M575.0,108.1 L566.0,108.1 '/> <g transform="translate(63.6,112.0)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
<text><tspan font-family="Arial" > 100</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M71.9,444.0 L71.9,108.1 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M71.9,444.0 L71.9,435.0 M71.9,108.1 L71.9,117.1 '/> <g transform="translate(71.9,465.9)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text><tspan font-family="Arial" > 0</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M122.2,444.0 L122.2,108.1 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M122.2,444.0 L122.2,435.0 M122.2,108.1 L122.2,117.1 '/> <g transform="translate(122.2,465.9)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text><tspan font-family="Arial" > 5</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M172.5,444.0 L172.5,108.1 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M172.5,444.0 L172.5,435.0 M172.5,108.1 L172.5,117.1 '/> <g transform="translate(172.5,465.9)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text><tspan font-family="Arial" > 10</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M222.8,444.0 L222.8,108.1 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M222.8,444.0 L222.8,435.0 M222.8,108.1 L222.8,117.1 '/> <g transform="translate(222.8,465.9)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text><tspan font-family="Arial" > 15</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M273.1,444.0 L273.1,108.1 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M273.1,444.0 L273.1,435.0 M273.1,108.1 L273.1,117.1 '/> <g transform="translate(273.1,465.9)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text><tspan font-family="Arial" > 20</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M323.5,444.0 L323.5,108.1 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M323.5,444.0 L323.5,435.0 M323.5,108.1 L323.5,117.1 '/> <g transform="translate(323.5,465.9)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text><tspan font-family="Arial" > 25</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M373.8,444.0 L373.8,225.1 M373.8,117.1 L373.8,108.1 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M373.8,444.0 L373.8,435.0 M373.8,108.1 L373.8,117.1 '/> <g transform="translate(373.8,465.9)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text><tspan font-family="Arial" > 30</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M424.1,444.0 L424.1,225.1 M424.1,117.1 L424.1,108.1 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M424.1,444.0 L424.1,435.0 M424.1,108.1 L424.1,117.1 '/> <g transform="translate(424.1,465.9)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text><tspan font-family="Arial" > 35</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M474.4,444.0 L474.4,225.1 M474.4,117.1 L474.4,108.1 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M474.4,444.0 L474.4,435.0 M474.4,108.1 L474.4,117.1 '/> <g transform="translate(474.4,465.9)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text><tspan font-family="Arial" > 40</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M524.7,444.0 L524.7,225.1 M524.7,117.1 L524.7,108.1 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M524.7,444.0 L524.7,435.0 M524.7,108.1 L524.7,117.1 '/> <g transform="translate(524.7,465.9)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text><tspan font-family="Arial" > 45</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M575.0,444.0 L575.0,108.1 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M575.0,444.0 L575.0,435.0 M575.0,108.1 L575.0,117.1 '/> <g transform="translate(575.0,465.9)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text><tspan font-family="Arial" > 50</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M71.9,108.1 L71.9,444.0 L575.0,444.0 L575.0,108.1 L71.9,108.1 Z '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(19.0,276.1) rotate(270)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text><tspan font-family="Arial" >packet arrival [%]</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(323.4,31.0)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text>Mobility2 Test for 50 randomly placed nodes in a 1x1km square.</text>
</g>
<g transform="translate(323.4,49.0)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text>Move in random directions of 50-400m in 50m increments.</text>
</g>
<g transform="translate(323.4,67.0)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text>Wait and measure ping arrival over 60s in 10s intervals each time.</text>
</g>
<g transform="translate(323.4,85.0)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text>100MBit/s - 1ms latency links.</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g id="gnuplot_plot_1" ><title>v0.3.16 [%]</title>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(482.1,150.0)" stroke="none" fill="black" font-family="Helvetica" font-size="18.00" text-anchor="end">
<text><tspan font-family="Helvetica" >v0.3.16 [%]</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='rgb(192, 128, 255)' d='M494.7,144.1 L554.1,144.1 M71.9,386.9 L82.0,398.7 L92.0,267.7 L102.1,376.8 L112.1,391.9 L122.2,313.0
L132.3,410.4 L142.3,408.7 L152.4,405.4 L162.5,381.9 L172.5,397.0 L182.6,383.5 L192.6,366.7 L202.7,370.1
L212.8,391.9 L222.8,338.2 L232.9,338.2 L243.0,313.0 L253.0,343.2 L263.1,355.0 L273.1,371.8 L283.2,296.2
L293.3,333.2 L303.3,329.8 L313.4,349.9 L323.5,333.2 L333.5,272.7 L343.6,326.4 L353.6,338.2 L363.7,297.9
L373.8,373.5 L383.8,336.5 L393.9,381.9 L403.9,358.3 L414.0,353.3 L424.1,355.0 L434.1,373.5 L444.2,383.5
L454.3,353.3 L464.3,358.3 L474.4,371.8 L484.4,356.7 L494.5,395.3 L504.6,371.8 L514.6,366.7 L524.7,363.4
L534.8,314.7 L544.8,358.3 '/> <use xlink:href='#gpPt0' transform='translate(71.9,386.9) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(82.0,398.7) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(92.0,267.7) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(102.1,376.8) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(112.1,391.9) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(122.2,313.0) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(132.3,410.4) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(142.3,408.7) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(152.4,405.4) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(162.5,381.9) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(172.5,397.0) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(182.6,383.5) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(192.6,366.7) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(202.7,370.1) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(212.8,391.9) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(222.8,338.2) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(232.9,338.2) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(243.0,313.0) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(253.0,343.2) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(263.1,355.0) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(273.1,371.8) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(283.2,296.2) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(293.3,333.2) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(303.3,329.8) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(313.4,349.9) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(323.5,333.2) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(333.5,272.7) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(343.6,326.4) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(353.6,338.2) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(363.7,297.9) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(373.8,373.5) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(383.8,336.5) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(393.9,381.9) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(403.9,358.3) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(414.0,353.3) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(424.1,355.0) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(434.1,373.5) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(444.2,383.5) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(454.3,353.3) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(464.3,358.3) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(474.4,371.8) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(484.4,356.7) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(494.5,395.3) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(504.6,371.8) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(514.6,366.7) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(524.7,363.4) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(534.8,314.7) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(544.8,358.3) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(524.4,144.1) scale(4.50)' color='rgb(192, 128, 255)'/>
</g>
</g>
<g id="gnuplot_plot_2" ><title>v0.4rc3 [%]</title>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(482.1,204.0)" stroke="none" fill="black" font-family="Helvetica" font-size="18.00" text-anchor="end">
<text><tspan font-family="Helvetica" >v0.4rc3 [%]</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='rgb( 0, 100, 0)' d='M494.7,198.1 L554.1,198.1 M71.9,108.1 L82.0,108.1 L92.0,108.1 L102.1,108.1 L112.1,108.1 L122.2,108.1
L132.3,108.1 L142.3,108.1 L152.4,108.1 L162.5,108.1 L172.5,108.1 L182.6,108.1 L192.6,108.1 L202.7,108.1
L212.8,119.9 L222.8,108.1 L232.9,109.8 L243.0,108.1 L253.0,148.4 L263.1,111.5 L273.1,108.1 L283.2,108.1
L293.3,108.1 L303.3,108.1 L313.4,108.1 L323.5,108.1 L333.5,118.2 L343.6,128.3 L353.6,109.8 L363.7,116.5
L373.8,114.8 L383.8,128.3 L393.9,109.8 L403.9,124.9 L414.0,108.1 L424.1,108.1 L434.1,108.1 L444.2,108.1
L454.3,108.1 L464.3,116.5 L474.4,111.5 L484.4,108.1 L494.5,108.1 L504.6,108.1 L514.6,108.1 L524.7,135.0
L534.8,109.8 L544.8,108.1 '/> <use xlink:href='#gpPt1' transform='translate(71.9,108.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(82.0,108.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(92.0,108.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(102.1,108.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(112.1,108.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(122.2,108.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(132.3,108.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(142.3,108.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(152.4,108.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(162.5,108.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(172.5,108.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(182.6,108.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(192.6,108.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(202.7,108.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(212.8,119.9) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(222.8,108.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(232.9,109.8) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(243.0,108.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(253.0,148.4) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(263.1,111.5) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(273.1,108.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(283.2,108.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(293.3,108.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(303.3,108.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(313.4,108.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(323.5,108.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(333.5,118.2) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(343.6,128.3) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(353.6,109.8) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(363.7,116.5) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(373.8,114.8) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(383.8,128.3) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(393.9,109.8) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(403.9,124.9) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(414.0,108.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(424.1,108.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(434.1,108.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(444.2,108.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(454.3,108.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(464.3,116.5) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(474.4,111.5) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(484.4,108.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(494.5,108.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(504.6,108.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(514.6,108.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(524.7,135.0) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(534.8,109.8) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(544.8,108.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(524.4,198.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
</g>
</g>
<g fill="none" color="#FFFFFF" stroke="rgb( 0, 100, 0)" stroke-width="6.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="6.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M71.9,108.1 L71.9,444.0 L575.0,444.0 L575.0,108.1 L71.9,108.1 Z '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 33 KiB

View File

@ -0,0 +1,443 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<svg
width="600" height="480"
viewBox="0 0 600 480"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
>
<title>Gnuplot</title>
<desc>Produced by GNUPLOT 5.2 patchlevel 8 </desc>
<g id="gnuplot_canvas">
<rect x="0" y="0" width="600" height="480" fill="#ffffff"/>
<defs>
<circle id='gpDot' r='0.5' stroke-width='0.5' stroke='currentColor'/>
<path id='gpPt0' stroke-width='0.222' stroke='currentColor' d='M-1,0 h2 M0,-1 v2'/>
<path id='gpPt1' stroke-width='0.222' stroke='currentColor' d='M-1,-1 L1,1 M1,-1 L-1,1'/>
<path id='gpPt2' stroke-width='0.222' stroke='currentColor' d='M-1,0 L1,0 M0,-1 L0,1 M-1,-1 L1,1 M-1,1 L1,-1'/>
<rect id='gpPt3' stroke-width='0.222' stroke='currentColor' x='-1' y='-1' width='2' height='2'/>
<rect id='gpPt4' stroke-width='0.222' stroke='currentColor' fill='currentColor' x='-1' y='-1' width='2' height='2'/>
<circle id='gpPt5' stroke-width='0.222' stroke='currentColor' cx='0' cy='0' r='1'/>
<use xlink:href='#gpPt5' id='gpPt6' fill='currentColor' stroke='none'/>
<path id='gpPt7' stroke-width='0.222' stroke='currentColor' d='M0,-1.33 L-1.33,0.67 L1.33,0.67 z'/>
<use xlink:href='#gpPt7' id='gpPt8' fill='currentColor' stroke='none'/>
<use xlink:href='#gpPt7' id='gpPt9' stroke='currentColor' transform='rotate(180)'/>
<use xlink:href='#gpPt9' id='gpPt10' fill='currentColor' stroke='none'/>
<use xlink:href='#gpPt3' id='gpPt11' stroke='currentColor' transform='rotate(45)'/>
<use xlink:href='#gpPt11' id='gpPt12' fill='currentColor' stroke='none'/>
<path id='gpPt13' stroke-width='0.222' stroke='currentColor' d='M0,1.330 L1.265,0.411 L0.782,-1.067 L-0.782,-1.076 L-1.265,0.411 z'/>
<use xlink:href='#gpPt13' id='gpPt14' fill='currentColor' stroke='none'/>
<filter id='textbox' filterUnits='objectBoundingBox' x='0' y='0' height='1' width='1'>
<feFlood flood-color='#FFFFFF' flood-opacity='1' result='bgnd'/>
<feComposite in='SourceGraphic' in2='bgnd' operator='atop'/>
</filter>
<filter id='greybox' filterUnits='objectBoundingBox' x='0' y='0' height='1' width='1'>
<feFlood flood-color='lightgrey' flood-opacity='1' result='grey'/>
<feComposite in='SourceGraphic' in2='grey' operator='atop'/>
</filter>
</defs>
<g fill="none" color="#FFFFFF" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M71.9,444.0 L575.0,444.0 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M71.9,444.0 L80.9,444.0 M575.0,444.0 L566.0,444.0 '/> <g transform="translate(63.6,447.9)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
<text><tspan font-family="Arial" > 0</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M71.9,388.0 L575.0,388.0 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M71.9,388.0 L80.9,388.0 M575.0,388.0 L566.0,388.0 '/> <g transform="translate(63.6,391.9)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
<text><tspan font-family="Arial" > 100</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M71.9,332.0 L575.0,332.0 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M71.9,332.0 L80.9,332.0 M575.0,332.0 L566.0,332.0 '/> <g transform="translate(63.6,335.9)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
<text><tspan font-family="Arial" > 200</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M71.9,276.0 L575.0,276.0 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M71.9,276.0 L80.9,276.0 M575.0,276.0 L566.0,276.0 '/> <g transform="translate(63.6,279.9)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
<text><tspan font-family="Arial" > 300</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M71.9,220.1 L343.5,220.1 M566.7,220.1 L575.0,220.1 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M71.9,220.1 L80.9,220.1 M575.0,220.1 L566.0,220.1 '/> <g transform="translate(63.6,224.0)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
<text><tspan font-family="Arial" > 400</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M71.9,164.1 L343.5,164.1 M566.7,164.1 L575.0,164.1 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M71.9,164.1 L80.9,164.1 M575.0,164.1 L566.0,164.1 '/> <g transform="translate(63.6,168.0)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
<text><tspan font-family="Arial" > 500</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M71.9,108.1 L575.0,108.1 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M71.9,108.1 L80.9,108.1 M575.0,108.1 L566.0,108.1 '/> <g transform="translate(63.6,112.0)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
<text><tspan font-family="Arial" > 600</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M71.9,444.0 L71.9,108.1 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M71.9,444.0 L71.9,435.0 M71.9,108.1 L71.9,117.1 '/> <g transform="translate(71.9,465.9)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text><tspan font-family="Arial" > 0</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M122.2,444.0 L122.2,108.1 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M122.2,444.0 L122.2,435.0 M122.2,108.1 L122.2,117.1 '/> <g transform="translate(122.2,465.9)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text><tspan font-family="Arial" > 5</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M172.5,444.0 L172.5,108.1 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M172.5,444.0 L172.5,435.0 M172.5,108.1 L172.5,117.1 '/> <g transform="translate(172.5,465.9)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text><tspan font-family="Arial" > 10</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M222.8,444.0 L222.8,108.1 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M222.8,444.0 L222.8,435.0 M222.8,108.1 L222.8,117.1 '/> <g transform="translate(222.8,465.9)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text><tspan font-family="Arial" > 15</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M273.1,444.0 L273.1,108.1 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M273.1,444.0 L273.1,435.0 M273.1,108.1 L273.1,117.1 '/> <g transform="translate(273.1,465.9)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text><tspan font-family="Arial" > 20</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M323.5,444.0 L323.5,108.1 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M323.5,444.0 L323.5,435.0 M323.5,108.1 L323.5,117.1 '/> <g transform="translate(323.5,465.9)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text><tspan font-family="Arial" > 25</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M373.8,444.0 L373.8,225.1 M373.8,117.1 L373.8,108.1 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M373.8,444.0 L373.8,435.0 M373.8,108.1 L373.8,117.1 '/> <g transform="translate(373.8,465.9)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text><tspan font-family="Arial" > 30</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M424.1,444.0 L424.1,225.1 M424.1,117.1 L424.1,108.1 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M424.1,444.0 L424.1,435.0 M424.1,108.1 L424.1,117.1 '/> <g transform="translate(424.1,465.9)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text><tspan font-family="Arial" > 35</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M474.4,444.0 L474.4,225.1 M474.4,117.1 L474.4,108.1 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M474.4,444.0 L474.4,435.0 M474.4,108.1 L474.4,117.1 '/> <g transform="translate(474.4,465.9)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text><tspan font-family="Arial" > 40</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M524.7,444.0 L524.7,225.1 M524.7,117.1 L524.7,108.1 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M524.7,444.0 L524.7,435.0 M524.7,108.1 L524.7,117.1 '/> <g transform="translate(524.7,465.9)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text><tspan font-family="Arial" > 45</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M575.0,444.0 L575.0,108.1 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M575.0,444.0 L575.0,435.0 M575.0,108.1 L575.0,117.1 '/> <g transform="translate(575.0,465.9)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text><tspan font-family="Arial" > 50</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M71.9,108.1 L71.9,444.0 L575.0,444.0 L575.0,108.1 L71.9,108.1 Z '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(19.0,276.1) rotate(270)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text><tspan font-family="Arial" >tx traffic per node [KB/s]</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(323.4,31.0)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text>Mobility2 Test for 50 randomly placed nodes in a 1x1km square.</text>
</g>
<g transform="translate(323.4,49.0)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text>Move in random directions of 50-400m in 50m increments.</text>
</g>
<g transform="translate(323.4,67.0)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text>Wait and measure ping arrival over 60s in 10s intervals each time.</text>
</g>
<g transform="translate(323.4,85.0)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text>100MBit/s - 1ms latency links.</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g id="gnuplot_plot_1" ><title>v0.3.16 [%]</title>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(482.1,150.0)" stroke="none" fill="black" font-family="Helvetica" font-size="18.00" text-anchor="end">
<text><tspan font-family="Helvetica" >v0.3.16 [%]</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='rgb(192, 128, 255)' d='M494.7,144.1 L554.1,144.1 M71.9,437.7 L82.0,438.8 L92.0,387.7 L102.1,197.2 L112.1,415.1 L122.2,433.9
L132.3,434.2 L142.3,436.4 L152.4,143.5 L162.5,131.6 L172.5,434.8 L182.6,437.5 L192.6,433.7 L202.7,435.3
L212.8,433.5 L222.8,398.2 L232.9,435.1 L243.0,438.3 L253.0,318.2 L263.1,386.8 L273.1,290.1 L283.2,340.3
L293.3,438.4 L303.3,320.4 L313.4,437.2 L323.5,438.5 L333.5,403.7 L343.6,438.4 L353.6,369.4 L363.7,389.9
L373.8,437.8 L383.8,405.6 L393.9,436.3 L403.9,395.7 L414.0,433.6 L424.1,437.6 L434.1,298.5 L444.2,436.2
L454.3,436.5 L464.3,437.5 L474.4,435.3 L484.4,436.6 L494.5,422.5 L504.6,236.8 L514.6,307.7 L524.7,434.6
L534.8,435.4 L544.8,362.9 '/> <use xlink:href='#gpPt0' transform='translate(71.9,437.7) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(82.0,438.8) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(92.0,387.7) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(102.1,197.2) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(112.1,415.1) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(122.2,433.9) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(132.3,434.2) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(142.3,436.4) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(152.4,143.5) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(162.5,131.6) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(172.5,434.8) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(182.6,437.5) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(192.6,433.7) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(202.7,435.3) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(212.8,433.5) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(222.8,398.2) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(232.9,435.1) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(243.0,438.3) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(253.0,318.2) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(263.1,386.8) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(273.1,290.1) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(283.2,340.3) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(293.3,438.4) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(303.3,320.4) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(313.4,437.2) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(323.5,438.5) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(333.5,403.7) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(343.6,438.4) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(353.6,369.4) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(363.7,389.9) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(373.8,437.8) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(383.8,405.6) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(393.9,436.3) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(403.9,395.7) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(414.0,433.6) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(424.1,437.6) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(434.1,298.5) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(444.2,436.2) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(454.3,436.5) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(464.3,437.5) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(474.4,435.3) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(484.4,436.6) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(494.5,422.5) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(504.6,236.8) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(514.6,307.7) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(524.7,434.6) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(534.8,435.4) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(544.8,362.9) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(524.4,144.1) scale(4.50)' color='rgb(192, 128, 255)'/>
</g>
</g>
<g id="gnuplot_plot_2" ><title>v0.4rc3 [%]</title>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(482.1,204.0)" stroke="none" fill="black" font-family="Helvetica" font-size="18.00" text-anchor="end">
<text><tspan font-family="Helvetica" >v0.4rc3 [%]</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='rgb( 0, 100, 0)' d='M494.7,198.1 L554.1,198.1 M71.9,440.9 L82.0,439.1 L92.0,441.5 L102.1,441.2 L112.1,441.0 L122.2,440.7
L132.3,439.9 L142.3,440.3 L152.4,441.0 L162.5,441.0 L172.5,439.8 L182.6,438.1 L192.6,439.3 L202.7,438.2
L212.8,440.8 L222.8,438.0 L232.9,441.1 L243.0,441.0 L253.0,440.6 L263.1,438.6 L273.1,440.3 L283.2,441.1
L293.3,440.8 L303.3,438.1 L313.4,440.8 L323.5,440.5 L333.5,439.9 L343.6,441.1 L353.6,440.9 L363.7,441.3
L373.8,440.8 L383.8,440.8 L393.9,440.7 L403.9,441.1 L414.0,439.3 L424.1,440.9 L434.1,438.3 L444.2,441.3
L454.3,441.4 L464.3,441.3 L474.4,439.1 L484.4,440.4 L494.5,439.4 L504.6,440.9 L514.6,441.3 L524.7,440.6
L534.8,438.5 L544.8,440.5 '/> <use xlink:href='#gpPt1' transform='translate(71.9,440.9) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(82.0,439.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(92.0,441.5) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(102.1,441.2) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(112.1,441.0) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(122.2,440.7) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(132.3,439.9) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(142.3,440.3) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(152.4,441.0) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(162.5,441.0) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(172.5,439.8) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(182.6,438.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(192.6,439.3) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(202.7,438.2) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(212.8,440.8) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(222.8,438.0) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(232.9,441.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(243.0,441.0) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(253.0,440.6) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(263.1,438.6) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(273.1,440.3) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(283.2,441.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(293.3,440.8) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(303.3,438.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(313.4,440.8) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(323.5,440.5) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(333.5,439.9) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(343.6,441.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(353.6,440.9) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(363.7,441.3) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(373.8,440.8) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(383.8,440.8) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(393.9,440.7) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(403.9,441.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(414.0,439.3) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(424.1,440.9) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(434.1,438.3) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(444.2,441.3) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(454.3,441.4) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(464.3,441.3) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(474.4,439.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(484.4,440.4) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(494.5,439.4) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(504.6,440.9) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(514.6,441.3) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(524.7,440.6) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(534.8,438.5) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(544.8,440.5) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt1' transform='translate(524.4,198.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
</g>
</g>
<g fill="none" color="#FFFFFF" stroke="rgb( 0, 100, 0)" stroke-width="6.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="6.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M71.9,108.1 L71.9,444.0 L575.0,444.0 L575.0,108.1 L71.9,108.1 Z '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 34 KiB

View File

@ -0,0 +1,408 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<svg
width="600" height="480"
viewBox="0 0 600 480"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
>
<title>Gnuplot</title>
<desc>Produced by GNUPLOT 5.2 patchlevel 8 </desc>
<g id="gnuplot_canvas">
<rect x="0" y="0" width="600" height="480" fill="#ffffff"/>
<defs>
<circle id='gpDot' r='0.5' stroke-width='0.5' stroke='currentColor'/>
<path id='gpPt0' stroke-width='0.222' stroke='currentColor' d='M-1,0 h2 M0,-1 v2'/>
<path id='gpPt1' stroke-width='0.222' stroke='currentColor' d='M-1,-1 L1,1 M1,-1 L-1,1'/>
<path id='gpPt2' stroke-width='0.222' stroke='currentColor' d='M-1,0 L1,0 M0,-1 L0,1 M-1,-1 L1,1 M-1,1 L1,-1'/>
<rect id='gpPt3' stroke-width='0.222' stroke='currentColor' x='-1' y='-1' width='2' height='2'/>
<rect id='gpPt4' stroke-width='0.222' stroke='currentColor' fill='currentColor' x='-1' y='-1' width='2' height='2'/>
<circle id='gpPt5' stroke-width='0.222' stroke='currentColor' cx='0' cy='0' r='1'/>
<use xlink:href='#gpPt5' id='gpPt6' fill='currentColor' stroke='none'/>
<path id='gpPt7' stroke-width='0.222' stroke='currentColor' d='M0,-1.33 L-1.33,0.67 L1.33,0.67 z'/>
<use xlink:href='#gpPt7' id='gpPt8' fill='currentColor' stroke='none'/>
<use xlink:href='#gpPt7' id='gpPt9' stroke='currentColor' transform='rotate(180)'/>
<use xlink:href='#gpPt9' id='gpPt10' fill='currentColor' stroke='none'/>
<use xlink:href='#gpPt3' id='gpPt11' stroke='currentColor' transform='rotate(45)'/>
<use xlink:href='#gpPt11' id='gpPt12' fill='currentColor' stroke='none'/>
<path id='gpPt13' stroke-width='0.222' stroke='currentColor' d='M0,1.330 L1.265,0.411 L0.782,-1.067 L-0.782,-1.076 L-1.265,0.411 z'/>
<use xlink:href='#gpPt13' id='gpPt14' fill='currentColor' stroke='none'/>
<filter id='textbox' filterUnits='objectBoundingBox' x='0' y='0' height='1' width='1'>
<feFlood flood-color='#FFFFFF' flood-opacity='1' result='bgnd'/>
<feComposite in='SourceGraphic' in2='bgnd' operator='atop'/>
</filter>
<filter id='greybox' filterUnits='objectBoundingBox' x='0' y='0' height='1' width='1'>
<feFlood flood-color='lightgrey' flood-opacity='1' result='grey'/>
<feComposite in='SourceGraphic' in2='grey' operator='atop'/>
</filter>
</defs>
<g fill="none" color="#FFFFFF" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M71.9,422.4 L507.2,422.4 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M71.9,422.4 L80.9,422.4 '/> <g transform="translate(63.6,426.3)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
<text><tspan font-family="Arial" > 0</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M71.9,364.0 L507.2,364.0 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M71.9,364.0 L80.9,364.0 '/> <g transform="translate(63.6,367.9)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
<text><tspan font-family="Arial" > 0.5</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M71.9,305.6 L507.2,305.6 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M71.9,305.6 L80.9,305.6 '/> <g transform="translate(63.6,309.5)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
<text><tspan font-family="Arial" > 1</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M71.9,247.2 L507.2,247.2 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M71.9,247.2 L80.9,247.2 '/> <g transform="translate(63.6,251.1)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
<text><tspan font-family="Arial" > 1.5</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M71.9,188.9 L507.2,188.9 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M71.9,188.9 L80.9,188.9 '/> <g transform="translate(63.6,192.8)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
<text><tspan font-family="Arial" > 2</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M71.9,130.5 L282.4,130.5 M498.9,130.5 L507.2,130.5 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M71.9,130.5 L80.9,130.5 '/> <g transform="translate(63.6,134.4)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
<text><tspan font-family="Arial" > 2.5</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M71.9,72.1 L507.2,72.1 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M71.9,72.1 L80.9,72.1 '/> <g transform="translate(63.6,76.0)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
<text><tspan font-family="Arial" > 3</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M71.9,422.4 L71.9,72.1 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M71.9,422.4 L71.9,413.4 M71.9,72.1 L71.9,81.1 '/> <g transform="translate(71.9,444.3)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text><tspan font-family="Arial" > 0</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M144.5,422.4 L144.5,72.1 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M144.5,422.4 L144.5,413.4 M144.5,72.1 L144.5,81.1 '/> <g transform="translate(144.5,444.3)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text><tspan font-family="Arial" > 50</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M217.0,422.4 L217.0,72.1 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M217.0,422.4 L217.0,413.4 M217.0,72.1 L217.0,81.1 '/> <g transform="translate(217.0,444.3)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text><tspan font-family="Arial" > 100</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M289.6,422.4 L289.6,153.1 M289.6,81.1 L289.6,72.1 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M289.6,422.4 L289.6,413.4 M289.6,72.1 L289.6,81.1 '/> <g transform="translate(289.6,444.3)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text><tspan font-family="Arial" > 150</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M362.1,422.4 L362.1,153.1 M362.1,81.1 L362.1,72.1 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M362.1,422.4 L362.1,413.4 M362.1,72.1 L362.1,81.1 '/> <g transform="translate(362.1,444.3)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text><tspan font-family="Arial" > 200</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M434.7,422.4 L434.7,153.1 M434.7,81.1 L434.7,72.1 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M434.7,422.4 L434.7,413.4 M434.7,72.1 L434.7,81.1 '/> <g transform="translate(434.7,444.3)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text><tspan font-family="Arial" > 250</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M507.2,422.4 L507.2,72.1 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M507.2,422.4 L507.2,413.4 M507.2,72.1 L507.2,81.1 '/> <g transform="translate(507.2,444.3)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text><tspan font-family="Arial" > 300</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M507.2,422.4 L498.2,422.4 '/> <g transform="translate(515.5,426.3)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="start">
<text><tspan font-family="Arial" > 0</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M507.2,387.4 L498.2,387.4 '/> <g transform="translate(515.5,391.3)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="start">
<text><tspan font-family="Arial" > 10</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M507.2,352.3 L498.2,352.3 '/> <g transform="translate(515.5,356.2)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="start">
<text><tspan font-family="Arial" > 20</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M507.2,317.3 L498.2,317.3 '/> <g transform="translate(515.5,321.2)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="start">
<text><tspan font-family="Arial" > 30</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M507.2,282.3 L498.2,282.3 '/> <g transform="translate(515.5,286.2)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="start">
<text><tspan font-family="Arial" > 40</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M507.2,247.2 L498.2,247.2 '/> <g transform="translate(515.5,251.1)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="start">
<text><tspan font-family="Arial" > 50</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M507.2,212.2 L498.2,212.2 '/> <g transform="translate(515.5,216.1)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="start">
<text><tspan font-family="Arial" > 60</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M507.2,177.2 L498.2,177.2 '/> <g transform="translate(515.5,181.1)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="start">
<text><tspan font-family="Arial" > 70</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M507.2,142.2 L498.2,142.2 '/> <g transform="translate(515.5,146.1)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="start">
<text><tspan font-family="Arial" > 80</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M507.2,107.1 L498.2,107.1 '/> <g transform="translate(515.5,111.0)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="start">
<text><tspan font-family="Arial" > 90</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M507.2,72.1 L498.2,72.1 '/> <g transform="translate(515.5,76.0)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="start">
<text><tspan font-family="Arial" > 100</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M71.9,72.1 L71.9,422.4 L507.2,422.4 L507.2,72.1 L71.9,72.1 Z '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(19.0,247.3) rotate(270)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text><tspan font-family="Arial" >tx per node [KB/s]</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(569.9,247.3) rotate(270)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text><tspan font-family="Arial" >packet arrival [%]</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(289.5,471.3)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text><tspan font-family="Arial" ># number of nodes</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(289.5,31.0)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text>Traffic by routing protocol on grid4 dataset with 100MBit/s - 1ms latency links.</text>
</g>
<g transform="translate(289.5,49.0)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text>1. Start daemons, 2. Wait 300s, 3. Measure for 300s with &lt;node_count> random pings</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g id="gnuplot_plot_1" ><title>v0.3.16 [KB/s/node]</title>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(440.1,94.0)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
<text><tspan font-family="Helvetica" >v0.3.16 [KB/s/node]</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='rgb(192, 128, 255)' d='M448.4,90.1 L490.6,90.1 M143.0,239.4 L164.8,261.6 L189.4,242.7 L217.0,161.4 L247.5,218.8 L280.8,193.0
L317.1,204.2 L356.3,184.5 L398.4,96.3 L443.4,167.2 L491.2,114.1 '/> <use xlink:href='#gpPt0' transform='translate(143.0,239.4) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(164.8,261.6) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(189.4,242.7) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(217.0,161.4) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(247.5,218.8) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(280.8,193.0) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(317.1,204.2) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(356.3,184.5) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(398.4,96.3) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(443.4,167.2) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(491.2,114.1) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(469.5,90.1) scale(4.50)' color='rgb(192, 128, 255)'/>
</g>
</g>
<g id="gnuplot_plot_2" ><title>v0.3.16 [%]</title>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(440.1,112.0)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
<text><tspan font-family="Helvetica" >v0.3.16 [%]</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<use xlink:href='#gpPt1' transform='translate(143.0,72.1) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt1' transform='translate(164.8,72.1) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt1' transform='translate(189.4,73.9) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt1' transform='translate(217.0,79.1) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt1' transform='translate(247.5,72.1) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt1' transform='translate(280.8,73.9) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt1' transform='translate(317.1,73.9) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt1' transform='translate(356.3,73.9) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt1' transform='translate(398.4,84.4) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt1' transform='translate(443.4,77.4) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt1' transform='translate(491.2,87.9) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt1' transform='translate(469.5,108.1) scale(4.50)' color='rgb(192, 128, 255)'/>
</g>
</g>
<g id="gnuplot_plot_3" ><title>v0.4rc3 [KB/s/node]</title>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(440.1,130.0)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
<text><tspan font-family="Helvetica" >v0.4rc3 [KB/s/node]</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='rgb( 0, 100, 0)' d='M448.4,126.1 L490.6,126.1 M143.0,344.9 L164.8,345.0 L189.4,347.3 L217.0,354.0 L247.5,352.8 L280.8,358.3
L317.1,357.0 L356.3,355.0 L398.4,359.2 L443.4,364.6 L491.2,363.8 '/> <use xlink:href='#gpPt2' transform='translate(143.0,344.9) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt2' transform='translate(164.8,345.0) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt2' transform='translate(189.4,347.3) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt2' transform='translate(217.0,354.0) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt2' transform='translate(247.5,352.8) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt2' transform='translate(280.8,358.3) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt2' transform='translate(317.1,357.0) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt2' transform='translate(356.3,355.0) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt2' transform='translate(398.4,359.2) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt2' transform='translate(443.4,364.6) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt2' transform='translate(491.2,363.8) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt2' transform='translate(469.5,126.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
</g>
</g>
<g id="gnuplot_plot_4" ><title>v0.4rc3 [%]</title>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(440.1,148.0)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
<text><tspan font-family="Helvetica" >v0.4rc3 [%]</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<use xlink:href='#gpPt3' transform='translate(143.0,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt3' transform='translate(164.8,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt3' transform='translate(189.4,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt3' transform='translate(217.0,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt3' transform='translate(247.5,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt3' transform='translate(280.8,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt3' transform='translate(317.1,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt3' transform='translate(356.3,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt3' transform='translate(398.4,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt3' transform='translate(443.4,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt3' transform='translate(491.2,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt3' transform='translate(469.5,144.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
</g>
</g>
<g fill="none" color="#FFFFFF" stroke="rgb( 0, 100, 0)" stroke-width="6.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="6.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M71.9,72.1 L71.9,422.4 L507.2,422.4 L507.2,72.1 L71.9,72.1 Z '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 29 KiB

View File

@ -0,0 +1,414 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<svg
width="600" height="480"
viewBox="0 0 600 480"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
>
<title>Gnuplot</title>
<desc>Produced by GNUPLOT 5.2 patchlevel 8 </desc>
<g id="gnuplot_canvas">
<rect x="0" y="0" width="600" height="480" fill="#ffffff"/>
<defs>
<circle id='gpDot' r='0.5' stroke-width='0.5' stroke='currentColor'/>
<path id='gpPt0' stroke-width='0.222' stroke='currentColor' d='M-1,0 h2 M0,-1 v2'/>
<path id='gpPt1' stroke-width='0.222' stroke='currentColor' d='M-1,-1 L1,1 M1,-1 L-1,1'/>
<path id='gpPt2' stroke-width='0.222' stroke='currentColor' d='M-1,0 L1,0 M0,-1 L0,1 M-1,-1 L1,1 M-1,1 L1,-1'/>
<rect id='gpPt3' stroke-width='0.222' stroke='currentColor' x='-1' y='-1' width='2' height='2'/>
<rect id='gpPt4' stroke-width='0.222' stroke='currentColor' fill='currentColor' x='-1' y='-1' width='2' height='2'/>
<circle id='gpPt5' stroke-width='0.222' stroke='currentColor' cx='0' cy='0' r='1'/>
<use xlink:href='#gpPt5' id='gpPt6' fill='currentColor' stroke='none'/>
<path id='gpPt7' stroke-width='0.222' stroke='currentColor' d='M0,-1.33 L-1.33,0.67 L1.33,0.67 z'/>
<use xlink:href='#gpPt7' id='gpPt8' fill='currentColor' stroke='none'/>
<use xlink:href='#gpPt7' id='gpPt9' stroke='currentColor' transform='rotate(180)'/>
<use xlink:href='#gpPt9' id='gpPt10' fill='currentColor' stroke='none'/>
<use xlink:href='#gpPt3' id='gpPt11' stroke='currentColor' transform='rotate(45)'/>
<use xlink:href='#gpPt11' id='gpPt12' fill='currentColor' stroke='none'/>
<path id='gpPt13' stroke-width='0.222' stroke='currentColor' d='M0,1.330 L1.265,0.411 L0.782,-1.067 L-0.782,-1.076 L-1.265,0.411 z'/>
<use xlink:href='#gpPt13' id='gpPt14' fill='currentColor' stroke='none'/>
<filter id='textbox' filterUnits='objectBoundingBox' x='0' y='0' height='1' width='1'>
<feFlood flood-color='#FFFFFF' flood-opacity='1' result='bgnd'/>
<feComposite in='SourceGraphic' in2='bgnd' operator='atop'/>
</filter>
<filter id='greybox' filterUnits='objectBoundingBox' x='0' y='0' height='1' width='1'>
<feFlood flood-color='lightgrey' flood-opacity='1' result='grey'/>
<feComposite in='SourceGraphic' in2='grey' operator='atop'/>
</filter>
</defs>
<g fill="none" color="#FFFFFF" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M63.6,422.4 L507.2,422.4 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M63.6,422.4 L72.6,422.4 '/> <g transform="translate(55.3,426.3)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
<text><tspan font-family="Arial" > 0</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M63.6,383.5 L507.2,383.5 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M63.6,383.5 L72.6,383.5 '/> <g transform="translate(55.3,387.4)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
<text><tspan font-family="Arial" > 2</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M63.6,344.6 L507.2,344.6 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M63.6,344.6 L72.6,344.6 '/> <g transform="translate(55.3,348.5)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
<text><tspan font-family="Arial" > 4</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M63.6,305.6 L507.2,305.6 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M63.6,305.6 L72.6,305.6 '/> <g transform="translate(55.3,309.5)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
<text><tspan font-family="Arial" > 6</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M63.6,266.7 L507.2,266.7 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M63.6,266.7 L72.6,266.7 '/> <g transform="translate(55.3,270.6)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
<text><tspan font-family="Arial" > 8</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M63.6,227.8 L507.2,227.8 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M63.6,227.8 L72.6,227.8 '/> <g transform="translate(55.3,231.7)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
<text><tspan font-family="Arial" > 10</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M63.6,188.9 L507.2,188.9 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M63.6,188.9 L72.6,188.9 '/> <g transform="translate(55.3,192.8)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
<text><tspan font-family="Arial" > 12</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M63.6,149.9 L282.4,149.9 M498.9,149.9 L507.2,149.9 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M63.6,149.9 L72.6,149.9 '/> <g transform="translate(55.3,153.8)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
<text><tspan font-family="Arial" > 14</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M63.6,111.0 L282.4,111.0 M498.9,111.0 L507.2,111.0 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M63.6,111.0 L72.6,111.0 '/> <g transform="translate(55.3,114.9)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
<text><tspan font-family="Arial" > 16</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M63.6,72.1 L507.2,72.1 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M63.6,72.1 L72.6,72.1 '/> <g transform="translate(55.3,76.0)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
<text><tspan font-family="Arial" > 18</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M63.6,422.4 L63.6,72.1 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M63.6,422.4 L63.6,413.4 M63.6,72.1 L63.6,81.1 '/> <g transform="translate(63.6,444.3)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text><tspan font-family="Arial" > 50</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M152.3,422.4 L152.3,72.1 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M152.3,422.4 L152.3,413.4 M152.3,72.1 L152.3,81.1 '/> <g transform="translate(152.3,444.3)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text><tspan font-family="Arial" > 100</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M241.0,422.4 L241.0,72.1 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M241.0,422.4 L241.0,413.4 M241.0,72.1 L241.0,81.1 '/> <g transform="translate(241.0,444.3)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text><tspan font-family="Arial" > 150</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M329.8,422.4 L329.8,153.1 M329.8,81.1 L329.8,72.1 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M329.8,422.4 L329.8,413.4 M329.8,72.1 L329.8,81.1 '/> <g transform="translate(329.8,444.3)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text><tspan font-family="Arial" > 200</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M418.5,422.4 L418.5,153.1 M418.5,81.1 L418.5,72.1 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M418.5,422.4 L418.5,413.4 M418.5,72.1 L418.5,81.1 '/> <g transform="translate(418.5,444.3)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text><tspan font-family="Arial" > 250</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M507.2,422.4 L507.2,72.1 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M507.2,422.4 L507.2,413.4 M507.2,72.1 L507.2,81.1 '/> <g transform="translate(507.2,444.3)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text><tspan font-family="Arial" > 300</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M507.2,422.4 L498.2,422.4 '/> <g transform="translate(515.5,426.3)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="start">
<text><tspan font-family="Arial" > 0</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M507.2,387.4 L498.2,387.4 '/> <g transform="translate(515.5,391.3)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="start">
<text><tspan font-family="Arial" > 10</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M507.2,352.3 L498.2,352.3 '/> <g transform="translate(515.5,356.2)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="start">
<text><tspan font-family="Arial" > 20</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M507.2,317.3 L498.2,317.3 '/> <g transform="translate(515.5,321.2)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="start">
<text><tspan font-family="Arial" > 30</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M507.2,282.3 L498.2,282.3 '/> <g transform="translate(515.5,286.2)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="start">
<text><tspan font-family="Arial" > 40</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M507.2,247.2 L498.2,247.2 '/> <g transform="translate(515.5,251.1)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="start">
<text><tspan font-family="Arial" > 50</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M507.2,212.2 L498.2,212.2 '/> <g transform="translate(515.5,216.1)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="start">
<text><tspan font-family="Arial" > 60</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M507.2,177.2 L498.2,177.2 '/> <g transform="translate(515.5,181.1)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="start">
<text><tspan font-family="Arial" > 70</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M507.2,142.2 L498.2,142.2 '/> <g transform="translate(515.5,146.1)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="start">
<text><tspan font-family="Arial" > 80</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M507.2,107.1 L498.2,107.1 '/> <g transform="translate(515.5,111.0)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="start">
<text><tspan font-family="Arial" > 90</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M507.2,72.1 L498.2,72.1 '/> <g transform="translate(515.5,76.0)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="start">
<text><tspan font-family="Arial" > 100</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M63.6,72.1 L63.6,422.4 L507.2,422.4 L507.2,72.1 L63.6,72.1 Z '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(19.0,247.3) rotate(270)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text><tspan font-family="Arial" >tx per node [KB/s]</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(569.9,247.3) rotate(270)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text><tspan font-family="Arial" >packet arrival [%]</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(285.4,471.3)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text><tspan font-family="Arial" ># number of nodes</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(285.4,31.0)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text>Traffic by routing protocol on line dataset with 100MBit/s - 1ms latency links.</text>
</g>
<g transform="translate(285.4,49.0)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text>1. Start daemons, 2. Wait 300s, 3. Measure for 300s with &lt;node_count> random pings</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g id="gnuplot_plot_1" ><title>v0.3.16 [KB/s/node]</title>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(440.1,94.0)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
<text><tspan font-family="Helvetica" >v0.3.16 [KB/s/node]</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='rgb(192, 128, 255)' d='M448.4,90.1 L490.6,90.1 M63.6,369.5 L152.3,310.1 L241.0,164.2 L329.8,245.8 L418.5,90.8 L507.2,190.9
'/> <use xlink:href='#gpPt0' transform='translate(63.6,369.5) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(152.3,310.1) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(241.0,164.2) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(329.8,245.8) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(418.5,90.8) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(507.2,190.9) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(469.5,90.1) scale(4.50)' color='rgb(192, 128, 255)'/>
</g>
</g>
<g id="gnuplot_plot_2" ><title>v0.3.16 [%]</title>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(440.1,112.0)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
<text><tspan font-family="Helvetica" >v0.3.16 [%]</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<use xlink:href='#gpPt1' transform='translate(63.6,72.1) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt1' transform='translate(152.3,72.1) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt1' transform='translate(241.0,159.7) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt1' transform='translate(329.8,238.5) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt1' transform='translate(418.5,145.7) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt1' transform='translate(507.2,292.8) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt1' transform='translate(469.5,108.1) scale(4.50)' color='rgb(192, 128, 255)'/>
</g>
</g>
<g id="gnuplot_plot_3" ><title>v0.4rc3 [KB/s/node]</title>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(440.1,130.0)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
<text><tspan font-family="Helvetica" >v0.4rc3 [KB/s/node]</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='rgb( 0, 100, 0)' d='M448.4,126.1 L490.6,126.1 M63.6,398.7 L152.3,396.3 L241.0,396.1 L329.8,396.2 L418.5,396.9 L507.2,395.3
'/> <use xlink:href='#gpPt2' transform='translate(63.6,398.7) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt2' transform='translate(152.3,396.3) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt2' transform='translate(241.0,396.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt2' transform='translate(329.8,396.2) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt2' transform='translate(418.5,396.9) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt2' transform='translate(507.2,395.3) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt2' transform='translate(469.5,126.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
</g>
</g>
<g id="gnuplot_plot_4" ><title>v0.4rc3 [%]</title>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(440.1,148.0)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
<text><tspan font-family="Helvetica" >v0.4rc3 [%]</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<use xlink:href='#gpPt3' transform='translate(63.6,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt3' transform='translate(152.3,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt3' transform='translate(241.0,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt3' transform='translate(329.8,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt3' transform='translate(418.5,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt3' transform='translate(507.2,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt3' transform='translate(469.5,144.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
</g>
</g>
<g fill="none" color="#FFFFFF" stroke="rgb( 0, 100, 0)" stroke-width="6.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="6.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M63.6,72.1 L63.6,422.4 L507.2,422.4 L507.2,72.1 L63.6,72.1 Z '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 29 KiB

View File

@ -0,0 +1,375 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<svg
width="600" height="480"
viewBox="0 0 600 480"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
>
<title>Gnuplot</title>
<desc>Produced by GNUPLOT 5.2 patchlevel 8 </desc>
<g id="gnuplot_canvas">
<rect x="0" y="0" width="600" height="480" fill="#ffffff"/>
<defs>
<circle id='gpDot' r='0.5' stroke-width='0.5' stroke='currentColor'/>
<path id='gpPt0' stroke-width='0.222' stroke='currentColor' d='M-1,0 h2 M0,-1 v2'/>
<path id='gpPt1' stroke-width='0.222' stroke='currentColor' d='M-1,-1 L1,1 M1,-1 L-1,1'/>
<path id='gpPt2' stroke-width='0.222' stroke='currentColor' d='M-1,0 L1,0 M0,-1 L0,1 M-1,-1 L1,1 M-1,1 L1,-1'/>
<rect id='gpPt3' stroke-width='0.222' stroke='currentColor' x='-1' y='-1' width='2' height='2'/>
<rect id='gpPt4' stroke-width='0.222' stroke='currentColor' fill='currentColor' x='-1' y='-1' width='2' height='2'/>
<circle id='gpPt5' stroke-width='0.222' stroke='currentColor' cx='0' cy='0' r='1'/>
<use xlink:href='#gpPt5' id='gpPt6' fill='currentColor' stroke='none'/>
<path id='gpPt7' stroke-width='0.222' stroke='currentColor' d='M0,-1.33 L-1.33,0.67 L1.33,0.67 z'/>
<use xlink:href='#gpPt7' id='gpPt8' fill='currentColor' stroke='none'/>
<use xlink:href='#gpPt7' id='gpPt9' stroke='currentColor' transform='rotate(180)'/>
<use xlink:href='#gpPt9' id='gpPt10' fill='currentColor' stroke='none'/>
<use xlink:href='#gpPt3' id='gpPt11' stroke='currentColor' transform='rotate(45)'/>
<use xlink:href='#gpPt11' id='gpPt12' fill='currentColor' stroke='none'/>
<path id='gpPt13' stroke-width='0.222' stroke='currentColor' d='M0,1.330 L1.265,0.411 L0.782,-1.067 L-0.782,-1.076 L-1.265,0.411 z'/>
<use xlink:href='#gpPt13' id='gpPt14' fill='currentColor' stroke='none'/>
<filter id='textbox' filterUnits='objectBoundingBox' x='0' y='0' height='1' width='1'>
<feFlood flood-color='#FFFFFF' flood-opacity='1' result='bgnd'/>
<feComposite in='SourceGraphic' in2='bgnd' operator='atop'/>
</filter>
<filter id='greybox' filterUnits='objectBoundingBox' x='0' y='0' height='1' width='1'>
<feFlood flood-color='lightgrey' flood-opacity='1' result='grey'/>
<feComposite in='SourceGraphic' in2='grey' operator='atop'/>
</filter>
</defs>
<g fill="none" color="#FFFFFF" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M71.9,422.4 L507.2,422.4 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M71.9,422.4 L80.9,422.4 '/> <g transform="translate(63.6,426.3)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
<text><tspan font-family="Arial" > 0</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M71.9,364.0 L507.2,364.0 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M71.9,364.0 L80.9,364.0 '/> <g transform="translate(63.6,367.9)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
<text><tspan font-family="Arial" > 0.2</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M71.9,305.6 L507.2,305.6 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M71.9,305.6 L80.9,305.6 '/> <g transform="translate(63.6,309.5)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
<text><tspan font-family="Arial" > 0.4</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M71.9,247.2 L507.2,247.2 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M71.9,247.2 L80.9,247.2 '/> <g transform="translate(63.6,251.1)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
<text><tspan font-family="Arial" > 0.6</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M71.9,188.9 L507.2,188.9 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M71.9,188.9 L80.9,188.9 '/> <g transform="translate(63.6,192.8)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
<text><tspan font-family="Arial" > 0.8</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M71.9,130.5 L282.4,130.5 M498.9,130.5 L507.2,130.5 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M71.9,130.5 L80.9,130.5 '/> <g transform="translate(63.6,134.4)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
<text><tspan font-family="Arial" > 1</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M71.9,72.1 L507.2,72.1 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M71.9,72.1 L80.9,72.1 '/> <g transform="translate(63.6,76.0)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
<text><tspan font-family="Arial" > 1.2</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M71.9,422.4 L71.9,72.1 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M71.9,422.4 L71.9,413.4 M71.9,72.1 L71.9,81.1 '/> <g transform="translate(71.9,444.3)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text><tspan font-family="Arial" > 50</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M159.0,422.4 L159.0,72.1 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M159.0,422.4 L159.0,413.4 M159.0,72.1 L159.0,81.1 '/> <g transform="translate(159.0,444.3)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text><tspan font-family="Arial" > 100</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M246.0,422.4 L246.0,72.1 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M246.0,422.4 L246.0,413.4 M246.0,72.1 L246.0,81.1 '/> <g transform="translate(246.0,444.3)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text><tspan font-family="Arial" > 150</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M333.1,422.4 L333.1,153.1 M333.1,81.1 L333.1,72.1 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M333.1,422.4 L333.1,413.4 M333.1,72.1 L333.1,81.1 '/> <g transform="translate(333.1,444.3)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text><tspan font-family="Arial" > 200</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M420.1,422.4 L420.1,153.1 M420.1,81.1 L420.1,72.1 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M420.1,422.4 L420.1,413.4 M420.1,72.1 L420.1,81.1 '/> <g transform="translate(420.1,444.3)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text><tspan font-family="Arial" > 250</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="1.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M507.2,422.4 L507.2,72.1 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M507.2,422.4 L507.2,413.4 M507.2,72.1 L507.2,81.1 '/> <g transform="translate(507.2,444.3)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text><tspan font-family="Arial" > 300</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M507.2,422.4 L498.2,422.4 '/> <g transform="translate(515.5,426.3)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="start">
<text><tspan font-family="Arial" > 0</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M507.2,387.4 L498.2,387.4 '/> <g transform="translate(515.5,391.3)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="start">
<text><tspan font-family="Arial" > 10</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M507.2,352.3 L498.2,352.3 '/> <g transform="translate(515.5,356.2)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="start">
<text><tspan font-family="Arial" > 20</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M507.2,317.3 L498.2,317.3 '/> <g transform="translate(515.5,321.2)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="start">
<text><tspan font-family="Arial" > 30</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M507.2,282.3 L498.2,282.3 '/> <g transform="translate(515.5,286.2)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="start">
<text><tspan font-family="Arial" > 40</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M507.2,247.2 L498.2,247.2 '/> <g transform="translate(515.5,251.1)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="start">
<text><tspan font-family="Arial" > 50</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M507.2,212.2 L498.2,212.2 '/> <g transform="translate(515.5,216.1)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="start">
<text><tspan font-family="Arial" > 60</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M507.2,177.2 L498.2,177.2 '/> <g transform="translate(515.5,181.1)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="start">
<text><tspan font-family="Arial" > 70</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M507.2,142.2 L498.2,142.2 '/> <g transform="translate(515.5,146.1)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="start">
<text><tspan font-family="Arial" > 80</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M507.2,107.1 L498.2,107.1 '/> <g transform="translate(515.5,111.0)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="start">
<text><tspan font-family="Arial" > 90</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M507.2,72.1 L498.2,72.1 '/> <g transform="translate(515.5,76.0)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="start">
<text><tspan font-family="Arial" > 100</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M71.9,72.1 L71.9,422.4 L507.2,422.4 L507.2,72.1 L71.9,72.1 Z '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(19.0,247.3) rotate(270)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text><tspan font-family="Arial" >tx per node [KB/s]</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(569.9,247.3) rotate(270)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text><tspan font-family="Arial" >packet arrival [%]</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(289.5,471.3)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text><tspan font-family="Arial" ># number of nodes</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(289.5,31.0)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text>Traffic by routing protocol on rtree dataset with 100MBit/s - 1ms latency links.</text>
</g>
<g transform="translate(289.5,49.0)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text>1. Start daemons, 2. Wait 300s, 3. Measure for 300s with &lt;node_count> random pings</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g id="gnuplot_plot_1" ><title>v0.3.16 [KB/s/node]</title>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(440.1,94.0)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
<text><tspan font-family="Helvetica" >v0.3.16 [KB/s/node]</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='rgb(192, 128, 255)' d='M448.4,90.1 L490.6,90.1 M71.9,80.7 L159.0,96.9 L246.0,83.5 L333.1,120.4 L420.1,115.2 L507.2,141.1
'/> <use xlink:href='#gpPt0' transform='translate(71.9,80.7) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(159.0,96.9) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(246.0,83.5) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(333.1,120.4) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(420.1,115.2) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(507.2,141.1) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt0' transform='translate(469.5,90.1) scale(4.50)' color='rgb(192, 128, 255)'/>
</g>
</g>
<g id="gnuplot_plot_2" ><title>v0.3.16 [%]</title>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(440.1,112.0)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
<text><tspan font-family="Helvetica" >v0.3.16 [%]</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<use xlink:href='#gpPt1' transform='translate(71.9,72.1) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt1' transform='translate(159.0,72.1) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt1' transform='translate(246.0,72.1) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt1' transform='translate(333.1,72.1) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt1' transform='translate(420.1,72.1) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt1' transform='translate(507.2,72.1) scale(4.50)' color='rgb(192, 128, 255)'/>
<use xlink:href='#gpPt1' transform='translate(469.5,108.1) scale(4.50)' color='rgb(192, 128, 255)'/>
</g>
</g>
<g id="gnuplot_plot_3" ><title>v0.4rc3 [KB/s/node]</title>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(440.1,130.0)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
<text><tspan font-family="Helvetica" >v0.4rc3 [KB/s/node]</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='rgb( 0, 100, 0)' d='M448.4,126.1 L490.6,126.1 M71.9,265.2 L159.0,305.3 L246.0,314.0 L333.1,327.7 L420.1,333.2 L507.2,334.6
'/> <use xlink:href='#gpPt2' transform='translate(71.9,265.2) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt2' transform='translate(159.0,305.3) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt2' transform='translate(246.0,314.0) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt2' transform='translate(333.1,327.7) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt2' transform='translate(420.1,333.2) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt2' transform='translate(507.2,334.6) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt2' transform='translate(469.5,126.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
</g>
</g>
<g id="gnuplot_plot_4" ><title>v0.4rc3 [%]</title>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<g transform="translate(440.1,148.0)" stroke="none" fill="black" font-family="Helvetica" font-size="12.00" text-anchor="end">
<text><tspan font-family="Helvetica" >v0.4rc3 [%]</tspan></text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<use xlink:href='#gpPt3' transform='translate(71.9,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt3' transform='translate(159.0,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt3' transform='translate(246.0,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt3' transform='translate(333.1,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt3' transform='translate(420.1,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt3' transform='translate(507.2,72.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
<use xlink:href='#gpPt3' transform='translate(469.5,144.1) scale(4.50)' color='rgb( 0, 100, 0)'/>
</g>
</g>
<g fill="none" color="#FFFFFF" stroke="rgb( 0, 100, 0)" stroke-width="6.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="6.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M71.9,72.1 L71.9,422.4 L507.2,422.4 L507.2,72.1 L71.9,72.1 Z '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="3.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 26 KiB