1

I know that the capacity of a battery is expressed in mAh, i.e. A/s (international system of units). Today I used a command in PowerShell (*) in order to get the battery capacity, but the unit of measure is mWh. Why and how can I express it in mAh?

I know from here that:

$$ Wh = V \times A \times hours $$

enter image description here

(*) powercfg /batteryreport /output "C:\battery-report.html"

Gennaro Arguzzi
  • 492
  • 1
  • 8
  • 26
  • 1
    I think you answered your own question. You just need to know the voltage rating of your laptop battery. Googling the model number tells me it's 15 V, so you can do the math. – TypeIA Dec 22 '21 at 19:26
  • Hello @TypeIA on my AC adapter there is 19 V as output. Where did you find 15 V? Has the voltage I found a different meaning? – Gennaro Arguzzi Dec 22 '21 at 19:29
  • Check battery V, divide it. – Mitu Raj Dec 22 '21 at 19:30
  • 2
    I Googled the model number in your post and found "replacement batteries" spec'd at 15 V. The battery voltage is not the same as the AC adapter voltage. – TypeIA Dec 22 '21 at 19:30
  • 2
    The voltage from teh AC adapter is different (usually higher, as here) than the battery voltage (which should be on the battery label). Makes charging circuitry easier. –  Dec 22 '21 at 19:31
  • 1
    @TypeIA thank you very much – Gennaro Arguzzi Dec 22 '21 at 19:31
  • As an aside, mWh can be a more useful unit than mAh in situations like this where (a) a switch-mode power supply is in use and (b) the battery voltage changes significantly during discharge. A switch mode supply will tend to draw the same power for a given load even when the battery voltage changes substantially, so as the battery voltage drops the current drawn will increase. In the case of lithium batteries the voltage drops from about 4.2V per cell to 3.0V, so accurate prediction if the battery life needs to take this into account. – Frog Dec 22 '21 at 20:12

1 Answers1

1

you will need to know the output Voltage of the battery you are using. If the Vout is 20V, then:

$$ Wh=V*A*hours $$ $$ <=>40.6mWh=20*A*1 $$ $$ <=>A=40.6mWh/20=2.03mAh $$

Hmm This 2.03 mAh current sounds verry little. I was expecting something like 1.5AmpHours.

EDIT:

Thanks to the comments, I see that "." was used as thousands separator. So the right answer is 2.03A/h (plus or minus the voltage of the battery swinging from 19 to 21 maybe)