#include <spectrum-analyzer.h>
Public Member Functions | |
SpectrumAnalyzer () | |
virtual | ~SpectrumAnalyzer () |
Ptr< NetDevice > | GetDevice () |
Ptr< MobilityModel > | GetMobility () |
Ptr< AntennaModel > | GetRxAntenna () |
Ptr< const SpectrumModel > | GetRxSpectrumModel () const |
void | SetAntenna (Ptr< AntennaModel > a) |
void | SetChannel (Ptr< SpectrumChannel > c) |
void | SetDevice (Ptr< NetDevice > d) |
void | SetMobility (Ptr< MobilityModel > m) |
void | SetRxSpectrumModel (Ptr< SpectrumModel > m) |
virtual void | Start () |
void | StartRx (Ptr< SpectrumSignalParameters > params) |
virtual void | Stop () |
![]() | |
SpectrumPhy () | |
virtual | ~SpectrumPhy () |
![]() | |
Object () | |
virtual | ~Object () |
void | AggregateObject (Ptr< Object > other) |
void | Dispose (void) |
AggregateIterator | GetAggregateIterator (void) const |
virtual TypeId | GetInstanceTypeId (void) const |
template<typename T > | |
Ptr< T > | GetObject (void) const |
template<typename T > | |
Ptr< T > | GetObject (TypeId tid) const |
![]() | |
SimpleRefCount () | |
SimpleRefCount (const SimpleRefCount &o) | |
uint32_t | GetReferenceCount (void) const |
SimpleRefCount & | operator= (const SimpleRefCount &o) |
void | Ref (void) const |
void | Unref (void) const |
![]() | |
virtual | ~ObjectBase () |
void | GetAttribute (std::string name, AttributeValue &value) const |
bool | GetAttributeFailSafe (std::string name, AttributeValue &attribute) const |
void | SetAttribute (std::string name, const AttributeValue &value) |
bool | SetAttributeFailSafe (std::string name, const AttributeValue &value) |
bool | TraceConnect (std::string name, std::string context, const CallbackBase &cb) |
bool | TraceConnectWithoutContext (std::string name, const CallbackBase &cb) |
bool | TraceDisconnect (std::string name, std::string context, const CallbackBase &cb) |
bool | TraceDisconnectWithoutContext (std::string name, const CallbackBase &cb) |
Static Public Member Functions | |
static TypeId | GetTypeId (void) |
This method returns the TypeId associated to ns3::SpectrumAnalyzer. |
Protected Member Functions | |
void | DoDispose () |
Private Member Functions | |
void | AddSignal (Ptr< const SpectrumValue > psd) |
virtual void | GenerateReport () |
void | SubtractSignal (Ptr< const SpectrumValue > psd) |
void | UpdateEnergyReceivedSoFar () |
Private Attributes | |
bool | m_active |
Ptr< AntennaModel > | m_antenna |
TracedCallback< Ptr< const SpectrumValue > > | m_averagePowerSpectralDensityReportTrace |
Ptr< SpectrumChannel > | m_channel |
Ptr< SpectrumValue > | m_energySpectralDensity |
Time | m_lastChangeTime |
Ptr< MobilityModel > | m_mobility |
Ptr< NetDevice > | m_netDevice |
double | m_noisePowerSpectralDensity |
Time | m_resolution |
Ptr< SpectrumModel > | m_spectrumModel |
Ptr< SpectrumValue > | m_sumPowerSpectralDensity |
Simple SpectrumPhy implemetation that averages the spectrum power density of incoming transmissions to produce a spectrogram.
This PHY model supports a single antenna model instance which is used for reception (this PHY model never transmits).
Definition at line 48 of file spectrum-analyzer.h.
ns3::SpectrumAnalyzer::SpectrumAnalyzer | ( | ) |
Definition at line 37 of file spectrum-analyzer.cc.
References NS_LOG_FUNCTION.
|
virtual |
Definition at line 51 of file spectrum-analyzer.cc.
References NS_LOG_FUNCTION.
|
private |
Definition at line 164 of file spectrum-analyzer.cc.
References NS_LOG_FUNCTION, and UpdateEnergyReceivedSoFar().
Referenced by StartRx().
|
protectedvirtual |
This method is called by Object::Dispose or by the object's destructor, whichever comes first.
Subclasses are expected to implement their real destruction code in an overriden version of this method and chain up to their parent's implementation once they are done. i.e., for simplicity, the destructor of every subclass should be empty and its content should be moved to the associated DoDispose method.
It is safe to call GetObject from within this method.
Reimplemented from ns3::Object.
Definition at line 57 of file spectrum-analyzer.cc.
References m_channel, m_energySpectralDensity, m_mobility, m_netDevice, m_spectrumModel, m_sumPowerSpectralDensity, and NS_LOG_FUNCTION.
|
privatevirtual |
Definition at line 195 of file spectrum-analyzer.cc.
References ns3::Time::GetSeconds(), ns3::SpectrumValue::GetSpectrumModel(), m_active, m_averagePowerSpectralDensityReportTrace, m_noisePowerSpectralDensity, m_resolution, m_sumPowerSpectralDensity, NS_LOG_FUNCTION, NS_LOG_INFO, ns3::Simulator::Schedule(), and UpdateEnergyReceivedSoFar().
Referenced by Start().
get the associated NetDevice instance
Implements ns3::SpectrumPhy.
Definition at line 96 of file spectrum-analyzer.cc.
References m_netDevice.
|
virtual |
get the associated MobilityModel instance
Implements ns3::SpectrumPhy.
Definition at line 103 of file spectrum-analyzer.cc.
References m_mobility.
|
virtual |
get the AntennaModel used by the NetDevice for reception
Implements ns3::SpectrumPhy.
Definition at line 140 of file spectrum-analyzer.cc.
References m_antenna.
|
virtual |
Implements ns3::SpectrumPhy.
Definition at line 110 of file spectrum-analyzer.cc.
References m_spectrumModel.
|
static |
This method returns the TypeId associated to ns3::SpectrumAnalyzer.
Attributes defined for this type:
TraceSources defined for this type:
Reimplemented from ns3::SpectrumPhy.
Definition at line 70 of file spectrum-analyzer.cc.
References m_averagePowerSpectralDensityReportTrace, m_noisePowerSpectralDensity, m_resolution, ns3::MakeTraceSourceAccessor(), ns3::MilliSeconds(), and ns3::TypeId::SetParent().
void ns3::SpectrumAnalyzer::SetAntenna | ( | Ptr< AntennaModel > | a | ) |
set the AntennaModel to be used
a | the Antenna Model |
Definition at line 146 of file spectrum-analyzer.cc.
References m_antenna, and NS_LOG_FUNCTION.
|
virtual |
Set the channel attached to this device.
c | the channel |
Implements ns3::SpectrumPhy.
Definition at line 132 of file spectrum-analyzer.cc.
References m_channel, and NS_LOG_FUNCTION.
set the associated NetDevice instance
d | the NetDevice instance |
Implements ns3::SpectrumPhy.
Definition at line 116 of file spectrum-analyzer.cc.
References m_netDevice, and NS_LOG_FUNCTION.
|
virtual |
Set the mobility model associated with this device.
m | the mobility model |
Implements ns3::SpectrumPhy.
Definition at line 124 of file spectrum-analyzer.cc.
References m_mobility, and NS_LOG_FUNCTION.
void ns3::SpectrumAnalyzer::SetRxSpectrumModel | ( | Ptr< SpectrumModel > | m | ) |
Set the spectrum model used by the SpectrumAnalyzer to represent incoming signals
m |
Definition at line 219 of file spectrum-analyzer.cc.
References m_energySpectralDensity, m_spectrumModel, m_sumPowerSpectralDensity, NS_ASSERT, and NS_LOG_FUNCTION.
|
virtual |
Start the spectrum analyzer
Reimplemented from ns3::Object.
Definition at line 233 of file spectrum-analyzer.cc.
References GenerateReport(), m_active, m_resolution, NS_LOG_FUNCTION, NS_LOG_LOGIC, and ns3::Simulator::Schedule().
|
virtual |
Notify the SpectrumPhy instance of an incoming signal
params | the parameters of the signals being received |
Implements ns3::SpectrumPhy.
Definition at line 155 of file spectrum-analyzer.cc.
References AddSignal(), NS_LOG_FUNCTION, ns3::Simulator::Schedule(), and SubtractSignal().
|
virtual |
Stop the spectrum analyzer
Definition at line 246 of file spectrum-analyzer.cc.
References m_active.
|
private |
Definition at line 172 of file spectrum-analyzer.cc.
References NS_LOG_FUNCTION, and UpdateEnergyReceivedSoFar().
Referenced by StartRx().
|
private |
Definition at line 180 of file spectrum-analyzer.cc.
References m_lastChangeTime, ns3::Now(), NS_ASSERT, and NS_LOG_FUNCTION.
Referenced by AddSignal(), GenerateReport(), and SubtractSignal().
|
private |
Definition at line 116 of file spectrum-analyzer.h.
Referenced by GenerateReport(), Start(), and Stop().
|
private |
Definition at line 100 of file spectrum-analyzer.h.
Referenced by GetRxAntenna(), and SetAntenna().
|
private |
Definition at line 118 of file spectrum-analyzer.h.
Referenced by GenerateReport(), and GetTypeId().
|
private |
Definition at line 102 of file spectrum-analyzer.h.
Referenced by DoDispose(), and SetChannel().
|
private |
Definition at line 112 of file spectrum-analyzer.h.
Referenced by DoDispose(), and SetRxSpectrumModel().
|
private |
Definition at line 115 of file spectrum-analyzer.h.
Referenced by UpdateEnergyReceivedSoFar().
|
private |
Definition at line 99 of file spectrum-analyzer.h.
Referenced by DoDispose(), GetMobility(), and SetMobility().
Definition at line 101 of file spectrum-analyzer.h.
Referenced by DoDispose(), GetDevice(), and SetDevice().
|
private |
Definition at line 113 of file spectrum-analyzer.h.
Referenced by GenerateReport(), and GetTypeId().
|
private |
Definition at line 114 of file spectrum-analyzer.h.
Referenced by GenerateReport(), GetTypeId(), and Start().
|
private |
Definition at line 110 of file spectrum-analyzer.h.
Referenced by DoDispose(), GetRxSpectrumModel(), and SetRxSpectrumModel().
|
private |
Definition at line 111 of file spectrum-analyzer.h.
Referenced by DoDispose(), GenerateReport(), and SetRxSpectrumModel().