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

A simple device energy model where current drain can be set by the user. More...

#include "simple-device-energy-model.h"

+ Inheritance diagram for ns3::energy::SimpleDeviceEnergyModel:
+ Collaboration diagram for ns3::energy::SimpleDeviceEnergyModel:

Public Member Functions

 SimpleDeviceEnergyModel ()
 
 ~SimpleDeviceEnergyModel () override
 
void ChangeState (int newState) override
 
virtual Ptr< NodeGetNode () const
 Gets pointer to node.
 
double GetTotalEnergyConsumption () const override
 
void HandleEnergyChanged () override
 Handles energy changed.
 
void HandleEnergyDepletion () override
 Handles energy depletion.
 
void HandleEnergyRecharged () override
 Handles energy recharged.
 
void SetCurrentA (double current)
 
void SetEnergySource (Ptr< EnergySource > source) override
 Sets pointer to EnergySource installed on node.
 
virtual void SetNode (Ptr< Node > node)
 Sets pointer to node.
 
- Public Member Functions inherited from ns3::energy::DeviceEnergyModel
 DeviceEnergyModel ()
 
 ~DeviceEnergyModel () override
 
double GetCurrentA () const
 
- 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, bool permissive=false) 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.
 
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::energy::DeviceEnergyModel
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.
 
double DoGetCurrentA () const override
 

Private Attributes

double m_actualCurrentA
 actual curred (in Ampere)
 
Time m_lastUpdateTime
 Last update time.
 
Ptr< Nodem_node
 Node.
 
Ptr< EnergySourcem_source
 Energy source.
 
TracedValue< doublem_totalEnergyConsumption
 Total energy consumption trace.
 

Additional Inherited Members

- Public Types inherited from ns3::energy::DeviceEnergyModel
typedef Callback< void, int > ChangeStateCallback
 Callback type for ChangeState function.
 
- Protected Member Functions inherited from ns3::Object
 Object (const Object &o)
 Copy an Object.
 
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

A simple device energy model where current drain can be set by the user.

It is supposed to be used as a testing model for energy sources.

Definition at line 30 of file simple-device-energy-model.h.

Constructor & Destructor Documentation

◆ SimpleDeviceEnergyModel()

ns3::energy::SimpleDeviceEnergyModel::SimpleDeviceEnergyModel ( )

Definition at line 41 of file simple-device-energy-model.cc.

References m_actualCurrentA, m_lastUpdateTime, m_source, NS_LOG_FUNCTION, and ns3::Seconds().

+ Here is the call graph for this function:

◆ ~SimpleDeviceEnergyModel()

ns3::energy::SimpleDeviceEnergyModel::~SimpleDeviceEnergyModel ( )
override

Definition at line 49 of file simple-device-energy-model.cc.

References NS_LOG_FUNCTION.

Member Function Documentation

◆ ChangeState()

void ns3::energy::SimpleDeviceEnergyModel::ChangeState ( int newState)
inlineoverridevirtual
Parameters
newStateNew state the device is in.

Not implemented

Implements ns3::energy::DeviceEnergyModel.

Definition at line 80 of file simple-device-energy-model.h.

◆ DoDispose()

void ns3::energy::SimpleDeviceEnergyModel::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 113 of file simple-device-energy-model.cc.

References m_source, and NS_LOG_FUNCTION.

◆ DoGetCurrentA()

double ns3::energy::SimpleDeviceEnergyModel::DoGetCurrentA ( ) const
overrideprivatevirtual
Returns
Current draw of device, at current state.

Implements DeviceEnergyModel::GetCurrentA.

Reimplemented from ns3::energy::DeviceEnergyModel.

Definition at line 120 of file simple-device-energy-model.cc.

References m_actualCurrentA, and NS_LOG_FUNCTION.

◆ GetNode()

Ptr< Node > ns3::energy::SimpleDeviceEnergyModel::GetNode ( ) const
virtual

Gets pointer to node.

Returns
Pointer to node.

Implements DeviceEnergyModel::GetNode.

Definition at line 71 of file simple-device-energy-model.cc.

References m_node, and NS_LOG_FUNCTION.

◆ GetTotalEnergyConsumption()

double ns3::energy::SimpleDeviceEnergyModel::GetTotalEnergyConsumption ( ) const
overridevirtual
Returns
Total energy consumption of the vehicle.

Implements DeviceEnergyModel::GetTotalEnergyConsumption.

Implements ns3::energy::DeviceEnergyModel.

