Occasional Rapid Battery Discharge When Issue Persists (new details)


  1. Posts : 357
    Windows 10 Pro
       #1

    Occasional Rapid Battery Discharge When Issue Persists (new details)


    The problem was originally outlined here Battery (and/or Charger and/or System) issue > can suddenly discharge

    .... but first PLEASE read the latest which summarizes and identifies many details >>


    More Weirdness


    After working perfectly for 2 days, a little while ago after my user-set Low Battery notification properly appeared at 40% (indicated), I let the batt level drop to 38% and then plugged in the charger (at the house current large plug end, not touching the "touchy" connector to the laptop). The indicated "Plugged in, Charging" quickly dropped to ca. 30% and I rapidly let Windows shut down while still supposedly charging. The normal drop under usage is ca. 80 minutes from 80% to 40% = 40%/40min = 1%/min, but this drop from 38% to 30% took ca. 20 sec. max (I didn't time it exactly).

    I let the PC sit turned off for maybe 2 minutes while the charge LED on the front was lit then started it up again. It showed charging, from 38% to almost 50% in less than a minute.

    The charger was not only warm, but seemed warmer than usual and the area under the fan, which is to the rear of the battery, was somewhat warm but not hot and the section under the battery was not hot. I would thus guess that the motherboard but not the battery was "busy", but the area under the fan was not really hot, just warm. Anyway I stopped this rapid indicated charging in about a minute after it started and everything cooled to normal.

    At this point I let the battery run down under normal PC use from 47% to 38%, past my set Low Batt warning at 40%. I was trying to reproduce the above weirdness.

    However .. when I plugged in the charger it charged at a normal rate but my Battery Monitor user applied software gave its 80% warning notification at what the Windows battery icon window showed as 65%. I have long ago decided to trust the Windows "guess" at the battery level, having reason to suppose that the Battery Monitor software I put in uses different data (I think the Battery Monitor software reads something more like what shows up in the Windows Battery Report and not actual real-time voltage read as capacity; just a guess). The Battery Monitor takes no action and only gives notifications after 80%.

    I left the PC on charge till Windows indicated 80%. . The charger was warm, probably no warmer than normal.

    As a test, when Windows indicated 70%, I briefly unplugged the charger and Windows indicated 70% "on battery". Then I let the charging continue at the reasonably normal rate (I didn't time it). But the Battery Monitor software showed over 90% .. while the section under the battery was not warm and the entire computer was not even slightly warm ... indicating the physical charging and computer operation was not using excessive power (the charger was still warm though).

    I stopped the charging when Windows indicated 80% (and Battery Monitor indicated 99%). The Windows Batt Level then showed 80% "on battery"


    Here is the program for Battery Monitor which I have been using with NO problem for 3 years now:

    set oLocator = CreateObject("WbemScripting.SWbemLocator")
    set oServices = oLocator.ConnectServer(".","root\wmi")
    set oResults = oServices.ExecQuery("select * from batteryfullchargedcapacity")
    for each oResult in oResults
    iFull = oResult.FullChargedCapacity
    next

    while (1)
    set oResults = oServices.ExecQuery("select * from batterystatus")
    for each oResult in oResults
    iRemaining = oResult.RemainingCapacity
    bCharging = oResult.Charging
    next
    iPercent = ((iRemaining / iFull) * 100) mod 100
    if bCharging and (iPercent > 79) Then msgbox "Battery is at " & iPercent & "%",vbInformation, "Battery monitor"
    wscript.sleep 30000 ' 5 minutes
    wend

    Last edited by Airider; 29 Sep 2022 at 18:08.
      My Computers


  2. Posts : 357
    Windows 10 Pro
    Thread Starter
       #2

    F I X E D

    new HP battery $60 installed
      My Computers


  3. Posts : 679
    Windows 10
       #3

    Hey man

    Sometimes its the only way. Glad you got a new battery.
    This time, whenever youre not using the laptop, make sure that the battery is kept at about 50% charge. It'll extend the lifetime of the battery by about 300%.
      My Computer


  4. Posts : 357
    Windows 10 Pro
    Thread Starter
       #4

    Well, it was clear to me form observation and logic that the battery would need replacement at some point AND that in this precarious world economic situation that replacement would become increasingly more difficult. The indications were that the battery's decreased capacity made the voltage curve -- used to infer capacity as the integrated area under the discharge curve -- too difficult to accurately interpret.

    I keep the (rechargeable) battery ("AKKU" in German) between 40% and 80%. It seems obvious that these percents were "established" during the early days when mobile phones only had indicator-bar icons showing 20%, 40%, 60%. 80% and100% charge ... but are reasonably close enough for practical use (i.e, 36% to 83% should also work for ex.).


    HP Pro laptop BIOS now have the option -- starting with NEW batteries ONLY -- to limit full charge to 80%. But then change the user readout so that it shows 100% when the charge is actually only 80%. Since I do NOT wish to keep the batt at 80% but instead, rather let it discharge in use to 40%. I like having a visual and acoustic warning so I can unplug the charger from the house current (I leave it plugged in to the laptop since the AC end is far more robust). The HP "80%-Max" system does not give a warning and instead KEEPS the batt at 80%.


    For the high end insistent visual and acoustic cutoff warning starting at 80% I use the following "fullbatt" program and put it in Startup; it has worked effectively for many years.

    Here it is, copied from Notepad >

    set oLocator = CreateObject("WbemScripting.SWbemLocator")
    set oServices = oLocator.ConnectServer(".","root\wmi")
    set oResults = oServices.ExecQuery("select * from batteryfullchargedcapacity")
    for each oResult in oResults
    iFull = oResult.FullChargedCapacity
    next

    while (1)
    set oResults = oServices.ExecQuery("select * from batterystatus")
    for each oResult in oResults
    iRemaining = oResult.RemainingCapacity
    bCharging = oResult.Charging
    next
    iPercent = ((iRemaining / iFull) * 100) mod 100
    if bCharging and (iPercent > 79) Then msgbox "Battery is at " & iPercent & "%",vbInformation, "Battery monitor"
    wscript.sleep 30000 ' 5 minutes
    wend



    For the low end 40% warning in Power Options I set the Low Battery notifications at 40% for "on battery" and "when plugged in"


    Here is the recent Windows Battery report, noting that the last 2 days, 5 and 6 Oct. are for the NEW battery ... and it shows the one time I had the new batt charged to 100% for calibration on "10-05" (the HP dealer / repairman told me it was not necessary to discharge to nearly empty with a new HP battery).

    Also note that the old batt was not able to be accurately kept between 40% and 80% ... which it had been when it was new,

    As a further note, the charge time for the new batt is unchanged ... but the discharge time under my typical use is now approx. DOUBLED, indicating that the working capacity of the old batt had been reduced to HALF that of the new one!


    Windows Battery Report (section)

    Occasional Rapid Battery Discharge When Issue Persists (new details)-winbat.png
      My Computers


 

  Related Discussions
Our Sites
Site Links
About Us
Windows 10 Forums is an independent web site and has not been authorized, sponsored, or otherwise approved by Microsoft Corporation. "Windows 10" and related materials are trademarks of Microsoft Corp.

© Designer Media Ltd
All times are GMT -5. The time now is 15:10.
Find Us




Windows 10 Forums