A simple device energy model where current drain can be set by the user. More...
#include "simple-device-energy-model.h"
Public Member Functions | |
SimpleDeviceEnergyModel () | |
~SimpleDeviceEnergyModel () override | |
void | ChangeState (int newState) override |
virtual Ptr< Node > | GetNode () 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< Object > | GetObject () 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< Object > | GetObject (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. | |
SimpleRefCount & | operator= (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< Node > | m_node |
Node. | |
Ptr< EnergySource > | m_source |
Energy source. | |
TracedValue< double > | m_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. | |
Related Symbols inherited from ns3::ObjectBase | |
static TypeId | GetObjectIid () |
Ensure the TypeId for ObjectBase gets fully configured to anchor the inheritance tree properly. | |
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.
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().
|
override |
Definition at line 49 of file simple-device-energy-model.cc.
References NS_LOG_FUNCTION.
|
inlineoverridevirtual |
newState | New state the device is in. |
Not implemented
Implements ns3::energy::DeviceEnergyModel.
Definition at line 80 of file simple-device-energy-model.h.
|
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.
|
overrideprivatevirtual |
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.
Gets pointer to node.
Implements DeviceEnergyModel::GetNode.
Definition at line 71 of file simple-device-energy-model.cc.
References m_node, and NS_LOG_FUNCTION.
|
overridevirtual |
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.
|
static |
Get the type ID.
Definition at line 26 of file simple-device-energy-model.cc.
References ns3::TypeId::AddDeprecatedName(), m_totalEnergyConsumption, ns3::MakeTraceSourceAccessor(), and ns3::TypeId::SetParent().
|
inlineoverridevirtual |
Handles energy changed.
Not implemented
Implements ns3::energy::DeviceEnergyModel.
Definition at line 107 of file simple-device-energy-model.h.
|
inlineoverridevirtual |
Handles energy depletion.
Not implemented
Implements ns3::energy::DeviceEnergyModel.
Definition at line 89 of file simple-device-energy-model.h.
|
inlineoverridevirtual |
Handles energy recharged.
Not implemented
Implements ns3::energy::DeviceEnergyModel.
Definition at line 98 of file simple-device-energy-model.h.
void ns3::energy::SimpleDeviceEnergyModel::SetCurrentA | ( | double | current | ) |
current | the 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.
|
overridevirtual |
Sets pointer to EnergySource installed on node.
source | Pointer 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.
Sets pointer to node.
node | Pointer 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.
|
private |
actual curred (in Ampere)
Definition at line 129 of file simple-device-energy-model.h.
Referenced by SimpleDeviceEnergyModel(), DoGetCurrentA(), GetTotalEnergyConsumption(), and SetCurrentA().
|
private |
Last update time.
Definition at line 128 of file simple-device-energy-model.h.
Referenced by SimpleDeviceEnergyModel(), GetTotalEnergyConsumption(), and SetCurrentA().
Node.
Definition at line 131 of file simple-device-energy-model.h.
|
private |
Energy source.
Definition at line 130 of file simple-device-energy-model.h.
Referenced by SimpleDeviceEnergyModel(), DoDispose(), GetTotalEnergyConsumption(), SetCurrentA(), and SetEnergySource().
|
private |
Total energy consumption trace.
Definition at line 132 of file simple-device-energy-model.h.
Referenced by GetTotalEnergyConsumption(), GetTypeId(), and SetCurrentA().