#include "energy-source.h"
Public Member Functions | |
EnergySource () | |
~EnergySource () override | |
void | AppendDeviceEnergyModel (Ptr< DeviceEnergyModel > deviceEnergyModelPtr) |
void | ConnectEnergyHarvester (Ptr< EnergyHarvester > energyHarvesterPtr) |
void | DisposeDeviceModels () |
Calls Dispose () method of the device energy models. More... | |
DeviceEnergyModelContainer | FindDeviceEnergyModels (std::string name) |
DeviceEnergyModelContainer | FindDeviceEnergyModels (TypeId tid) |
virtual double | GetEnergyFraction ()=0 |
virtual double | GetInitialEnergy () const =0 |
Ptr< Node > | GetNode () const |
virtual double | GetRemainingEnergy ()=0 |
virtual double | GetSupplyVoltage () const =0 |
void | InitializeDeviceModels () |
Calls Start () method of the device energy models. More... | |
void | SetNode (Ptr< Node > node) |
Sets pointer to node containing this EnergySource. More... | |
virtual void | UpdateEnergySource ()=0 |
This function goes through the list of DeviceEnergyModels to obtain total current draw at the energy source and updates remaining energy. More... | |
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::Object | |
static TypeId | GetTypeId () |
Register this type. More... | |
Static Public Member Functions inherited from ns3::ObjectBase | |
static TypeId | GetTypeId () |
Get the type ID. More... | |
Protected Member Functions | |
void | BreakDeviceEnergyModelRefCycle () |
This function is called to break reference cycle between EnergySource and DeviceEnergyModel. More... | |
double | CalculateTotalCurrent () |
void | NotifyEnergyChanged () |
This function notifies all DeviceEnergyModel of energy changed event. More... | |
void | NotifyEnergyDrained () |
This function notifies all DeviceEnergyModel of energy depletion event. More... | |
void | NotifyEnergyRecharged () |
This function notifies all DeviceEnergyModel of energy recharged event. More... | |
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... | |
Private Member Functions | |
void | DoDispose () override |
All child's implementation must call BreakDeviceEnergyModelRefCycle to ensure reference cycles to DeviceEnergyModel objects are broken. More... | |
Private Attributes | |
std::vector< Ptr< EnergyHarvester > > | m_harvesters |
Vector of EnergyHarvester pointer connected to the same energy source. More... | |
DeviceEnergyModelContainer | m_models |
List of device energy models installed on the same node. More... | |
Ptr< Node > | m_node |
Pointer to node containing this EnergySource. More... | |
Additional Inherited Members | |
Related Functions inherited from ns3::ObjectBase | |
static TypeId | GetObjectIid () |
Ensure the TypeId for ObjectBase gets fully configured to anchor the inheritance tree properly. More... | |
Definition at line 86 of file energy-source.h.
ns3::EnergySource::EnergySource | ( | ) |
Definition at line 43 of file energy-source.cc.
References NS_LOG_FUNCTION.
|
override |
Definition at line 48 of file energy-source.cc.
References NS_LOG_FUNCTION.
void ns3::EnergySource::AppendDeviceEnergyModel | ( | Ptr< DeviceEnergyModel > | deviceEnergyModelPtr | ) |
deviceEnergyModelPtr | Pointer to device energy model. |
This function appends a device energy model to the end of a list of DeviceEnergyModelInfo structs.
Definition at line 68 of file energy-source.cc.
References ns3::DeviceEnergyModelContainer::Add(), m_models, NS_ASSERT, and NS_LOG_FUNCTION.
Referenced by AnimationRemainingEnergyTestCase::PrepareNetwork(), and BasicEnergyUpdateTest::StateSwitchTest().
|
protected |
This function is called to break reference cycle between EnergySource and DeviceEnergyModel.
Child of the EnergySource base class must call this function in their implementation of DoDispose to make sure the reference cycle is broken.
Normally this work will be completed by the DoDispose function. However it will be overridden in the child class. Hence we introduced this function.
Definition at line 232 of file energy-source.cc.
References ns3::DeviceEnergyModelContainer::Clear(), m_harvesters, m_models, m_node, and NS_LOG_FUNCTION.
Referenced by ns3::BasicEnergySource::DoDispose(), DoDispose(), ns3::GenericBatteryModel::DoDispose(), ns3::LiIonEnergySource::DoDispose(), and ns3::RvBatteryModel::DoDispose().
|
protected |
Definition at line 161 of file energy-source.cc.
References ns3::DeviceEnergyModelContainer::Begin(), ns3::DeviceEnergyModelContainer::End(), GetSupplyVoltage(), m_harvesters, m_models, NS_LOG_DEBUG, and NS_LOG_FUNCTION.
Referenced by ns3::BasicEnergySource::CalculateRemainingEnergy(), ns3::GenericBatteryModel::CalculateRemainingEnergy(), ns3::LiIonEnergySource::CalculateRemainingEnergy(), and ns3::RvBatteryModel::UpdateEnergySource().
void ns3::EnergySource::ConnectEnergyHarvester | ( | Ptr< EnergyHarvester > | energyHarvesterPtr | ) |
energyHarvesterPtr | Pointer to energy harvester. |
This function connect an energy harvester to the energy source. After the execution of this method, the pointer to the energy harvester is appended to the end of a vector of EnergyHarvester pointer. Note that the order in which different energy harvester are added to the energy source does not impact the simulation results.
Definition at line 138 of file energy-source.cc.
References m_harvesters, NS_ASSERT, and NS_LOG_FUNCTION.
Referenced by BasicEnergyHarvesterTestCase::DoRun().
void ns3::EnergySource::DisposeDeviceModels | ( | ) |
Calls Dispose () method of the device energy models.
Device energy models are not aggregated to the node, therefore we need to manually start them here. Called by EnergySourceContainer, which is aggregated to the node.
Definition at line 123 of file energy-source.cc.
References ns3::DeviceEnergyModelContainer::Begin(), ns3::DeviceEnergyModelContainer::End(), m_models, and NS_LOG_FUNCTION.
|
overrideprivatevirtual |
All child's implementation must call BreakDeviceEnergyModelRefCycle to ensure reference cycles to DeviceEnergyModel objects are broken.
Defined in ns3::Object
Reimplemented from ns3::Object.
Reimplemented in ns3::RvBatteryModel, ns3::LiIonEnergySource, and ns3::GenericBatteryModel.
Definition at line 150 of file energy-source.cc.
References BreakDeviceEnergyModelRefCycle(), and NS_LOG_FUNCTION.
DeviceEnergyModelContainer ns3::EnergySource::FindDeviceEnergyModels | ( | std::string | name | ) |
name | name of the DeviceEnergyModel we are searching for. |
Definition at line 92 of file energy-source.cc.
References ns3::DeviceEnergyModelContainer::Begin(), openflow-switch::container, ns3::DeviceEnergyModelContainer::End(), m_models, and NS_LOG_FUNCTION.
DeviceEnergyModelContainer ns3::EnergySource::FindDeviceEnergyModels | ( | TypeId | tid | ) |
tid | TypeId of the DeviceEnergyModel we are searching for. |
Definition at line 76 of file energy-source.cc.
References ns3::DeviceEnergyModelContainer::Begin(), openflow-switch::container, ns3::DeviceEnergyModelContainer::End(), m_models, and NS_LOG_FUNCTION.
Referenced by BasicEnergyUpdateTest::StateSwitchTest().
|
pure virtual |
This function returns the percentage of energy left in the energy source.
Implemented in ns3::RvBatteryModel, ns3::LiIonEnergySource, ns3::GenericBatteryModel, and ns3::BasicEnergySource.
|
pure virtual |
Set method is to be defined in child class only if necessary. For sources with a fixed initial energy (energy capacity), set method is not needed.
Implemented in ns3::RvBatteryModel, ns3::LiIonEnergySource, ns3::GenericBatteryModel, and ns3::BasicEnergySource.
When a subclass needs to get access to the underlying node base class to print the nodeId for example, it can invoke this method.
Definition at line 62 of file energy-source.cc.
References m_node.
Referenced by ns3::LiIonEnergySource::HandleEnergyDrainedEvent(), and ns3::LiIonEnergySource::UpdateEnergySource().
|
pure virtual |
Implemented in ns3::RvBatteryModel, ns3::LiIonEnergySource, ns3::GenericBatteryModel, and ns3::BasicEnergySource.
|
pure virtual |
Set method is to be defined in child class only if necessary. For sources with a fixed supply voltage, set method is not needed.
Implemented in ns3::RvBatteryModel, ns3::LiIonEnergySource, ns3::GenericBatteryModel, and ns3::BasicEnergySource.
Referenced by CalculateTotalCurrent().
|
static |
Get the type ID.
Definition at line 37 of file energy-source.cc.
References ns3::TypeId::SetParent().
void ns3::EnergySource::InitializeDeviceModels | ( | ) |
Calls Start () method of the device energy models.
Device energy models are not aggregated to the node, therefore we need to manually start them here. Called by EnergySourceContainer, which is aggregated to the node.
Definition at line 108 of file energy-source.cc.
References ns3::DeviceEnergyModelContainer::Begin(), ns3::DeviceEnergyModelContainer::End(), m_models, and NS_LOG_FUNCTION.
|
protected |
This function notifies all DeviceEnergyModel of energy changed event.
It is called by the child EnergySource class when energy source is changed.
Definition at line 220 of file energy-source.cc.
References ns3::DeviceEnergyModelContainer::Begin(), ns3::DeviceEnergyModelContainer::End(), m_models, and NS_LOG_FUNCTION.
Referenced by ns3::BasicEnergySource::UpdateEnergySource().
|
protected |
This function notifies all DeviceEnergyModel of energy depletion event.
It is called by the child EnergySource class when energy depletion happens.
Definition at line 196 of file energy-source.cc.
References ns3::DeviceEnergyModelContainer::Begin(), ns3::DeviceEnergyModelContainer::End(), m_models, and NS_LOG_FUNCTION.
Referenced by ns3::GenericBatteryModel::BatteryDepletedEvent(), ns3::BasicEnergySource::HandleEnergyDrainedEvent(), ns3::LiIonEnergySource::HandleEnergyDrainedEvent(), and ns3::RvBatteryModel::HandleEnergyDrainedEvent().
|
protected |
This function notifies all DeviceEnergyModel of energy recharged event.
It is called by the child EnergySource class when energy source is recharged.
Definition at line 208 of file energy-source.cc.
References ns3::DeviceEnergyModelContainer::Begin(), ns3::DeviceEnergyModelContainer::End(), m_models, and NS_LOG_FUNCTION.
Referenced by ns3::GenericBatteryModel::BatteryChargedEvent(), and ns3::BasicEnergySource::HandleEnergyRechargedEvent().
Sets pointer to node containing this EnergySource.
node | Pointer to node containing this EnergySource. |
Definition at line 54 of file energy-source.cc.
References m_node, NS_ASSERT, and NS_LOG_FUNCTION.
Referenced by BasicEnergyUpdateTest::StateSwitchTest().
|
pure virtual |
This function goes through the list of DeviceEnergyModels to obtain total current draw at the energy source and updates remaining energy.
Called by DeviceEnergyModels to inform EnergySource of a state change.
Implemented in ns3::RvBatteryModel, ns3::LiIonEnergySource, ns3::GenericBatteryModel, and ns3::BasicEnergySource.
|
private |
Vector of EnergyHarvester pointer connected to the same energy source.
This vector is used by the CalculateTotalCurrent method to determine the total power provided by the energy harvesters connected to the energy source.
Definition at line 218 of file energy-source.h.
Referenced by BreakDeviceEnergyModelRefCycle(), CalculateTotalCurrent(), and ConnectEnergyHarvester().
|
private |
List of device energy models installed on the same node.
Definition at line 205 of file energy-source.h.
Referenced by AppendDeviceEnergyModel(), BreakDeviceEnergyModelRefCycle(), CalculateTotalCurrent(), DisposeDeviceModels(), FindDeviceEnergyModels(), InitializeDeviceModels(), NotifyEnergyChanged(), NotifyEnergyDrained(), and NotifyEnergyRecharged().
Pointer to node containing this EnergySource.
Used by helper class to make sure device models are installed onto the corresponding node.
Definition at line 211 of file energy-source.h.
Referenced by BreakDeviceEnergyModelRefCycle(), GetNode(), and SetNode().