Introduction: Automatic 18650 Analyzer
Moved Updates to step 2.
I was lucky enough to acquire many dozens of used laptop batteries from a friend who works at a computer store. After charging and discharging few hundred cell 18650 cells with 3 Imax B6 chargers to measure capacities, I decided I need a better way for the next few hundred cells.
The idea behind this project was to create a cost effective device that could automatically charge and discharge multiple 18650 cells while determining the effective capacity of each individual cell. Individual cells can be binned by capacity, so multiple parallel packs with identical capacity can be put in series.
This Instructable will outline my complete design process including, specification development, component selection, circuit design/pcb layout, assembly, and software.
Step 1: Updates
As of Oct 17th this Instructable is a work in progress I will be adding a lot more detail and documentation for all the steps, any feed back is welcome as its my first Instructable, and i probably write like a dyslexic Engineering grad student...
Update 1, Oct 23: Added some code, trying to validate it now make sure it gives repeatable results. little (and big) improvements keep coming to mind I am jotting them down on the last step of this intsructable as they come, i think ill have a go at making version 2 in the new year if I have time. Update 2, Nov 07: Added link to order PCB. I have built and tested 3 analyzers now and charged many cells, calibrating the internal reference is a pain in the ass but the results are pretty consistent. The resistors get very hot without a properly oriented heat sink . With out a heat sink or with the batteries get too hot. I've started a redesign of the PCB in KiCad instead of the Eagle i used for this board. The redesign of the PCB will address many of the issues I identified in the final step, and move components to make it easier to heat sink. I've also thought about adding expansion ports to use external resistors and transistor on bigger batteries. also try to add an LCD either serial or on a 3 cell version. I am also tempted to make a PSoC 4 version because i want to try out those boards.
Update 2, July 7: Home renos, work and general busy happy life stuff have gotten in the way, but I did get a version 2 designed. The first batch of version 2 circuit board had some minor problems I didn't address before I stopped working on it for a few months ago.Today I started modifying the schematic to fix those minor errors, hopefully I will be able to post a major revision to this or make a new Instructable by the end of August and maybe a link to buy a kit.
Step 2: Preliminary Design
The design specification are based around my requirements for the batteries and my ideal work flow.
I will be using the batteries to build 12V aux power packs, replacement power tool batteries, and E-bike batteries. The majority of the 18650 cell I get are 2.2Ah - 2.6Ah nominal capacity, with max continuous discharge rate of 2C, and nominal discharge rate of 1C. When I design packs I treat cells as 2A continuous and 5A peak, so discharge capacity measurement should be done at approximately 2A.
After dissembling a battery pack I put the cells in a 12P cell holder to charge on one of my Imax B6. My Imax charges cells to about 4.10V resting voltage, so the Analyzer will need to be able to accurately top off each cell to a set voltage above this before discharging.
Accuracy of the charger is not critical, but reproducible results are. I need multiple units to give consistent results, over multiple batteries.
The charger should automatically start charge, terminate charge, start discharge and terminate discharge, while monitoring current draw and calculating capacity. This means the charger system needs to monitor voltage and current, as well as be able to activate and deactivate, independent charger and discharge circuits.
The easiest way for me to control the charger was with an Arduino, specifically a ~$2 CH340 Nano from Ebay. I use these for prototyping every thing. It cant get a simple project going faster or cheaper then with these. If your anti-Arduino you don't have to use the arduino IDE, use atmel studio or just command line. I welcome any way to get a socket-able dev board or an ATMEGA328p and usb-serial converter for any cheaper.
The simplest way, I know to discharge a battery and measure current is with a big load resistor, and the simplest way to turn a big load on and off is with an N-channel mosfet.
To get my 2 amps at nominal cell voltage of 3.7V, I chose a 1.8ohm value for the load resistor for the load. The load resistor will need to be able to handle the maximum discharge power, that can be calculated using an Ohm's law formula P=V^2/R . with the 1.8ohm resistor and an absolute max cell voltage of 4.25V the maximum power works out to 10W. Perfect! because 10W is an extremely common power resistor size. The nominal power will only be about 7W at 3.5V 1.9A, close enough to my 2A discharge rate. I ended up finding the perfect 1.8ohm 10W power resistor on Newark.
To switch the load resistor I will use a mosfet capable of handling the 2A with a 5V gate source voltage(Vgs). I did some data sheet studying and hunting on Newark and Digikey to pick out a capable, but affordable mosfet. there were many option but I chose one that was rated for 5.6A with a <4.5V Vgs, to be safe and keep temperatures low. There are lots of resources on google for choosing the right Mosfet but it basically come down to Ohms's law and package TDP. If your P = I^2*Rdson@Vgs is high then your package TDP you gonna have a bad time.
For a charging circuit I could have deigned some thing from scratch but I opted for something a little simpler. I chose to use MCP73811 li-po/ion charger chips. They are extremely simple to use, have built in voltage and current regulation, and they have a enable input so I can terminate the charge with the system controller. This chip will drastically reduce the number of components I need compared to a charger using discrete components.
Each cell will need 2 digital I/Os to drive the discharge Mosfet and control the charger. Each cell will also need 2 analog inputs, one to measure the cell voltage and one to measure the voltage drop between the Mosfet and ground. Measuring the voltage between the Mosfet and ground will let me calculate the voltage across the load resistor only, that way I don't need to the precise Rdson of the mosfet.
The Nano has 8 analog inputs and 12 digital I/O's that means I can have 4 cell on one Arduino and 4 left over I/O's I can use for status LEDs.
I sourced a 4 cell 18650 holder on Ebay and order a bunch of them for this project.
Step 3: Circuit Design
The circuit design is relatively strain forward after the preliminary design. Components were chosen based on the preliminary design requirements, and used to create the schematic in eagle.
I created the footprint and symbol for the 4 cell 18650 holder in eagle cad and found all the other components in libraries I had or online.
The circuit for the MCP73811 comes from the typical application in the data sheet, with a pull down resistor and i line to the Arduino on the CE pin.
The Mosfet was set up as a standard low side driver, with the gate pulled low to hold it off while the Arduino pins are floating.
The load resistor is connected between the battery positive and the Mosfet drain. The analog input lines are connected on each side of the load resistor.
4 LEDs and the appropriate current limiting resistor are connected on the remain Arduino pins.
Step 4: Board Layout and Ordering Parts
From the eagle schematics a circuit board was laid out and order from dirtypcb.com, I ordered enough components to make 10 chargers.
Step 5: Assembly
After waiting a month for all the ebay parts, a few weeks for the circuit boards and a couple of days for the Newark order, I could finally assemble the first unit.
Assembly went smoothly and I got strait into programming, where I hit my first actual hiccups.
Coming soon assembly pictures from the second board.
Step 6: Programming Planning
I like to use the Arduino IDE for my personal projects and prototypes because I am too lazy to pull up Atmel Studio.
Before I had all the components I started planning the program for the charger. I wanted to run 4 separate state machines, one for each cell and run them concurrently in real time to ensure proper timing for the capacity calculation. The best way i usually do this is with a hardware timer interrupt . The timer interrupt was split in to 4 time slots, it ended up being 5 but ill get to that later.
Using timer generated interrupts is a great way to guarantee code is executed at precise intervals. I use one timer interrupt that cycles through all the functions that need to be executed. The period of the timer interrupt has to be slower then the longest execution time of all the state machines running.
The basic state machine design sudo code I completed before starting to code is below:
0 – charge cool down
if VCELL not steady then state 0 //steady should be the about same voltage for 30 seconds
if VCELL < VFULL then state 1 // start charge
if VCELL >= VFULL then state2 // start discharge
1 - Charging
If VCELL >= VCHRD then state 0 // cool down
If VCELL < VCHRD then state 1 // keep charging
2 - Discharging
If VCELL > VSTOP then state 2 // keep discharging
If VCELL < VSTOP then state 3 // cool down
3 - Discharge cooldown
If VCELL not steady then state 3 //steady should be the about same voltage for 30 seconds
If VCELL > VLOW then state 2 //start discharging again
State 4 // done
Step 7: Programming
After I assembled the first charger, I started developing the code to make it work.
I started out by defining all the I/O pins and then testing to ensure I had every thing defined properly. Next step was to define the battery voltage level that govern the state machines.
From there I started turning the sudo-code state machine I had on the previous page into real code.
the state machine worked OK but there was a big issue causing problems I had to address before moving further. The analog voltage levels were all over the place. when the batteries were charging the voltage sagged throwing off the cell voltage measurements significantly. Li-ion batteries need to be charge to +- 0.05V accuracy and i could barley keep it to +-0.25V with the default Arduino voltage reference. Before i rigged up a an external regulator to use as a reference, I stumbled upon this https://code.google.com/p/tinkerit/wiki/SecretVolt...
Apparently you can use the internal 1.1V reference to check the Vin. After playing with this for a bit I was able to track the input voltage and adjust the conversion factors to get more accurate cell voltage measurements. This still wasn't enough... I noticed the input voltage was floating +-0.2V around what my voltmeter read. I figured my cheap eBay buck converter was probably not providing the cleanest voltage and my cheap meter was averaging this output. I do intend to look at this with my scope to see what is actually going on, but putting 660uF across the voltage input reduced the voltage ripple to well under 0.05V. In theory the sensitivity of the Arduino ADC's reading should be about 0.005V but that is hard to obtain in practice. I have some ideas that will help me get a lot closer to that theoretical sensitivity if I ever make more get more boards made.
The input voltage calibration take approximately 140us plus a delay I was able to reduce to 500us so so that set the lower limit of the interrupt period to about 750us. I haven't profiled it yet but the state machine does take less then 1ms to run, so I set up the timer interrupt frequency 1000Hz. 1000Hz is one of a few nice round number you can get out from the timers, and makes the capacity calculation easier.
In the end I made arrays for every variable used by the state machine and implemented it as one function that take the cell number as the input to index all the arrays. The function returns the next state. There is another array that hold the current state for each cell.
Update Oct. 24 2015:
I've posted some code I've been playing with it calculates the capacity continuous in the interrupt sub routing regardless of the state it works pretty well but noise on the ADC line cause a fluctuations of about +-1mAh while in cool down and charging states which isn't too bad.
There is not logging done on the arduino. I have been using putty terminal to log the output to a csv file i can up load import into excel. The main problem with logging on the arduino is that it take roughly 2ms to store a float or long to the eeprom which is an eternity compared to the <1ms required by the functions run by the interrupt. There is just not enough CPU time to do any logging on the eeprom beyond maybe storing the capacities.
I might look int using the psoc4 (http://www.cypress.com/file/141306/download) on the next version of the analyzer, I have a few of them laying around and I've been meaning to do a project with them. That would be a new instructable.
Attachments
Step 8: Testing
After getting the code to a reliable state ive started testing the charge and discharge functions. to be on the safe side i put a large heat sink on the resistor. I stuck the heat sink on using cheap ebay thermal grease mixed with dollar store super, it works pretty well the heat sink get quite hot and dissipates heat from all 4 resistors quite well.
Step 9: Things to Imrprove or Add for Next Version
add on board 5V reference for more accuracy
add proper decoupling capacitors to ever power pin
add capacitance on the main power input to filter out noise
use PWM pins for the mosfet control.
Power from batteries feeds back into the Arduino keeping it on when the power and usb are disconnected, need to investigate this and prevent it from happening.
Arrange power resistors in a way that's easy to add a CPU heat sink,and possible look at using beefy Mosfets to dissipate some or all of the power.
Integrate power supply and break out fan header for heat sink.
18 Comments
4 years ago
GregorS3, great project necessity is the mother of invention. I designed and built a multi-channel battery testing system professionally 25+ years ago. I was testing the cycle to cycle capacity of lead acid batteries and the effectiveness of battery charger designs for an international company. I really like your project, Your state machine array approach is similar to what I did. A suggestion, once you get operational to your satisfaction. Have a look at data structures. Organize your variables into a data structure.Create an array of data structures. Then a pointer to this array. you can then access all your parameters by just passing passing the (indexed) pointer into your functions. As your program gets refined and you add or subtract variables, you just effect the single data structure. just need to use pointer notation in your functions. Don't be scared of pointers,this approach is as lean as possible for memory consumption,efficient and will simplify your code. Many test programs evolved to only 2 structs, one for control and one for data. Keep up the great work GregorS3
5 years ago
Hi there!
Thank you for all your detailed notes and updates! I was wondering if you ever made the next version, or if you still have an interest? I'm looking to build some 24V packs in the future and I think this would be a handy tool, particularly with the improvements you list in step 9!
I may have missed it elsewhere, but do you have a BOM and cost per unit? I'd want to test 12 cells together and probably 3 groups (36 cells simultaneously), so probably looking to build 10 or so.
Thanks again!
7 years ago
can we buy the circuit board?
Reply 6 years ago
https://oshpark.com/shared_projects/UKS3DZrt
New board design to take a 128x32 I2C OLED
Reply 7 years ago
http://dirtypcbs.com/view.php?share=11941&accesskey=abebe2da0b489a01f8c7b96d1eba9c4b
Reply 6 years ago
took me some time to find that link despite you mentioning that you've added it...
Reply 7 years ago
Ill put it on dirty boards ill link soon.
7 years ago
its hard to find thru holefets that work on 5V, you have to make sure your Rdson is low especially if you want to use only one voltage sense line per cell.
7 years ago
My new version uses a separate 5V reference I can calibrate with a pot. The default 5V reference on the Arduino can range in value quite a bit depending on the power supply and the load your drawing from the pins for LED's and stuff. Decoupling caps just help reduce noise more. depending on the power supply you using noise from the supply can have a huge effect on the accuracy.
If you don't measure the voltage on both sides of the load you have to take the voltage drop across the mosfet and your wiring. The drops should be low so might get good enough ignoring it and using 1 voltage sense.
If you don't double check to reference voltage before every reading like i do in the code i have posted, you should be able to do 8 or 16 batteries at once. I find 60Hz polling is pretty good, I don't remember what it is in the code I posted.
I have changed up the program a lot I need to do an update to this
Instructable soon.
7 years ago
i have a lot of 18650 batterries, and i want to make simple and fast charger for 18650. minimum current 1A, there's any suggestion?
Reply 7 years ago
I use these http://www.skyrc.com/index.php?route=product/produ... to charge 12 cells in parallel at 5A total. And use these http://tinyurl.com/jj9zgco, to hold the cell while charging with the imax B6.
The are a lot of benefits to charging many cells in parallel. You should never charge cell you haven't tested in series or with too much current. I find it a good trade off between speed and safety for a first time charge on unknown cells. I use the charger I built here for more accurate or faster charging of individual cells. It only does 500mA per cell.
7 years ago
Great piece of work, has anymore been done to this?
Keep up the good work.
Reply 7 years ago
Ive been using it for it inteded porpose and refining the program abit. Iam working on the second revsion of the board to make it easier to use . I will probably make a new instructable for the second revision with better documentation. I keep a log of updates on the second step.
Reply 7 years ago
Thanks for you quick reply.
I've taken note of what there is to date but am obviously interested to get something built as soon as possible. I'm an avid collector of 18650 and similar cells and can see this project being very useful.
I'll keep looking in now and again to see if there's anything else you've added.
Do you have any kind of timescale on this or is it simply happening as and when?
Regards
Reply 7 years ago
I just play with it when I have time my schedulecan be abit hecktic. But more feed back and comments here definatly makes me more motivated to make more time for the project.
Reply 7 years ago
Is there any chance that you could PM me with the circuit schem as it's very blurred in the Instructable. Thanks again.
Regards
Reply 7 years ago
I simply do it the hard way, testing one cell at a time, I charge them 6 at a time in a Heath Robinson set of 6 single chargers on a board with each one taking it's feed from the main supply coming in and each grounded to one ground connector, it works for me for my usage but I really need to test the cells properly, hence where your project comes in.
I look forward to seeing something more appear on here, I need a project to build on Christmas and Boxing days, Bah Humbug, I guess I'll be watching the tele as usual.
7 years ago
Cool project