Definition at line 78 of file simple-device-energy-model.cc.

References ns3::Time::GetSeconds(), m_actualCurrentA, m_lastUpdateTime, m_source, m_totalEnergyConsumption, ns3::Simulator::Now(), and NS_LOG_FUNCTION.

+ Here is the call graph for this function:

◆ GetTypeId()

TypeId ns3::energy::SimpleDeviceEnergyModel::GetTypeId ( )
static

Get the type ID.

Returns
The object TypeId.

Definition at line 26 of file simple-device-energy-model.cc.

References ns3::TypeId::AddDeprecatedName(), m_totalEnergyConsumption, ns3::MakeTraceSourceAccessor(), and ns3::TypeId::SetParent().

+ Here is the call graph for this function:

◆ HandleEnergyChanged()

void ns3::energy::SimpleDeviceEnergyModel::HandleEnergyChanged ( )
inlineoverridevirtual

Handles energy changed.

Not implemented

Implements ns3::energy::DeviceEnergyModel.

Definition at line 107 of file simple-device-energy-model.h.

◆ HandleEnergyDepletion()

void ns3::energy::SimpleDeviceEnergyModel::HandleEnergyDepletion ( )
inlineoverridevirtual

Handles energy depletion.

Not implemented

Implements ns3::energy::DeviceEnergyModel.

Definition at line 89 of file simple-device-energy-model.h.

◆ HandleEnergyRecharged()

void ns3::energy::SimpleDeviceEnergyModel::HandleEnergyRecharged ( )
inlineoverridevirtual

Handles energy recharged.

Not implemented

Implements ns3::energy::DeviceEnergyModel.

Definition at line 98 of file simple-device-energy-model.h.

◆ SetCurrentA()

void ns3::energy::SimpleDeviceEnergyModel::SetCurrentA ( double current)
Parameters
currentthe current draw of device.

Set the actual current draw of the device.

Definition at line 93 of file simple-device-energy-model.cc.

References ns3::Time::GetSeconds(), m_actualCurrentA, m_lastUpdateTime, m_source, m_totalEnergyConsumption, ns3::Simulator::Now(), and NS_LOG_FUNCTION.

+ Here is the call graph for this function:

◆ SetEnergySource()

void ns3::energy::SimpleDeviceEnergyModel::SetEnergySource ( Ptr< EnergySource > source)
overridevirtual

Sets pointer to EnergySource installed on node.

Parameters
sourcePointer to EnergySource installed on node.

Implements DeviceEnergyModel::SetEnergySource.

Implements ns3::energy::DeviceEnergyModel.

Definition at line 55 of file simple-device-energy-model.cc.

References m_source, NS_ASSERT, and NS_LOG_FUNCTION.

◆ SetNode()

void ns3::energy::SimpleDeviceEnergyModel::SetNode ( Ptr< Node > node)
virtual

Sets pointer to node.

Parameters
nodePointer to node.

Implements DeviceEnergyModel::SetNode.

Definition at line 63 of file simple-device-energy-model.cc.

References m_node, NS_ASSERT, and NS_LOG_FUNCTION.

Member Data Documentation

◆ m_actualCurrentA

double ns3::energy::SimpleDeviceEnergyModel::m_actualCurrentA
private

actual curred (in Ampere)

Definition at line 129 of file simple-device-energy-model.h.

Referenced by SimpleDeviceEnergyModel(), DoGetCurrentA(), GetTotalEnergyConsumption(), and SetCurrentA().

◆ m_lastUpdateTime

Time ns3::energy::SimpleDeviceEnergyModel::m_lastUpdateTime
private

Last update time.

Definition at line 128 of file simple-device-energy-model.h.

Referenced by SimpleDeviceEnergyModel(), GetTotalEnergyConsumption(), and SetCurrentA().

◆ m_node

Ptr<Node> ns3::energy::SimpleDeviceEnergyModel::m_node
private

Node.

Definition at line 131 of file simple-device-energy-model.h.

Referenced by GetNode(), and SetNode().

◆ m_source

Ptr<EnergySource> ns3::energy::SimpleDeviceEnergyModel::m_source
private

◆ m_totalEnergyConsumption

TracedValue<double> ns3::energy::SimpleDeviceEnergyModel::m_totalEnergyConsumption
private

Total energy consumption trace.

Definition at line 132 of file simple-device-energy-model.h.

Referenced by GetTotalEnergyConsumption(), GetTypeId(), and SetCurrentA().


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