Simple SpectrumPhy implementation that sends customizable waveform. More...
#include "waveform-generator.h"
Public Member Functions | |
WaveformGenerator () | |
virtual | ~WaveformGenerator () |
Ptr< Object > | GetAntenna () const |
Get the AntennaModel used by this SpectrumPhy instance for transmission and/or reception. More... | |
Ptr< NetDevice > | GetDevice () const |
Get the associated NetDevice instance. More... | |
double | GetDutyCycle () const |
Ptr< MobilityModel > | GetMobility () const |
Get the associated MobilityModel instance. More... | |
Time | GetPeriod () const |
Ptr< const SpectrumModel > | GetRxSpectrumModel () const |
void | SetAntenna (Ptr< AntennaModel > a) |
set the AntennaModel to be used More... | |
void | SetChannel (Ptr< SpectrumChannel > c) |
Set the channel attached to this device. More... | |
void | SetDevice (Ptr< NetDevice > d) |
Set the associated NetDevice instance. More... | |
void | SetDutyCycle (double value) |
void | SetMobility (Ptr< MobilityModel > m) |
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) |
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 (SpectrumPhy const &)=delete | |
virtual | ~SpectrumPhy () |
SpectrumPhy & | operator= (SpectrumPhy const &)=delete |
Public Member Functions inherited from ns3::Object | |
Object () | |
Constructor. More... | |
virtual | ~Object () |
Destructor. More... | |
void | AggregateObject (Ptr< Object > other) |
Aggregate two Objects together. More... | |
void | Dispose (void) |
Dispose of this Object. More... | |
AggregateIterator | GetAggregateIterator (void) const |
Get an iterator to the Objects aggregated to this one. More... | |
virtual TypeId | GetInstanceTypeId (void) const |
Get the most derived TypeId for this 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... | |
template<typename T > | |
Ptr< T > | GetObject (void) const |
Get a pointer to the requested aggregated Object. More... | |
void | Initialize (void) |
Invoke DoInitialize on all Objects aggregated to this one. More... | |
bool | IsInitialized (void) 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 (void) const |
Get the reference count of the object. More... | |
SimpleRefCount & | operator= ([[maybe_unused]] const SimpleRefCount &o) |
Assignment operator. More... | |
void | Ref (void) const |
Increment the reference count. More... | |
void | Unref (void) 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 erros. 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 (void) |
Get the type ID. More... | |
Static Public Member Functions inherited from ns3::SpectrumPhy | |
static TypeId | GetTypeId (void) |
Get the type ID. More... | |
Static Public Member Functions inherited from ns3::Object | |
static TypeId | GetTypeId (void) |
Register this type. More... | |
Static Public Member Functions inherited from ns3::ObjectBase | |
static TypeId | GetTypeId (void) |
Get the type ID. More... | |
Private Member Functions | |
virtual void | DoDispose (void) |
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 (void) |
Initialize() implementation. More... | |
virtual void | NotifyNewAggregate (void) |
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 (void) |
Notifier called once the ObjectBase is fully constructed. More... | |
Related Functions inherited from ns3::ObjectBase | |
static TypeId | GetObjectIid (void) |
Ensure the TypeId for ObjectBase gets fully configured to anchor the inheritance tree properly. More... | |
Simple SpectrumPhy implementation that sends customizable waveform.
Introspection did not find any typical Config paths.
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).
Size of this type is 168 bytes (on a 64-bit architecture).
Definition at line 53 of file waveform-generator.h.
ns3::WaveformGenerator::WaveformGenerator | ( | ) |
Definition at line 37 of file waveform-generator.cc.
|
virtual |
Definition at line 48 of file waveform-generator.cc.
|
privatevirtual |
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 55 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 198 of file waveform-generator.cc.
References ns3::Time::GetTimeStep(), m_antenna, m_channel, m_dutyCycle, m_nextWave, m_period, m_phyTxStartTrace, m_txPowerSpectralDensity, NS_LOG_FUNCTION, NS_LOG_LOGIC, and ns3::Simulator::Schedule().
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 158 of file waveform-generator.cc.
References m_antenna.
Get the associated NetDevice instance.
Implements ns3::SpectrumPhy.
Definition at line 101 of file waveform-generator.cc.
References m_netDevice.
double ns3::WaveformGenerator::GetDutyCycle | ( | ) | const |
Definition at line 190 of file waveform-generator.cc.
References m_dutyCycle.
Referenced by GetTypeId().
|
virtual |
Get the associated MobilityModel instance.
Implements ns3::SpectrumPhy.
Definition at line 108 of file waveform-generator.cc.
References m_mobility.
Time ns3::WaveformGenerator::GetPeriod | ( | ) | const |
Definition at line 177 of file waveform-generator.cc.
References m_period.
Referenced by GetTypeId().
|
virtual |
Implements ns3::SpectrumPhy.
Definition at line 115 of file waveform-generator.cc.
|
static |
Get the type ID.
Definition at line 68 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 164 of file waveform-generator.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 136 of file waveform-generator.cc.
References m_channel, and NS_LOG_FUNCTION_NOARGS.
Referenced by TestDlOfdmaPhyTransmission::DoSetup(), TestUlOfdmaPhyTransmission::DoSetup(), and TestPhyPaddingExclusion::DoSetup().
Set the associated NetDevice instance.
d | the NetDevice instance |
Implements ns3::SpectrumPhy.
Definition at line 122 of file waveform-generator.cc.
References m_netDevice.
Referenced by TestDlOfdmaPhyTransmission::DoSetup(), TestUlOfdmaPhyTransmission::DoSetup(), and TestPhyPaddingExclusion::DoSetup().
void ns3::WaveformGenerator::SetDutyCycle | ( | double | value | ) |
value | the value of the duty cycle |
Definition at line 185 of file waveform-generator.cc.
References m_dutyCycle.
Referenced by TestDlOfdmaPhyTransmission::DoSetup(), TestUlOfdmaPhyTransmission::DoSetup(), TestPhyPaddingExclusion::DoSetup(), and GetTypeId().
|
virtual |
Set the mobility model associated with this device.
m | the mobility model |
Implements ns3::SpectrumPhy.
Definition at line 129 of file waveform-generator.cc.
References m_mobility.
void ns3::WaveformGenerator::SetPeriod | ( | Time | period | ) |
Set the period according to which the WaveformGenerator switches on and off.
period |
Definition at line 171 of file waveform-generator.cc.
References m_period.
Referenced by TestDlOfdmaPhyTransmission::GenerateInterference(), TestUlOfdmaPhyTransmission::GenerateInterference(), TestPhyPaddingExclusion::GenerateInterference(), and GetTypeId().
void ns3::WaveformGenerator::SetTxPowerSpectralDensity | ( | Ptr< SpectrumValue > | txs | ) |
Set the Power Spectral Density used for outgoing waveforms.
txs | the Power Spectral Density |
Definition at line 151 of file waveform-generator.cc.
References m_txPowerSpectralDensity, and NS_LOG_FUNCTION.
Referenced by TestDlOfdmaPhyTransmission::GenerateInterference(), TestUlOfdmaPhyTransmission::GenerateInterference(), and TestPhyPaddingExclusion::GenerateInterference().
|
virtual |
Start the waveform generator.
Definition at line 218 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(), TestUlOfdmaPhyTransmission::GenerateInterference(), and TestPhyPaddingExclusion::GenerateInterference().
|
virtual |
Notify the SpectrumPhy instance of an incoming signal.
params | the parameters of the signals being received |
Implements ns3::SpectrumPhy.
Definition at line 145 of file waveform-generator.cc.
References NS_LOG_FUNCTION.
|
virtual |
Stop the waveform generator.
Definition at line 231 of file waveform-generator.cc.
References ns3::EventId::Cancel(), ns3::EventId::IsRunning(), m_nextWave, and NS_LOG_FUNCTION.
Referenced by TestDlOfdmaPhyTransmission::StopInterference(), TestUlOfdmaPhyTransmission::StopInterference(), and TestPhyPaddingExclusion::StopInterference().
|
private |
Antenna model.
Definition at line 137 of file waveform-generator.h.
Referenced by GenerateWaveform(), GetAntenna(), and SetAntenna().
|
private |
Definition at line 139 of file waveform-generator.h.
Referenced by DoDispose(), GenerateWaveform(), and SetChannel().
|
private |
Duty Cycle (should be in [0,1])
Definition at line 148 of file waveform-generator.h.
Referenced by GenerateWaveform(), GetDutyCycle(), and SetDutyCycle().
|
private |
Mobility model.
Definition at line 136 of file waveform-generator.h.
Referenced by DoDispose(), GetMobility(), and SetMobility().
Owning NetDevice.
Definition at line 138 of file waveform-generator.h.
Referenced by DoDispose(), GetDevice(), and SetDevice().
|
private |
Next waveform generation event.
Definition at line 150 of file waveform-generator.h.
Referenced by DoDispose(), GenerateWaveform(), Start(), and Stop().
|
private |
Period.
Definition at line 147 of file waveform-generator.h.
Referenced by GenerateWaveform(), GetPeriod(), and SetPeriod().
|
private |
TracedCallback: Tx end.
Definition at line 153 of file waveform-generator.h.
Referenced by GetTypeId().
|
private |
TracedCallback: Tx start.
Definition at line 152 of file waveform-generator.h.
Referenced by GenerateWaveform(), and GetTypeId().
|
private |
|
private |
Tx PSD.
Definition at line 146 of file waveform-generator.h.
Referenced by GenerateWaveform(), and SetTxPowerSpectralDensity().