11//***************************************************************************
22// * file: ConnectionManager.ned
33// *
4- // * author: Steffen Sroka, Daniel Willkomm, Karl Wessel, Michael Swigulski
5- // *
64// * copyright: (C) 2004 Telecommunication Networks Group (TKN) at
75// * Technische Universitaet Berlin, Germany.
86// *
@@ -27,13 +25,11 @@ package org.car2x.veins.base.connectionManager;
2725// periodically communicates with the mobility module and
2826// ChannelAccess.
2927//
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
3430// that the maximal interference distance is exeeded.
3531//
36- // @author Steffen Sroka, Daniel Willkomm, Karl Wessel
32+ // @author Steffen Sroka, Daniel Willkomm, Karl Wessel, Alexander Brummer, Christoph Sommer
3733// @see MobilityBase
3834//
3935simple ConnectionManager
@@ -43,14 +39,9 @@ simple ConnectionManager
4339 bool coreDebug;
4440 // send directly to the node or create separate gates for every connection
4541 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+
5445 // should the maximum interference distance be displayed for each node?
5546 bool drawMaxIntfDist = default (false );
5647
0 commit comments