rename src/nepi/ into just nepi/
[nepi.git] / nepi / resources / ns3 / classes / three_log_distance_propagation_loss_model.py
1 #
2 #    NEPI, a framework to manage network experiments
3 #    Copyright (C) 2014 INRIA
4 #
5 #    This program is free software: you can redistribute it and/or modify
6 #    it under the terms of the GNU General Public License version 2 as
7 #    published by the Free Software Foundation;
8 #
9 #    This program is distributed in the hope that it will be useful,
10 #    but WITHOUT ANY WARRANTY; without even the implied warranty of
11 #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 #    GNU General Public License for more details.
13 #
14 #    You should have received a copy of the GNU General Public License
15 #    along with this program.  If not, see <http://www.gnu.org/licenses/>.
16 #
17
18 from nepi.execution.attribute import Attribute, Flags, Types
19 from nepi.execution.trace import Trace, TraceAttr
20 from nepi.execution.resource import ResourceManager, clsinit_copy, \
21         ResourceState
22 from nepi.resources.ns3.ns3propagationlossmodel import NS3BasePropagationLossModel 
23
24 @clsinit_copy
25 class NS3ThreeLogDistancePropagationLossModel(NS3BasePropagationLossModel):
26     _rtype = "ns3::ThreeLogDistancePropagationLossModel"
27
28     @classmethod
29     def _register_attributes(cls):
30         
31         attr_distance0 = Attribute("Distance0",
32             "Beginning of the first (near) distance field",
33             type = Types.Double,
34             default = "1",  
35             allowed = None,
36             range = None,    
37             flags = Flags.Reserved | Flags.Construct)
38
39         cls._register_attribute(attr_distance0)
40
41         attr_distance1 = Attribute("Distance1",
42             "Beginning of the second (middle) distance field.",
43             type = Types.Double,
44             default = "200",  
45             allowed = None,
46             range = None,    
47             flags = Flags.Reserved | Flags.Construct)
48
49         cls._register_attribute(attr_distance1)
50
51         attr_distance2 = Attribute("Distance2",
52             "Beginning of the third (far) distance field.",
53             type = Types.Double,
54             default = "500",  
55             allowed = None,
56             range = None,    
57             flags = Flags.Reserved | Flags.Construct)
58
59         cls._register_attribute(attr_distance2)
60
61         attr_exponent0 = Attribute("Exponent0",
62             "The exponent for the first field.",
63             type = Types.Double,
64             default = "1.9",  
65             allowed = None,
66             range = None,    
67             flags = Flags.Reserved | Flags.Construct)
68
69         cls._register_attribute(attr_exponent0)
70
71         attr_exponent1 = Attribute("Exponent1",
72             "The exponent for the second field.",
73             type = Types.Double,
74             default = "3.8",  
75             allowed = None,
76             range = None,    
77             flags = Flags.Reserved | Flags.Construct)
78
79         cls._register_attribute(attr_exponent1)
80
81         attr_exponent2 = Attribute("Exponent2",
82             "The exponent for the third field.",
83             type = Types.Double,
84             default = "3.8",  
85             allowed = None,
86             range = None,    
87             flags = Flags.Reserved | Flags.Construct)
88
89         cls._register_attribute(attr_exponent2)
90
91         attr_referenceloss = Attribute("ReferenceLoss",
92             "The reference loss at distance d0 (dB). (Default is Friis at 1m with 5.15 GHz)",
93             type = Types.Double,
94             default = "46.6777",  
95             allowed = None,
96             range = None,    
97             flags = Flags.Reserved | Flags.Construct)
98
99         cls._register_attribute(attr_referenceloss)
100
101
102
103     @classmethod
104     def _register_traces(cls):
105         pass
106
107     def __init__(self, ec, guid):
108         super(NS3ThreeLogDistancePropagationLossModel, self).__init__(ec, guid)
109         self._home = "ns3-three-log-distance-propagation-loss-model-%s" % self.guid