A Discrete-Event Network Simulator
API
interference-helper.h
Go to the documentation of this file.
1 /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2 /*
3  * Copyright (c) 2005,2006 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, write to the Free Software
16  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17  *
18  * Author: Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
19  */
20 #ifndef INTERFERENCE_HELPER_H
21 #define INTERFERENCE_HELPER_H
22 
23 #include <stdint.h>
24 #include <vector>
25 #include <list>
26 #include "wifi-mode.h"
27 #include "wifi-preamble.h"
28 #include "wifi-phy-standard.h"
29 #include "ns3/nstime.h"
30 #include "ns3/simple-ref-count.h"
31 #include "ns3/wifi-tx-vector.h"
32 
33 namespace ns3 {
34 
35 class ErrorRateModel;
36 
42 {
43 public:
47  class Event : public SimpleRefCount<InterferenceHelper::Event>
48  {
49 public:
60  Event (uint32_t size, WifiTxVector txvector,
61  enum WifiPreamble preamble,
62  Time duration, double rxPower);
63  ~Event ();
64 
70  Time GetDuration (void) const;
76  Time GetStartTime (void) const;
82  Time GetEndTime (void) const;
88  double GetRxPowerW (void) const;
94  uint32_t GetSize (void) const;
100  WifiTxVector GetTxVector (void) const;
106  WifiMode GetPayloadMode (void) const;
112  enum WifiPreamble GetPreambleType (void) const;
113 
114 private:
115  uint32_t m_size;
120  double m_rxPowerW;
121  };
125  struct SnrPer
126  {
127  double snr;
128  double per;
129  };
130 
133 
139  void SetNoiseFigure (double value);
146 
152  double GetNoiseFigure (void) const;
159 
160 
167  Time GetEnergyDuration (double energyW);
168 
179  Ptr<InterferenceHelper::Event> Add (uint32_t size, WifiTxVector txvector,
180  enum WifiPreamble preamble,
181  Time duration, double rxPower);
182 
198  struct InterferenceHelper::SnrPer CalculatePlcpHeaderSnrPer (Ptr<InterferenceHelper::Event> event);
202  void NotifyRxStart ();
206  void NotifyRxEnd ();
210  void EraseEvents (void);
211 private:
215  class NiChange
216  {
217 public:
224  NiChange (Time time, double delta);
230  Time GetTime (void) const;
236  double GetDelta (void) const;
243  bool operator < (const NiChange& o) const;
244 private:
246  double m_delta;
247  };
251  typedef std::vector <NiChange> NiChanges;
255  typedef std::list<Ptr<Event> > Events;
256 
257  //InterferenceHelper (const InterferenceHelper &o);
258  //InterferenceHelper &operator = (const InterferenceHelper &o);
264  void AppendEvent (Ptr<Event> event);
272  double CalculateNoiseInterferenceW (Ptr<Event> event, NiChanges *ni) const;
282  double CalculateSnr (double signal, double noiseInterference, WifiMode mode) const;
292  double CalculateChunkSuccessRate (double snir, Time duration, WifiMode mode) const;
301  double CalculatePlcpPayloadPer (Ptr<const Event> event, NiChanges *ni) const;
310  double CalculatePlcpHeaderPer (Ptr<const Event> event, NiChanges *ni) const;
311 
312  double m_noiseFigure;
315  NiChanges m_niChanges;
316  double m_firstPower;
317  bool m_rxing;
319  NiChanges::iterator GetPosition (Time moment);
325  void AddNiChangeEvent (NiChange change);
326 };
327 
328 } // namespace ns3
329 
330 #endif /* INTERFERENCE_HELPER_H */
Simulation virtual time values and global simulation resolution.
Definition: nstime.h:102
A struct for both SNR and PER.
Smart pointer class similar to boost::intrusive_ptr.
Definition: ptr.h:73
Ptr< ErrorRateModel > GetErrorRateModel(void) const
Return the error rate model.
This class mimics the TXVECTOR which is to be passed to the PHY in order to define the parameters whi...
Signal event for a packet.
std::vector< NiChange > NiChanges
typedef for a vector of NiChanges
handles interference calculations
Time GetEnergyDuration(double energyW)
double GetRxPowerW(void) const
Return the receive power (w).
Ptr< ErrorRateModel > m_errorRateModel
NiChanges::iterator GetPosition(Time moment)
Returns an iterator to the first nichange, which is later than moment.
represent a single transmission modeA WifiMode is implemented by a single integer which is used to lo...
Definition: wifi-mode.h:93
uint32_t GetSize(void) const
Return the size of the packet (bytes).
double CalculateChunkSuccessRate(double snir, Time duration, WifiMode mode) const
Calculate the success rate of the chunk given the SINR, duration, and Wi-Fi mode. ...
WifiPreamble
The type of preamble to be used by an IEEE 802.11 transmission.
Definition: wifi-preamble.h:29
void SetErrorRateModel(Ptr< ErrorRateModel > rate)
Set the error rate model for this interference helper.
double CalculateNoiseInterferenceW(Ptr< Event > event, NiChanges *ni) const
Calculate noise and interference power in W.
Time GetStartTime(void) const
Return the start time of the signal.
WifiTxVector GetTxVector(void) const
Return the TXVECTOR of the packet.
NiChanges m_niChanges
Experimental: needed for energy duration calculation.
void AddNiChangeEvent(NiChange change)
Add NiChange to the list at the appropriate position.
struct InterferenceHelper::SnrPer CalculatePlcpHeaderSnrPer(Ptr< InterferenceHelper::Event > event)
Calculate the SNIR at the start of the plcp header and accumulate all SNIR changes in the snir vector...
double CalculatePlcpPayloadPer(Ptr< const Event > event, NiChanges *ni) const
Calculate the error rate of the given plcp payload.
bool operator<(const int64x64_t &lhs, const int64x64_t &rhs)
Less than operator.
Definition: int64x64-128.h:356
std::list< Ptr< Event > > Events
typedef for a list of Events
double m_noiseFigure
noise figure (linear)
struct InterferenceHelper::SnrPer CalculatePlcpPayloadSnrPer(Ptr< InterferenceHelper::Event > event)
Calculate the SNIR at the start of the plcp payload and accumulate all SNIR changes in the snir vecto...
Every class exported by the ns3 library is enclosed in the ns3 namespace.
void NotifyRxStart()
Notify that RX has started.
Noise and Interference (thus Ni) event.
void EraseEvents(void)
Erase all events.
Ptr< InterferenceHelper::Event > Add(uint32_t size, WifiTxVector txvector, enum WifiPreamble preamble, Time duration, double rxPower)
Add the packet-related signal to interference helper.
double CalculatePlcpHeaderPer(Ptr< const Event > event, NiChanges *ni) const
Calculate the error rate of the plcp header.
Time GetEndTime(void) const
Return the end time of the signal.
enum WifiPreamble GetPreambleType(void) const
Return the preamble type of the packet.
void NotifyRxEnd()
Notify that RX has ended.
Time GetDuration(void) const
Return the duration of the signal.
void SetNoiseFigure(double value)
Set the noise figure.
WifiMode GetPayloadMode(void) const
Return the Wi-Fi mode used for the payload.
double CalculateSnr(double signal, double noiseInterference, WifiMode mode) const
Calculate SNR (linear ratio) from the given signal power and noise+interference power.
void AppendEvent(Ptr< Event > event)
Append the given Event.
double GetNoiseFigure(void) const
Return the noise figure.
A template-based reference counting class.
Event(uint32_t size, WifiTxVector txvector, enum WifiPreamble preamble, Time duration, double rxPower)
Create an Event with the given parameters.