Package: inet.power.contract
IEnergyManagement
module interfaceThe energy management models monitors an energy storage, estimates its state, and controls the consumers and generators to protect the energy storage from operating outside its safe operating area.
See also: IEnergyConsumer, IEnergySource, IEnergyGenerator, IEnergySink, IEnergyStorage
Author: Levente Meszaros
Inheritance diagram
The following diagram shows inheritance relationships for this type. Unresolved types are missing from the diagram.
Implemented by
Name | Type | Description |
---|---|---|
SimpleEpEnergyManagement | simple module |
This energy mangement model estimates the residual energy capacity of the energy source model by actually querying it. It is only useful when the estimation process is not important. This model initiates node shutdown when the residual capacity decreases below a threshold, and it also initiates node start when the residual capacity increases above another threshold. |
Used in compound modules
Name | Type | Description |
---|---|---|
NodeBase | compound module |
Contains the common lower layers (linklayer and networklayer) of Router, StandardHost, WirelessHost etc. |
Known subclasses
Name | Type | Description |
---|---|---|
ICcEnergyManagement | module interface |
This interface extends the corresponding energy model interface. It requires implementations to describe energy consumption and energy generation with current [A], and storage capacity with charge [C] and output voltage [V]. The Cc is an abbreviation that is used for charge and current based interfaces. |
IEpEnergyManagement | module interface |
This interface extends the corresponding energy model interface. It requires implementations to describe energy consumption and energy generation with power [W] and storage capacity with energy [J]. The Ep is an abbreviation that is used for energy and power based interfaces. |
Properties
Name | Value | Description |
---|---|---|
display | i=block/plug |
Source code
// // The energy management models monitors an energy storage, estimates its state, // and controls the consumers and generators to protect the energy storage from // operating outside its safe operating area. // // @see ~IEnergyConsumer, ~IEnergySource, ~IEnergyGenerator, ~IEnergySink, ~IEnergyStorage // @author Levente Meszaros // moduleinterface IEnergyManagement { parameters: @display("i=block/plug"); }File: src/inet/power/contract/IEnergyManagement.ned