NED File src/inet/power/contract/IEnergyGenerator.ned
Name | Type | Description |
---|---|---|
IEnergyGenerator | module interface |
The energy generator models describe the energy generation process of devices over time. A solar panel, for example, produces energy based on time, the panel's position on the globe, its orientation towards the sun and the actual weather conditions. |
Source code
// // Copyright (C) OpenSim Ltd. // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public License // as published by the Free Software Foundation; either version 2 // of the License, or (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU Lesser General Public License for more details. // // You should have received a copy of the GNU Lesser General Public License // along with this program; if not, see <http://www.gnu.org/licenses/>. // package inet.power.contract; // // The energy generator models describe the energy generation process of devices // over time. A solar panel, for example, produces energy based on time, the // panel's position on the globe, its orientation towards the sun and the actual // weather conditions. // // @see ~IEnergyConsumer, ~IEnergySource, ~IEnergySink, ~IEnergyStorage, ~IEnergyManagement // @author Levente Meszaros // moduleinterface IEnergyGenerator { parameters: @display("i=block/plug"); }