A Discrete-Event Network Simulator
API
Loading...
Searching...
No Matches
ns3::WaveformGenerator Class Reference

Simple SpectrumPhy implementation that sends customizable waveform. More...

#include "waveform-generator.h"

+ Inheritance diagram for ns3::WaveformGenerator:
+ Collaboration diagram for ns3::WaveformGenerator:

Public Member Functions

 WaveformGenerator ()
 
 ~WaveformGenerator () override
 
Ptr< ObjectGetAntenna () const override
 Get the AntennaModel used by this SpectrumPhy instance for transmission and/or reception.
 
Ptr< NetDeviceGetDevice () const override
 Get the associated NetDevice instance.
 
double GetDutyCycle () const
 
Ptr< MobilityModelGetMobility () const override
 Get the associated MobilityModel instance.
 
Time GetPeriod () const
 
Ptr< const SpectrumModelGetRxSpectrumModel () const override
 
void SetAntenna (Ptr< AntennaModel > a)
 set the AntennaModel to be used
 
void SetChannel (Ptr< SpectrumChannel > c) override
 Set the channel attached to this device.
 
void SetDevice (Ptr< NetDevice > d) override
 Set the associated NetDevice instance.
 
void SetDutyCycle (double value)
 
void SetMobility (Ptr< MobilityModel > m) override
 Set the mobility model associated with this device.
 
void SetPeriod (Time period)
 Set the period according to which the WaveformGenerator switches on and off.
 
void SetTxPowerSpectralDensity (Ptr< SpectrumValue > txs)
 Set the Power Spectral Density used for outgoing waveforms.
 
virtual void Start ()
 Start the waveform generator.
 
void StartRx (Ptr< SpectrumSignalParameters > params) override
 Notify the SpectrumPhy instance of an incoming signal.
 
virtual void Stop ()
 Stop the waveform generator.
 
- Public Member Functions inherited from ns3::SpectrumPhy
 SpectrumPhy ()
 
 SpectrumPhy (const SpectrumPhy &)=delete
 
 ~SpectrumPhy () override
 
virtual Ptr< ObjectGetAntenna () const =0
 Get the AntennaModel used by this SpectrumPhy instance for transmission and/or reception.
 
virtual Ptr< NetDeviceGetDevice () const =0
 Get the associated NetDevice instance.
 
virtual Ptr< MobilityModelGetMobility () const =0
 Get the associated MobilityModel instance.
 
virtual Ptr< const SpectrumModelGetRxSpectrumModel () const =0
 
SpectrumPhyoperator= (const SpectrumPhy &)=delete
 
virtual void SetChannel (Ptr< SpectrumChannel > c)=0
 Set the channel attached to this device.
 
virtual void SetDevice (Ptr< NetDevice > d)=0
 Set the associated NetDevice instance.
 
virtual void SetMobility (Ptr< MobilityModel > m)=0
 Set the mobility model associated with this device.
 
virtual void StartRx (Ptr< SpectrumSignalParameters > params)=0
 Notify the SpectrumPhy instance of an incoming signal.
 
- Public Member Functions inherited from ns3::Object
 Object ()
 Constructor.
 
 ~Object () override
 Destructor.
 
void AggregateObject (Ptr< Object > other)
 Aggregate two Objects together.
 
void Dispose ()
 Dispose of this Object.
 
AggregateIterator GetAggregateIterator () const
 Get an iterator to the Objects aggregated to this one.
 
TypeId GetInstanceTypeId () const override
 Get the most derived TypeId for this Object.
 
template<typename T >
Ptr< T > GetObject () const
 Get a pointer to the requested aggregated Object.
 
template<>
Ptr< ObjectGetObject () const
 Specialization of () for objects of type ns3::Object.
 
template<typename T >
Ptr< T > GetObject (TypeId tid) const
 Get a pointer to the requested aggregated Object by TypeId.
 
template<>
Ptr< ObjectGetObject (TypeId tid) const
 Specialization of (TypeId tid) for objects of type ns3::Object.
 
void Initialize ()
 Invoke DoInitialize on all Objects aggregated to this one.
 
bool IsInitialized () const
 Check if the object has been initialized.
 
void UnidirectionalAggregateObject (Ptr< Object > other)
 Aggregate an Object to another Object.
 
- Public Member Functions inherited from ns3::SimpleRefCount< Object, ObjectBase, ObjectDeleter >
 SimpleRefCount ()
 Default constructor.
 
 SimpleRefCount (const SimpleRefCount &o)
 Copy constructor.
 
uint32_t GetReferenceCount () const
 Get the reference count of the object.
 
SimpleRefCountoperator= (const SimpleRefCount &o)
 Assignment operator.
 
void Ref () const
 Increment the reference count.
 
void Unref () const
 Decrement the reference count.
 
