Creates EnergySource objects. More...
#include "energy-model-helper.h"
Public Member Functions | |
virtual | ~EnergySourceHelper () |
EnergySourceContainer | Install (NodeContainer c) const |
EnergySourceContainer | Install (Ptr< Node > node) const |
EnergySourceContainer | Install (std::string nodeName) const |
EnergySourceContainer | InstallAll () const |
This function installs an EnergySource on all nodes in simulation. More... | |
virtual void | Set (std::string name, const AttributeValue &v)=0 |
Private Member Functions | |
virtual Ptr< EnergySource > | DoInstall (Ptr< Node > node) const =0 |
Creates EnergySource objects.
This class creates and installs an energy source onto network nodes. Multiple sources can exist on a network node.
Definition at line 46 of file energy-model-helper.h.
|
virtual |
Definition at line 31 of file energy-model-helper.cc.
|
privatepure virtual |
node | Pointer to node where the energy source is to be installed. |
Child classes of EnergySourceHelper only have to implement this function, to create and aggregate an EnergySource object onto a single node. Rest of the installation process (eg. installing EnergySource on set of nodes) is implemented in the EnergySourceHelper base class.
Implemented in ns3::RvBatteryModelHelper, ns3::LiIonEnergySourceHelper, ns3::GenericBatteryModelHelper, and ns3::BasicEnergySourceHelper.
Referenced by Install().
EnergySourceContainer ns3::EnergySourceHelper::Install | ( | NodeContainer | c | ) | const |
c | List of nodes where EnergySource will be installed. |
This function installs an EnergySource onto a list of nodes.
Definition at line 42 of file energy-model-helper.cc.
References ns3::NodeContainer::Begin(), openflow-switch::container, ns3::ObjectFactory::Create(), DoInstall(), ns3::NodeContainer::End(), and ns3::ObjectFactory::SetTypeId().
EnergySourceContainer ns3::EnergySourceHelper::Install | ( | Ptr< Node > | node | ) | const |
node | Pointer to the node where EnergySource will be installed. |
This function installs an EnergySource onto a node.
Definition at line 36 of file energy-model-helper.cc.
Referenced by BatteryLifetimeTest::ConstantLoadTest(), BasicEnergyDepletionTest::DepletionTestCase(), AcousticModemEnergyTestCase::DoRun(), AcousticModemEnergyDepletionTestCase::DoRun(), Install(), InstallAll(), UanExperiment::SetupEnergy(), and BatteryLifetimeTest::VariableLoadTest().
EnergySourceContainer ns3::EnergySourceHelper::Install | ( | std::string | nodeName | ) | const |
nodeName | Name of node where EnergySource will be installed. |
This function installs an EnergySource onto a node.
Definition at line 72 of file energy-model-helper.cc.
References Install().
EnergySourceContainer ns3::EnergySourceHelper::InstallAll | ( | ) | const |
This function installs an EnergySource on all nodes in simulation.
Definition at line 79 of file energy-model-helper.cc.
References ns3::NodeContainer::GetGlobal(), and Install().
|
pure virtual |
name | Name of attribute to set. |
v | Value of the attribute. |
Sets one of the attributes of underlying EnergySource.
Implemented in ns3::RvBatteryModelHelper, ns3::LiIonEnergySourceHelper, ns3::GenericBatteryModelHelper, and ns3::BasicEnergySourceHelper.