README moves to markdown
[nepi.git] / nepi / resources / ns3 / classes / hybrid_buildings_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 NS3HybridBuildingsPropagationLossModel(NS3BasePropagationLossModel):
26     _rtype = "ns3::HybridBuildingsPropagationLossModel"
27
28     @classmethod
29     def _register_attributes(cls):
30         
31         attr_los2nlosthr = Attribute("Los2NlosThr",
32             " Threshold from LoS to NLoS in ITU 1411 [m].",
33             type = Types.Double,
34             default = "200",  
35             allowed = None,
36             range = None,    
37             flags = Flags.Reserved | Flags.Construct)
38
39         cls._register_attribute(attr_los2nlosthr)
40
41         attr_shadowsigmaoutdoor = Attribute("ShadowSigmaOutdoor",
42             "Standard deviation of the normal distribution used for calculate the shadowing for outdoor nodes",
43             type = Types.Double,
44             default = "7",  
45             allowed = None,
46             range = None,    
47             flags = Flags.Reserved | Flags.Construct)
48
49         cls._register_attribute(attr_shadowsigmaoutdoor)
50
51         attr_shadowsigmaindoor = Attribute("ShadowSigmaIndoor",
52             "Standard deviation of the normal distribution used for calculate the shadowing for indoor nodes ",
53             type = Types.Double,
54             default = "8",  
55             allowed = None,
56             range = None,    
57             flags = Flags.Reserved | Flags.Construct)
58
59         cls._register_attribute(attr_shadowsigmaindoor)
60
61         attr_shadowsigmaextwalls = Attribute("ShadowSigmaExtWalls",
62             "Standard deviation of the normal distribution used for calculate the shadowing due to ext walls ",
63             type = Types.Double,
64             default = "5",  
65             allowed = None,
66             range = None,    
67             flags = Flags.Reserved | Flags.Construct)
68
69         cls._register_attribute(attr_shadowsigmaextwalls)
70
71         attr_internalwallloss = Attribute("InternalWallLoss",
72             "Additional loss for each internal wall [dB]",
73             type = Types.Double,
74             default = "5",  
75             allowed = None,
76             range = None,    
77             flags = Flags.Reserved | Flags.Construct)
78
79         cls._register_attribute(attr_internalwallloss)
80
81
82
83     @classmethod
84     def _register_traces(cls):
85         pass
86
87     def __init__(self, ec, guid):
88         super(NS3HybridBuildingsPropagationLossModel, self).__init__(ec, guid)
89         self._home = "ns3-hybrid-buildings-propagation-loss-model-%s" % self.guid