- Public Member Functions inherited from ns3::ObjectBase
virtual ~ObjectBase ()
 Virtual destructor.
 
void GetAttribute (std::string name, AttributeValue &value) const
 Get the value of an attribute, raising fatal errors if unsuccessful.
 
bool GetAttributeFailSafe (std::string name, AttributeValue &value) const
 Get the value of an attribute without raising errors.
 
virtual TypeId GetInstanceTypeId () const =0
 Get the most derived TypeId for this Object.
 
void SetAttribute (std::string name, const AttributeValue &value)
 Set a single attribute, raising fatal errors if unsuccessful.
 
bool SetAttributeFailSafe (std::string name, const AttributeValue &value)
 Set a single attribute without raising errors.
 
bool TraceConnect (std::string name, std::string context, const CallbackBase &cb)
 Connect a TraceSource to a Callback with a context.
 
bool TraceConnectWithoutContext (std::string name, const CallbackBase &cb)
 Connect a TraceSource to a Callback without a context.
 
bool TraceDisconnect (std::string name, std::string context, const CallbackBase &cb)
 Disconnect from a TraceSource a Callback previously connected with a context.
 
bool TraceDisconnectWithoutContext (std::string name, const CallbackBase &cb)
 Disconnect from a TraceSource a Callback previously connected without a context.
 

Static Public Member Functions

static TypeId GetTypeId ()
 Get the type ID.
 
- Static Public Member Functions inherited from ns3::SpectrumPhy
static TypeId GetTypeId ()
 Get the type ID.
 
- Static Public Member Functions inherited from ns3::Object
static TypeId GetTypeId ()
 Register this type.
 
- Static Public Member Functions inherited from ns3::ObjectBase
static TypeId GetTypeId ()
 Get the type ID.
 

Private Member Functions

void DoDispose () override
 Destructor implementation.
 
virtual void GenerateWaveform ()
 Generates a waveform.
 

Private Attributes

Ptr< AntennaModelm_antenna
 Antenna model.
 
Ptr< SpectrumChannelm_channel
 Channel.
 
double m_dutyCycle
 Duty Cycle (should be in [0,1])
 
Ptr< MobilityModelm_mobility
 Mobility model.
 
Ptr< NetDevicem_netDevice
 Owning NetDevice.
 
EventId m_nextWave
 Next waveform generation event.
 
Time m_period
 Period.
 
TracedCallback< Ptr< const Packet > > m_phyTxEndTrace
 TracedCallback: Tx end.
 
TracedCallback< Ptr< const Packet > > m_phyTxStartTrace
 TracedCallback: Tx start.
 
Time m_startTime
 Start time.
 
Ptr< SpectrumValuem_txPowerSpectralDensity
 Tx PSD.
 

Additional Inherited Members

- Protected Member Functions inherited from ns3::Object
 Object (const Object &o)
 Copy an Object.
 
virtual void DoDispose ()
 Destructor implementation.
 
virtual void DoInitialize ()
 Initialize() implementation.
 
virtual void NotifyNewAggregate ()
 Notify all Objects aggregated to this one of a new Object being aggregated.
 
- Protected Member Functions inherited from ns3::ObjectBase
void ConstructSelf (const AttributeConstructionList &attributes)
 Complete construction of ObjectBase; invoked by derived classes.
 
virtual void NotifyConstructionCompleted ()
 Notifier called once the ObjectBase is fully constructed.
 

Detailed Description

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).


Attributes

  • DutyCycle: the duty cycle of the generator, i.e., the fraction of the period that is occupied by a signal
    • Set with class: ns3::DoubleValue
    • Underlying type: double -1.79769e+308:1.79769e+308
    • Initial value: 0.5
    • Flags: constructwriteread
  • Period: the period (=1/frequency)
    • Set with class: ns3::TimeValue
    • Underlying type: Time +9.22337e+18ns:+9.22337e+18ns
    • Initial value: +1e+09ns
    • Flags: constructwriteread

TraceSources

Size of this type is 176 bytes (on a 64-bit architecture).

Definition at line 52 of file waveform-generator.h.

Constructor & Destructor Documentation

◆ WaveformGenerator()

ns3::WaveformGenerator::WaveformGenerator ( )

Definition at line 36 of file waveform-generator.cc.

◆ ~WaveformGenerator()

ns3::WaveformGenerator::~WaveformGenerator ( )
override

Definition at line 45 of file waveform-generator.cc.

Member Function Documentation

◆ DoDispose()

void ns3::WaveformGenerator::DoDispose ( )
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.

+ Here is the call graph for this function:

◆ GenerateWaveform()

void ns3::WaveformGenerator::GenerateWaveform ( )
privatevirtual

Generates a waveform.

Definition at line 183 of file waveform-generator.cc.

