Skip to main content

How to calculate the battery standby time according to the load?


Things we should know:

  P = V . I                   
(ie. power in watts = volts x amps)

Every battery has a amps/hr (Ah) rating which signifies for how many hours it can deliver that much amount of current?
for eg. 2000mAh battery can deliver 2000mili Amps per hour 


Eg.1 Inverter battery standby calculation

1.Calculating the total battery capacity in Watts/hr:
 if our inverter battery has a rating of 150Ah and voltage 12V
thus it can deliver 150Amps per hour.

thus power delivered per hour will be 1800Watts/hr 
(1800 = 12 x 150) .............................(  P = V . I  )
2.battery threshold level:(actual battery capacity)
now before proceeding take into consideration that the battery wont be fully discharged due to the internal protection circuit in the inverter so we have to first take 85% of our total battery capacity. 
thus 0.85 x 1800 =1530W/hr

 3.Load in watts:
your general ceiling fan eats up 75W 
lets assume 4 such fans running thus 4 x 75 = 300

now lets calculate how long can your inverter battery can standby
4.Battery standby time in hours:
as calculated before before 4 fans eats up 300W
so the battery will last for 1530W/300W = 5 hrs



Eg.2  Mobile battery standby approx calculation

1.Calculating the total battery capacity in Watts/hr:
 if our mobile Lithium ion battery has a rating of 2000mAh and voltage 3.7v
thus it can deliver 2000 mili amps per hour we can also say 2Ah

thus power delivered per hour will be 7.4Watts/hr 
(7.4 = 3.7 x 2) .............................(  P = V . I  )
2.battery threshold level:(actual battery capacity)
now before proceeding take into consideration that the battery wont be fully discharged due to the internal protection circuit in the battery so we have to first take 85% of our total battery capacity. 
thus 0.85 x 7.4 =6.29W/hr

3.Load in watts:
lets say your GSM edge module eats up 128mW (general consumption for 1200 bit rate)

now lets calculate how long can your mobile battery can standby

4.Battery standby time in hours:
as said before the GSM module eats up 128mW
so the battery will last for 6.29W/128mW = 49hrs = 2 days 

but this wont be the actual case of standby as we have not considered many loads which will eat power such as display, Graphic CPU etc. its just an approximate calculation. : )

program to calculate the battery standby:
Battery standby c program
Battery standby (onedrive) 


  


Comments

  1. Refer Srinivasa power solutions https://www.srinivasapowersolutions.in

    ReplyDelete

Post a Comment

Popular posts from this blog

Basics of MS-DOS commands (PDF downloadable)

MS-DOS basic concepts and commands with examples: https://drive.google.com/file/d/0B3e9v7xyGe0ubVBHWnpwUW1ZYnc/edit?usp=sharing MS-DOS simple commands with exmaples: https://drive.google.com/file/d/0B3e9v7xyGe0uVXhlbm9nb01EWWs/edit?usp=sharing

Why do we use log?

"Logarithm" is a word made up by Scottish mathematician John Napier (1550-1617), from the Greek word logos meaning "proportion, ratio or word" and arithmos meaning "number", ... which together makes "ratio-number" ! In its simplest form logarithm gives the info about:            how many a number can give another number basically its used to get the power ie. the exponent of the base number in the log with respect to the log number for eg:  1.  log 2 ( 8 )= 3     ie   2 3   = 8 how many a number (to the base number) (2) another number ( log  number) (8) raise to power (3) 2.    log 2 ( 4 )= 2     ie   2 2   =   4  same goes for the negative logarithms: 1.                    since            reference:  www.mathsisfun.com/algebra/logarithms.html

MATLAB shortcut in ubuntu/linux

Create a symbolic link in  /usr/local/bin , i.e. as su ln -s /usr/local/MATLAB/R2013a/bin/matlab /usr/local/bin/matlab 1.download your own icon- sudo wget http://upload.wikimedia.org/wikipedia/commons/2/21/Matlab_Logo.png -O /usr/share/icons/matlab.png 2.give your access permission sudo touch /usr/share/applications/matlab.desktop 3.edit your .desktop file sudo gedit /usr/share/applications/matlab.desktop 4.and paste the following into the document. #!/usr/bin/env xdg-open [Desktop Entry] Type=Application Icon=/usr/share/icons/matlab.png Name=MATLAB R2014a Comment=Start MATLAB - The Language of Technical Computing Exec=matlab -desktop Categories=Development;