-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWirelessA.ned
68 lines (60 loc) · 2.45 KB
/
WirelessA.ned
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
// along with this program. If not, see http://www.gnu.org/licenses/.
//
package recording;
import inet.common.figures.DelegateSignalConfigurator;
import inet.networklayer.configurator.ipv4.IPv4NetworkConfigurator;
//import inet.node.gpsr.GPSRRouter;
//import inet.node.gpsrGreedyTest.GPSRRouterGreedyTest;
import inet.node.greedy.GREEDYRouter;
import inet.node.inet.INetworkNode;
import inet.physicallayer.contract.packetlevel.IRadioMedium;
import inet.visualizer.integrated.IntegratedCanvasVisualizer;
network WirelessA
{
parameters:
string hostType = default("WirelessHost");
string mediumType = default("IdealRadioMedium");
@display("bgb=650,500;bgg=100,1,grey95");
@figure[title](type=label; pos=0,-1; anchor=sw; color=darkblue);
@figure[rcvdPkText](type=indicatorText; pos=420,20; anchor=w; font=,20; textFormat="packets received: %g"; initialValue=0);
@statistic[rcvdPk](source=hostB_rcvdPk; record=figure(count); targetFigure=rcvdPkText);
@signal[hostB_rcvdPk];
@delegatesignal[rcvdPk](source=hostB.udpApp[0].rcvdPk; target=hostB_rcvdPk);
submodules:
visualizer: IntegratedCanvasVisualizer {
@display("p=580,125");
}
configurator: IPv4NetworkConfigurator {
@display("p=580,200");
}
radioMedium: <mediumType> like IRadioMedium {
@display("p=580,275");
}
figureHelper: DelegateSignalConfigurator {
@display("p=580,350");
}
hostA: <hostType> like INetworkNode {
@display("p=50,325");
}
hostB: <hostType> like INetworkNode {
@display("p=450,325");
}
//gpsrRouterGreedyTest: GPSRRouterGreedyTest {
// @display("p=311.47202,267.12");
//}
//gpsrRouter: GPSRRouter {
// @display("p=302.4,387.07202");
//}
}