References GenerateWaveform(), 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 GenerateWaveform(), and Start().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ GetAntenna()

Ptr< Object > ns3::WaveformGenerator::GetAntenna ( ) const
overridevirtual

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.

Returns
a Ptr to the AntennaModel used by this SpectrumPhy instance for transmission and/or reception

Implements ns3::SpectrumPhy.

Definition at line 146 of file waveform-generator.cc.

References m_antenna.

◆ GetDevice()

Ptr< NetDevice > ns3::WaveformGenerator::GetDevice ( ) const
overridevirtual

Get the associated NetDevice instance.

Returns
a Ptr to the associated NetDevice instance

Implements ns3::SpectrumPhy.

Definition at line 95 of file waveform-generator.cc.

References m_netDevice.

◆ GetDutyCycle()

double ns3::WaveformGenerator::GetDutyCycle ( ) const
Returns
the value of the duty cycle

Definition at line 177 of file waveform-generator.cc.

References m_dutyCycle.

Referenced by GetTypeId().

+ Here is the caller graph for this function:

◆ GetMobility()

Ptr< MobilityModel > ns3::WaveformGenerator::GetMobility ( ) const
overridevirtual

Get the associated MobilityModel instance.

Returns
a Ptr to the associated MobilityModel instance

Implements ns3::SpectrumPhy.

Definition at line 101 of file waveform-generator.cc.

References m_mobility.

◆ GetPeriod()

Time ns3::WaveformGenerator::GetPeriod ( ) const
Returns
the value of the period according to which the WaveformGenerator switches on and off

Definition at line 165 of file waveform-generator.cc.

References m_period.

Referenced by GetTypeId().

+ Here is the caller graph for this function:

◆ GetRxSpectrumModel()

Ptr< const SpectrumModel > ns3::WaveformGenerator::GetRxSpectrumModel ( ) const
overridevirtual
Returns
returns the SpectrumModel that this SpectrumPhy expects to be used for all SpectrumValues that are passed to StartRx. If 0 is returned, it means that any model will be accepted.

Implements ns3::SpectrumPhy.

Definition at line 107 of file waveform-generator.cc.

◆ GetTypeId()

TypeId ns3::WaveformGenerator::GetTypeId ( )
static

Get the type ID.

Returns
the object TypeId

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().

+ Here is the call graph for this function:

◆ SetAntenna()

void ns3::WaveformGenerator::SetAntenna ( Ptr< AntennaModel a)

set the AntennaModel to be used

Parameters
athe Antenna Model

Definition at line 152 of file waveform-generator.cc.

References m_antenna, and NS_LOG_FUNCTION.

◆ SetChannel()

void ns3::WaveformGenerator::SetChannel ( Ptr< SpectrumChannel c)
overridevirtual

Set the channel attached to this device.

Parameters
cthe channel

Implements ns3::SpectrumPhy.

Definition at line 126 of file waveform-generator.cc.

References m_channel, and NS_LOG_FUNCTION_NOARGS.

Referenced by TestDlOfdmaPhyTransmission::DoSetup(), TestDlOfdmaPhyPuncturing::DoSetup(), TestUlOfdmaPhyTransmission::DoSetup(), and TestPhyPaddingExclusion::DoSetup().

+ Here is the caller graph for this function:

◆ SetDevice()

void ns3::WaveformGenerator::SetDevice ( Ptr< NetDevice d)
overridevirtual

Set the associated NetDevice instance.

Parameters
dthe NetDevice instance

Implements ns3::SpectrumPhy.

Definition at line 114 of file waveform-generator.cc.

References m_netDevice.

Referenced by TestDlOfdmaPhyTransmission::DoSetup(), TestDlOfdmaPhyPuncturing::DoSetup(), TestUlOfdmaPhyTransmission::DoSetup(), and TestPhyPaddingExclusion::DoSetup().

+ Here is the caller graph for this function:

◆ SetDutyCycle()

void ns3::WaveformGenerator::SetDutyCycle ( double  value)
Parameters
valuethe value of the duty cycle

Definition at line 171 of file waveform-generator.cc.

References m_dutyCycle.

Referenced by TestDlOfdmaPhyTransmission::DoSetup(), TestDlOfdmaPhyPuncturing::DoSetup(), TestUlOfdmaPhyTransmission::DoSetup(), TestPhyPaddingExclusion::DoSetup(), and GetTypeId().

+ Here is the caller graph for this function:

◆ SetMobility()

void ns3::WaveformGenerator::SetMobility ( Ptr< MobilityModel m)
overridevirtual

Set the mobility model associated with this device.

Parameters
mthe mobility model

Implements ns3::SpectrumPhy.

Definition at line 120 of file waveform-generator.cc.

References m_mobility.

◆ SetPeriod()

void ns3::WaveformGenerator::SetPeriod ( Time  period)

