NED File modules/power/battery/SimpleBattery.ned

Name Description
SimpleBattery (simple module)

a simple battery module

Source code:

//# Energy Framework for Omnet++, version 0.9
//#
//# Author:  Laura Marie Feeney 
//# 
//# Copyright 2009 Swedish Institute of Computer Science.  
//# 
//# This software is provided `as is' and without any express or implied
//# warranties, including, but not limited to, the implied warranties of
//# merchantability and fitness for a particular purpose.
//#
//#######################################################################

package org.mixim.modules.power.battery;

import org.mixim.base.modules.BaseBattery;

//
// a simple battery module
//
// Note that resolution should be much smaller than the expected time to
// first node failure.
//
simple SimpleBattery extends BaseBattery
{    
    parameters:
        @class(SimpleBattery);
        bool debug;
        // nominal battery capacity
        volatile double nominal @unit(mAh);
        // battery capacity
        double capacity @unit(mAh); 
        // nominal voltage 
        volatile double voltage @unit(V);
        // capacity is updated at least every resolution time
        volatile double resolution @unit(s);
        
        // (0..1): capacity is published to the blackboard each time it is
		// observed to have changed by publishDelta * nominal_capacity
        volatile double publishDelta;
        
        // if > 0, capacity is published to the BB each publishTime 
		// interval		
        volatile double publishTime @unit(s);
        
        // number of modules that will draw energy from the 
		// battery
        int numDevices;

}