22 #include <ns3/object-factory.h>
24 #include <ns3/double.h>
25 #include <ns3/simulator.h>
26 #include <ns3/trace-source-accessor.h>
27 #include <ns3/antenna-model.h>
42 m_sumPowerSpectralDensity (0),
74 .AddConstructor<SpectrumAnalyzer> ()
75 .AddAttribute (
"Resolution",
76 "The lengh of the time interval over which the "
77 "power spectral density of incoming signals is averaged",
81 .AddAttribute (
"NoisePowerSpectralDensity",
82 "The power spectral density of the measuring instrument "
83 "noise, in Watt/Hz. Mostly useful to make spectrograms "
84 "look more similar to those obtained by real devices. "
85 "Defaults to the value for thermal noise at 300K.",
88 MakeDoubleChecker<double> ())
89 .AddTraceSource (
"AveragePowerSpectralDensityReport",
90 "Trace fired whenever a new value for the average "
91 "Power Spectral Density is calculated",
93 "ns3::SpectrumValue::TracedCallback")
173 (*m_sumPowerSpectralDensity) += (*psd);
181 (*m_sumPowerSpectralDensity) -= (*psd);
190 (*m_energySpectralDensity) += (*m_sumPowerSpectralDensity) * ((
Now () -
m_lastChangeTime).GetSeconds ());
208 (*m_energySpectralDensity) = 0;
213 *avgPowerSpectralDensity = 0;
Smart pointer class similar to boost::intrusive_ptr.
#define NS_LOG_FUNCTION(parameters)
If log level LOG_FUNCTION is enabled, this macro will output all input parameters separated by "...
Abstract base class for Spectrum-aware PHY layers.
Ptr< NetDevice > m_netDevice
#define NS_OBJECT_ENSURE_REGISTERED(type)
Register an Object subclass with the TypeId system.
void StartRx(Ptr< SpectrumSignalParameters > params)
Notify the SpectrumPhy instance of an incoming signal.
double m_noisePowerSpectralDensity
Ptr< NetDevice > GetDevice()
get the associated NetDevice instance
Ptr< AntennaModel > m_antenna
#define NS_ASSERT(condition)
At runtime, in debugging builds, if this condition is not true, the program prints the source file...
#define NS_LOG_COMPONENT_DEFINE(name)
Define a Log component with a specific name.
Time MilliSeconds(uint64_t value)
Construct a Time in the indicated unit.
virtual void Start()
Start the spectrum analyzer.
virtual void DoDispose(void)
Destructor implementation.
#define NS_LOG_INFO(msg)
Use NS_LOG to output a message of level LOG_INFO.
static EventId Schedule(Time const &time, MEM mem_ptr, OBJ obj)
Schedule an event to expire at the relative time "time" is reached.
void SetChannel(Ptr< SpectrumChannel > c)
Set the channel attached to this device.
Ptr< const TraceSourceAccessor > MakeTraceSourceAccessor(T a)
Create a TraceSourceAccessor which will control access to the underlying trace source.
Ptr< const AttributeChecker > MakeTimeChecker(const Time min, const Time max)
Helper to make a Time checker with bounded range.
double GetSeconds(void) const
Get an approximation of the time stored in this instance in the indicated unit.
Ptr< SpectrumChannel > m_channel
AttributeValue implementation for Time.
virtual ~SpectrumAnalyzer()
Ptr< const SpectrumModel > GetSpectrumModel() const
static TypeId GetTypeId(void)
virtual void Stop()
Stop the spectrum analyzer.
void SetRxSpectrumModel(Ptr< SpectrumModel > m)
Set the spectrum model used by the SpectrumAnalyzer to represent incoming signals.
#define NS_LOG_LOGIC(msg)
Use NS_LOG to output a message of level LOG_LOGIC.
void DoDispose()
Destructor implementation.
void SetDevice(Ptr< NetDevice > d)
set the associated NetDevice instance
Every class exported by the ns3 library is enclosed in the ns3 namespace.
void AddSignal(Ptr< const SpectrumValue > psd)
Ptr< const AttributeAccessor > MakeTimeAccessor(T1 a1)
Create an AttributeAccessor for a class data member, or a lone class get functor or set method...
TracedCallback< Ptr< const SpectrumValue > > m_averagePowerSpectralDensityReportTrace
Ptr< const AttributeAccessor > MakeDoubleAccessor(T1 a1)
Create an AttributeAccessor for a class data member, or a lone class get functor or set method...
Ptr< SpectrumValue > m_sumPowerSpectralDensity
Ptr< SpectrumModel > m_spectrumModel
Ptr< MobilityModel > GetMobility()
get the associated MobilityModel instance
virtual void GenerateReport()
void SetMobility(Ptr< MobilityModel > m)
Set the mobility model associated with this device.
Time Now(void)
create an ns3::Time instance which contains the current simulation time.
Ptr< const SpectrumModel > GetRxSpectrumModel() const
Ptr< AntennaModel > GetRxAntenna()
get the AntennaModel used by the NetDevice for reception
This class can be used to hold variables of floating point type such as 'double' or 'float'...
void SubtractSignal(Ptr< const SpectrumValue > psd)
a unique identifier for an interface.
Ptr< MobilityModel > m_mobility
TypeId SetParent(TypeId tid)
Ptr< SpectrumValue > m_energySpectralDensity
void SetAntenna(Ptr< AntennaModel > a)
set the AntennaModel to be used
void UpdateEnergyReceivedSoFar()