Set the period according to which the WaveformGenerator switches on and off.

Parameters
period

Definition at line 159 of file waveform-generator.cc.

References m_period.

Referenced by TestDlOfdmaPhyTransmission::GenerateInterference(), TestDlOfdmaPhyPuncturing::GenerateInterference(), TestUlOfdmaPhyTransmission::GenerateInterference(), TestPhyPaddingExclusion::GenerateInterference(), and GetTypeId().

+ Here is the caller graph for this function:

◆ SetTxPowerSpectralDensity()

void ns3::WaveformGenerator::SetTxPowerSpectralDensity ( Ptr< SpectrumValue txs)

Set the Power Spectral Density used for outgoing waveforms.

Parameters
txsthe 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(), and TestPhyPaddingExclusion::GenerateInterference().

+ Here is the caller graph for this function:

◆ Start()

void ns3::WaveformGenerator::Start ( )
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 WaveformGeneratorTestCase::DoRun(), TestDlOfdmaPhyTransmission::GenerateInterference(), TestDlOfdmaPhyPuncturing::GenerateInterference(), TestUlOfdmaPhyTransmission::GenerateInterference(), and TestPhyPaddingExclusion::GenerateInterference().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ StartRx()

void ns3::WaveformGenerator::StartRx ( Ptr< SpectrumSignalParameters params)
overridevirtual

Notify the SpectrumPhy instance of an incoming signal.

Parameters
paramsthe parameters of the signals being received

Implements ns3::SpectrumPhy.

Definition at line 133 of file waveform-generator.cc.

References NS_LOG_FUNCTION.

◆ Stop()

void ns3::WaveformGenerator::Stop ( )
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 WaveformGeneratorTestCase::DoRun(), TestDlOfdmaPhyTransmission::StopInterference(), TestDlOfdmaPhyPuncturing::StopInterference(), TestUlOfdmaPhyTransmission::StopInterference(), and TestPhyPaddingExclusion::StopInterference().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

Member Data Documentation

◆ m_antenna

Ptr<AntennaModel> ns3::WaveformGenerator::m_antenna
private

Antenna model.

Definition at line 131 of file waveform-generator.h.

Referenced by GenerateWaveform(), GetAntenna(), and SetAntenna().

◆ m_channel

Ptr<SpectrumChannel> ns3::WaveformGenerator::m_channel
private

Channel.

Definition at line 133 of file waveform-generator.h.

Referenced by DoDispose(), GenerateWaveform(), and SetChannel().

◆ m_dutyCycle

double ns3::WaveformGenerator::m_dutyCycle
private

Duty Cycle (should be in [0,1])

Definition at line 142 of file waveform-generator.h.

Referenced by GenerateWaveform(), GetDutyCycle(), and SetDutyCycle().

◆ m_mobility

Ptr<MobilityModel> ns3::WaveformGenerator::m_mobility
private

Mobility model.

Definition at line 130 of file waveform-generator.h.

Referenced by DoDispose(), GetMobility(), and SetMobility().

◆ m_netDevice

Ptr<NetDevice> ns3::WaveformGenerator::m_netDevice
private

Owning NetDevice.

Definition at line 132 of file waveform-generator.h.

Referenced by DoDispose(), GetDevice(), and SetDevice().

◆ m_nextWave

EventId ns3::WaveformGenerator::m_nextWave
private

Next waveform generation event.

Definition at line 144 of file waveform-generator.h.

Referenced by DoDispose(), GenerateWaveform(), Start(), and Stop().

◆ m_period

Time ns3::WaveformGenerator::m_period
private

Period.

Definition at line 141 of file waveform-generator.h.

Referenced by GenerateWaveform(), GetPeriod(), and SetPeriod().

◆ m_phyTxEndTrace

TracedCallback<Ptr<const Packet> > ns3::WaveformGenerator::m_phyTxEndTrace
private

TracedCallback: Tx end.

Definition at line 147 of file waveform-generator.h.

Referenced by GetTypeId().

◆ m_phyTxStartTrace

TracedCallback<Ptr<const Packet> > ns3::WaveformGenerator::m_phyTxStartTrace
private

TracedCallback: Tx start.

Definition at line 146 of file waveform-generator.h.

Referenced by GenerateWaveform(), and GetTypeId().

◆ m_startTime

Time ns3::WaveformGenerator::m_startTime
private

Start time.

Definition at line 143 of file waveform-generator.h.

Referenced by Start().

◆ m_txPowerSpectralDensity

Ptr<SpectrumValue> ns3::WaveformGenerator::m_txPowerSpectralDensity
private

Tx PSD.

Definition at line 140 of file waveform-generator.h.

Referenced by GenerateWaveform(), and SetTxPowerSpectralDensity().


The documentation for this class was generated from the following files: