Simple SpectrumPhy implementation that sends customizable waveform. More...
#include "waveform-generator.h"
Public Member Functions | |
WaveformGenerator () | |
~WaveformGenerator () override | |
Ptr< Object > | GetAntenna () const override |
Get the AntennaModel used by this SpectrumPhy instance for transmission and/or reception. More... | |
Ptr< NetDevice > | GetDevice () const override |
Get the associated NetDevice instance. More... | |
double | GetDutyCycle () const |
Ptr< MobilityModel > | GetMobility () const override |
Get the associated MobilityModel instance. More... | |
Time | GetPeriod () const |
Ptr< const SpectrumModel > | GetRxSpectrumModel () const override |
void | SetAntenna (Ptr< AntennaModel > a) |
set the AntennaModel to be used More... | |
void | SetChannel (Ptr< SpectrumChannel > c) override |
Set the channel attached to this device. More... | |
void | SetDevice (Ptr< NetDevice > d) override |
Set the associated NetDevice instance. More... | |
void | SetDutyCycle (double value) |
void | SetMobility (Ptr< MobilityModel > m) override |
Set the mobility model associated with this device. More... | |
void | SetPeriod (Time period) |
Set the period according to which the WaveformGenerator switches on and off. More... | |
void | SetTxPowerSpectralDensity (Ptr< SpectrumValue > txs) |
Set the Power Spectral Density used for outgoing waveforms. More... | |
virtual void | Start () |
Start the waveform generator. More... | |
void | StartRx (Ptr< SpectrumSignalParameters > params) override |
Notify the SpectrumPhy instance of an incoming signal. More... | |
virtual void | Stop () |
Stop the waveform generator. More... | |
Public Member Functions inherited from ns3::SpectrumPhy | |
SpectrumPhy () | |
SpectrumPhy (const SpectrumPhy &)=delete | |
~SpectrumPhy () override | |
SpectrumPhy & | operator= (const SpectrumPhy &)=delete |
Public Member Functions inherited from ns3::Object | |
Object () | |
Constructor. More... | |
~Object () override | |
Destructor. More... | |
void | AggregateObject (Ptr< Object > other) |
Aggregate two Objects together. More... | |
void | Dispose () |
Dispose of this Object. More... | |
AggregateIterator | GetAggregateIterator () const |
Get an iterator to the Objects aggregated to this one. More... | |
TypeId | GetInstanceTypeId () const override |
Get the most derived TypeId for this Object. More... | |
template<typename T > | |
Ptr< T > | GetObject () const |
Get a pointer to the requested aggregated Object. More... | |
template<> | |
Ptr< Object > | GetObject () const |
Specialization of () for objects of type ns3::Object. More... | |
template<typename T > | |
Ptr< T > | GetObject (TypeId tid) const |
Get a pointer to the requested aggregated Object by TypeId. More... | |
template<> | |
Ptr< Object > | GetObject (TypeId tid) const |
Specialization of (TypeId tid) for objects of type ns3::Object. More... | |
void | Initialize () |
Invoke DoInitialize on all Objects aggregated to this one. More... | |
bool | IsInitialized () const |
Check if the object has been initialized. More... | |
Public Member Functions inherited from ns3::SimpleRefCount< Object, ObjectBase, ObjectDeleter > | |
SimpleRefCount () | |
Default constructor. More... | |
SimpleRefCount (const SimpleRefCount &o[[maybe_unused]]) | |
Copy constructor. More... | |
uint32_t | GetReferenceCount () const |
Get the reference count of the object. More... | |
SimpleRefCount & | operator= (const SimpleRefCount &o[[maybe_unused]]) |
Assignment operator. More... | |
void | Ref () const |
Increment the reference count. More... | |
void | Unref () const |
Decrement the reference count. More... | |
Public Member Functions inherited from ns3::ObjectBase | |
virtual | ~ObjectBase () |
Virtual destructor. More... | |
void | GetAttribute (std::string name, AttributeValue &value) const |
Get the value of an attribute, raising fatal errors if unsuccessful. More... | |
bool | GetAttributeFailSafe (std::string name, AttributeValue &value) const |
Get the value of an attribute without raising errors. More... | |
void | SetAttribute (std::string name, const AttributeValue &value) |
Set a single attribute, raising fatal errors if unsuccessful. More... | |
bool | SetAttributeFailSafe (std::string name, const AttributeValue &value) |
Set a single attribute without raising errors. More... | |
bool | TraceConnect (std::string name, std::string context, const CallbackBase &cb) |
Connect a TraceSource to a Callback with a context. More... | |
bool | TraceConnectWithoutContext (std::string name, const CallbackBase &cb) |
Connect a TraceSource to a Callback without a context. More... | |
bool | TraceDisconnect (std::string name, std::string context, const CallbackBase &cb) |
Disconnect from a TraceSource a Callback previously connected with a context. More... | |
bool | TraceDisconnectWithoutContext (std::string name, const CallbackBase &cb) |
Disconnect from a TraceSource a Callback previously connected without a context. More... | |
Static Public Member Functions | |
static TypeId | GetTypeId () |
Get the type ID. More... | |
Static Public Member Functions inherited from ns3::SpectrumPhy | |
static TypeId | GetTypeId () |
Get the type ID. More... | |
Static Public Member Functions inherited from ns3::Object | |
static TypeId | GetTypeId () |
Register this type. More... | |
Static Public Member Functions inherited from ns3::ObjectBase | |
static TypeId | GetTypeId () |
Get the type ID. More... | |
Private Member Functions | |
void | DoDispose () override |
Destructor implementation. More... | |
virtual void | GenerateWaveform () |
Generates a waveform. More... | |
Private Attributes | |
Ptr< AntennaModel > | m_antenna |
Antenna model. More... | |
Ptr< SpectrumChannel > | m_channel |
Channel. More... | |
double | m_dutyCycle |
Duty Cycle (should be in [0,1]) More... | |
Ptr< MobilityModel > | m_mobility |
Mobility model. More... | |
Ptr< NetDevice > | m_netDevice |
Owning NetDevice. More... | |
EventId | m_nextWave |
Next waveform generation event. More... | |
Time | m_period |
Period. More... | |
TracedCallback< Ptr< const Packet > > | m_phyTxEndTrace |
TracedCallback: Tx end. More... | |
TracedCallback< Ptr< const Packet > > | m_phyTxStartTrace |
TracedCallback: Tx start. More... | |
Time | m_startTime |
Start time. More... | |
Ptr< SpectrumValue > | m_txPowerSpectralDensity |
Tx PSD. More... | |
Additional Inherited Members | |
Protected Member Functions inherited from ns3::Object | |
Object (const Object &o) | |
Copy an Object. More... | |
virtual void | DoInitialize () |
Initialize() implementation. More... | |
virtual void | NotifyNewAggregate () |
Notify all Objects aggregated to this one of a new Object being aggregated. More... | |
Protected Member Functions inherited from ns3::ObjectBase | |
void | ConstructSelf (const AttributeConstructionList &attributes) |
Complete construction of ObjectBase; invoked by derived classes. More... | |
virtual void | NotifyConstructionCompleted () |
Notifier called once the ObjectBase is fully constructed. More... | |
Related Functions inherited from ns3::ObjectBase | |
static TypeId | GetObjectIid () |
Ensure the TypeId for ObjectBase gets fully configured to anchor the inheritance tree properly. More... | |
Simple SpectrumPhy implementation that sends customizable waveform.
The generated waveforms have a given Spectrum Power Density and duration (set with the SetResolution()) . The generator activates and deactivates periodically with a given period and with a duty cycle of 1/2.
This PHY model supports a single antenna model instance which is used for both transmission and reception (though received signals are discarded by this PHY).
Definition at line 52 of file waveform-generator.h.
ns3::WaveformGenerator::WaveformGenerator | ( | ) |
Definition at line 36 of file waveform-generator.cc.
|
override |
Definition at line 45 of file waveform-generator.cc.
|
overrideprivatevirtual |
Destructor implementation.
This method is called by Dispose() or by the Object's destructor, whichever comes first.
Subclasses are expected to implement their real destruction code in an overridden 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 50 of file waveform-generator.cc.
References ns3::EventId::Cancel(), ns3::EventId::IsRunning(), m_channel, m_mobility, m_netDevice, m_nextWave, and NS_LOG_FUNCTION.
|
privatevirtual |
Generates a waveform.
Definition at line 183 of file waveform-generator.cc.
References ns3::SpectrumSignalParameters::duration, ns3::Time::GetTimeStep(), m_antenna, m_channel, m_dutyCycle, m_nextWave, m_period, m_phyTxStartTrace, m_txPowerSpectralDensity, NS_LOG_FUNCTION, NS_LOG_LOGIC, ns3::SpectrumSignalParameters::psd, ns3::Simulator::Schedule(), ns3::SpectrumSignalParameters::txAntenna, and ns3::SpectrumSignalParameters::txPhy.
Referenced by Start().
Get the AntennaModel used by this SpectrumPhy instance for transmission and/or reception.
Note that in general and depending on each module design, there can be multiple SpectrumPhy instances per NetDevice.
Implements ns3::SpectrumPhy.
Definition at line 146 of file waveform-generator.cc.
References m_antenna.
Get the associated NetDevice instance.
Implements ns3::SpectrumPhy.
Definition at line 95 of file waveform-generator.cc.
References m_netDevice.
double ns3::WaveformGenerator::GetDutyCycle | ( | ) | const |
Definition at line 177 of file waveform-generator.cc.
References m_dutyCycle.
Referenced by GetTypeId().
|
overridevirtual |
Get the associated MobilityModel instance.
Implements ns3::SpectrumPhy.
Definition at line 101 of file waveform-generator.cc.
References m_mobility.
Time ns3::WaveformGenerator::GetPeriod | ( | ) | const |
Definition at line 165 of file waveform-generator.cc.
References m_period.
Referenced by GetTypeId().
|
overridevirtual |
Implements ns3::SpectrumPhy.
Definition at line 107 of file waveform-generator.cc.
|
static |
Get the type ID.
Definition at line 63 of file waveform-generator.cc.
References GetDutyCycle(), GetPeriod(), m_phyTxEndTrace, m_phyTxStartTrace, ns3::MakeDoubleAccessor(), ns3::MakeTimeAccessor(), ns3::MakeTimeChecker(), ns3::MakeTraceSourceAccessor(), ns3::Seconds(), SetDutyCycle(), ns3::TypeId::SetParent(), and SetPeriod().
void ns3::WaveformGenerator::SetAntenna | ( | Ptr< AntennaModel > | a | ) |
set the AntennaModel to be used
a | the Antenna Model |
Definition at line 152 of file waveform-generator.cc.
References m_antenna, and NS_LOG_FUNCTION.
|
overridevirtual |
Set the channel attached to this device.
c | the channel |
Implements ns3::SpectrumPhy.
Definition at line 126 of file waveform-generator.cc.
References m_channel, and NS_LOG_FUNCTION_NOARGS.
Referenced by WifiPhyCcaIndicationTest::DoSetup(), TestDlOfdmaPhyTransmission::DoSetup(), TestDlOfdmaPhyPuncturing::DoSetup(), TestUlOfdmaPhyTransmission::DoSetup(), and TestPhyPaddingExclusion::DoSetup().
Set the associated NetDevice instance.
d | the NetDevice instance |
Implements ns3::SpectrumPhy.
Definition at line 114 of file waveform-generator.cc.
References m_netDevice.
Referenced by WifiPhyCcaIndicationTest::DoSetup(), TestDlOfdmaPhyTransmission::DoSetup(), TestDlOfdmaPhyPuncturing::DoSetup(), TestUlOfdmaPhyTransmission::DoSetup(), and TestPhyPaddingExclusion::DoSetup().
void ns3::WaveformGenerator::SetDutyCycle | ( | double | value | ) |
value | the value of the duty cycle |
Definition at line 171 of file waveform-generator.cc.
References m_dutyCycle.
Referenced by WifiPhyCcaIndicationTest::DoSetup(), TestDlOfdmaPhyTransmission::DoSetup(), TestDlOfdmaPhyPuncturing::DoSetup(), TestUlOfdmaPhyTransmission::DoSetup(), TestPhyPaddingExclusion::DoSetup(), and GetTypeId().
|
overridevirtual |
Set the mobility model associated with this device.
m | the mobility model |
Implements ns3::SpectrumPhy.
Definition at line 120 of file waveform-generator.cc.
References two-ray-to-three-gpp-ch-calibration::m, and m_mobility.
void ns3::WaveformGenerator::SetPeriod | ( | Time | period | ) |
Set the period according to which the WaveformGenerator switches on and off.
period |
Definition at line 159 of file waveform-generator.cc.
References m_period.
Referenced by TestDlOfdmaPhyTransmission::GenerateInterference(), TestDlOfdmaPhyPuncturing::GenerateInterference(), TestUlOfdmaPhyTransmission::GenerateInterference(), TestPhyPaddingExclusion::GenerateInterference(), TestNonHtDuplicatePhyReception::GenerateInterference(), GetTypeId(), and WifiPhyCcaIndicationTest::StartSignal().
void ns3::WaveformGenerator::SetTxPowerSpectralDensity | ( | Ptr< SpectrumValue > | txs | ) |
Set the Power Spectral Density used for outgoing waveforms.
txs | the Power Spectral Density |
Definition at line 139 of file waveform-generator.cc.
References m_txPowerSpectralDensity, and NS_LOG_FUNCTION.
Referenced by TestDlOfdmaPhyTransmission::GenerateInterference(), TestDlOfdmaPhyPuncturing::GenerateInterference(), TestUlOfdmaPhyTransmission::GenerateInterference(), TestPhyPaddingExclusion::GenerateInterference(), TestNonHtDuplicatePhyReception::GenerateInterference(), and WifiPhyCcaIndicationTest::StartSignal().
|
virtual |
Start the waveform generator.
Definition at line 202 of file waveform-generator.cc.
References GenerateWaveform(), ns3::EventId::IsRunning(), m_nextWave, m_startTime, ns3::Now(), NS_LOG_FUNCTION, NS_LOG_LOGIC, and ns3::Simulator::ScheduleNow().
Referenced by TestDlOfdmaPhyTransmission::GenerateInterference(), TestDlOfdmaPhyPuncturing::GenerateInterference(), TestUlOfdmaPhyTransmission::GenerateInterference(), TestPhyPaddingExclusion::GenerateInterference(), TestNonHtDuplicatePhyReception::GenerateInterference(), and WifiPhyCcaIndicationTest::StartSignal().
|
overridevirtual |
Notify the SpectrumPhy instance of an incoming signal.
params | the parameters of the signals being received |
Implements ns3::SpectrumPhy.
Definition at line 133 of file waveform-generator.cc.
References NS_LOG_FUNCTION, and two-ray-to-three-gpp-ch-calibration::params.
|
virtual |
Stop the waveform generator.
Definition at line 214 of file waveform-generator.cc.
References ns3::EventId::Cancel(), ns3::EventId::IsRunning(), m_nextWave, and NS_LOG_FUNCTION.
Referenced by TestDlOfdmaPhyTransmission::StopInterference(), TestDlOfdmaPhyPuncturing::StopInterference(), TestUlOfdmaPhyTransmission::StopInterference(), TestPhyPaddingExclusion::StopInterference(), TestNonHtDuplicatePhyReception::StopInterference(), and WifiPhyCcaIndicationTest::StopSignal().
|
private |
Antenna model.
Definition at line 131 of file waveform-generator.h.
Referenced by GenerateWaveform(), GetAntenna(), and SetAntenna().
|
private |
Definition at line 133 of file waveform-generator.h.
Referenced by DoDispose(), GenerateWaveform(), and SetChannel().
|
private |
Duty Cycle (should be in [0,1])
Definition at line 142 of file waveform-generator.h.
Referenced by GenerateWaveform(), GetDutyCycle(), and SetDutyCycle().
|
private |
Mobility model.
Definition at line 130 of file waveform-generator.h.
Referenced by DoDispose(), GetMobility(), and SetMobility().
Owning NetDevice.
Definition at line 132 of file waveform-generator.h.
Referenced by DoDispose(), GetDevice(), and SetDevice().
|
private |
Next waveform generation event.
Definition at line 144 of file waveform-generator.h.
Referenced by DoDispose(), GenerateWaveform(), Start(), and Stop().
|
private |
Period.
Definition at line 141 of file waveform-generator.h.
Referenced by GenerateWaveform(), GetPeriod(), and SetPeriod().
|
private |
TracedCallback: Tx end.
Definition at line 147 of file waveform-generator.h.
Referenced by GetTypeId().
|
private |
TracedCallback: Tx start.
Definition at line 146 of file waveform-generator.h.
Referenced by GenerateWaveform(), and GetTypeId().
|
private |
|
private |
Tx PSD.
Definition at line 140 of file waveform-generator.h.
Referenced by GenerateWaveform(), and SetTxPowerSpectralDensity().