1
1
//***************************************************************************
2
2
// * file: ConnectionManager.ned
3
3
// *
4
- // * author: Steffen Sroka, Daniel Willkomm, Karl Wessel, Michael Swigulski
5
- // *
6
4
// * copyright: (C) 2004 Telecommunication Networks Group (TKN) at
7
5
// * Technische Universitaet Berlin, Germany.
8
6
// *
@@ -27,13 +25,11 @@ package org.car2x.veins.base.connectionManager;
27
25
// periodically communicates with the mobility module and
28
26
// ChannelAccess.
29
27
//
30
- // The four parameters pMax, sat, alpha, and carrierFrequency are used
31
- // to calculate the interference distance between nodes. The values used
32
- // here in ConnectionManager are used to calculate the upper bound,
33
- // i.e. they can be redifined in the analogue models, but never such
28
+ // The value maxInterfDist used here in ConnectionManager defines the upper bound of any transmission,
29
+ // i.e. it can be redifined in the analogue models, but never such
34
30
// that the maximal interference distance is exeeded.
35
31
//
36
- // @author Steffen Sroka, Daniel Willkomm, Karl Wessel
32
+ // @author Steffen Sroka, Daniel Willkomm, Karl Wessel, Alexander Brummer, Christoph Sommer
37
33
// @see MobilityBase
38
34
//
39
35
simple ConnectionManager
@@ -43,14 +39,9 @@ simple ConnectionManager
43
39
bool coreDebug;
44
40
// send directly to the node or create separate gates for every connection
45
41
bool sendDirect;
46
- // maximum sending power used for this network [mW]
47
- double pMax @unit (mW);
48
- // minimum signal attenuation threshold [dBm]
49
- double sat @unit (dBm);
50
- // minimum path loss coefficient
51
- double alpha;
52
- // minimum carrier frequency of the channel [Hz]
53
- double carrierFrequency @unit (Hz);
42
+ // maximum interference distance [m]
43
+ double maxInterfDist @unit (m);
44
+
54
45
// should the maximum interference distance be displayed for each node?
55
46
bool drawMaxIntfDist = default (false );
56
47
0 commit comments