Seems like a silent party - was hoping
smithi would help out since he asked for the answers
Hard to get good help these days? ;-)
Couple of issues: a) I've been ill; b) a disastrous upgrade of my long-favourite Android text editor lost half a dozen files I was working on, including two with stuff for you, one a discharge/recharge script to try resuscitating your new but never fully charged batteries!
Here's the earlier portion of one, as saved on 26 Feb, which reveals what maths acpiconf uses, and what data from the battery (via the EC) is relevant.
~~~~~~~
Code:
$ egrep '^$|acpi|batt|l cap|\(warn|Cycl|State|Rema|Pres' \
tracker_aconf_newbats.txt
battery 0/internal
Last full capacity: 16000 mWh
Capacity (warn): 800 mWh
Cycle Count: 4
State: high
Remaining capacity: 89%
Remaining time: 1:07
Present rate: 0 mW
Present voltage: 12292 mV
battery1/external/61+
Last full capacity: 35490 mWh
Capacity (warn): 1774 mWh
Cycle Count: 17
State: discharging
Remaining capacity: 98%
Remaining time: 2:44
Present rate: 12689 mW
Present voltage: 12131 mV
$
It all hinges on the Last full capacity, which can be - and in your case, with new batteries, clearly is - wildly inaccurate.
battery1:
98% * 35490 ~= 34780 mWh
34780mWh / 12689mW = 2.74h = 2h44m (tick)
P=VI; I=P/V = 12.7W/12.1V = 1.05A discharge current now
battery0:
89% * 16000 ~= 14240 mWh
14240 / 12689(*) = 1.12h = 1h7.3m (tick)
* assuming same load in mW to estimate when in use.
~~~~~~~
Your new primary internal battery reports only 16000 of its 22800mWh design capacity i.e. 70.2%
Your new secondary external battery reports only 35490 of its 48840mWh design capacity i.e. 72.7%
Also note that capacity (warn) is always 5% of Last full cap.
You need to do probably at least three complete discharge / recharge cycles on each of these batteries. The Vantage app wanted to start with charging but that didn't work.
First things first:
Use the Vantage program to set the thresholds for both batteries to the standard Thinkpad T-series settings of high = 100% and low = 95%.
If you haven't already, get the T480 hardware maintenance manual. From manualslib.com it arrives as thinkpad_t480.pdf
Lenovo ThinkPad T480 Hardware Maintenance Manual (114 pages)
Read carefully all references to batter{y,ies}, including the full reset procedure including the coin-cell battery removal and 60 second on the reset button.
I will try to re-do the script, as proper discharge / recharge logs show a lot about how the battery internal chips are recalibrated.
Do not be afraid of damaging LiPo or LIon batteries by deep discharge; it doesn't bother them, that's what they're designed to do.
Meanwhile, try disconnecting the external battery, boot into the BIOS/UEFI Setup, unplug the power to let it discharge completely - while you sleep.
Plug it in when you wake, leave it to fully charge, take acpiconf listings before and after. After two such cycles you should see much improved Last full capacity.
Oh yes ... turn off Fast Boot in BIOS, in case you're missing any messages about non-Lenovo approved batteries, as they may not charge (see .pdf)
Sorry this is rather scattered, I'm remembering bits of my lost files along the way.