Skip to content

ts-manuel/Battery-Powered-PSU

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Battery Powered PSU

Photo

Table of Contents
  1. About The Project
  2. Getting Started
  3. Theory of Operation
  4. Future Improvements
  5. References
  6. Disclaimer

About The Project

This is a dual-channel power supply powered by 6 18650 Lithium-Ion cells. If like me you don't have lots of space, having a power supply that you can move and get out of the way without getting tangled in cables is quite useful. Inspiration comes from the uSupply designed by Dave Jones on the EEVblog. The only thing this has in common with the original uSupply is the LT3080 low dropout voltage regulator on the output. The remaining hardware has been completely engineered from scratch.
Schematics and PCBs are designed with Circuit Maker, link to the project.

Specifications:

  • Powered from 6 x 18650 Lithium-Ion cells (56Wh)
  • 2x 20V 1A Isolated outputs
  • 1 mV Voltage resolution
  • 1 mA Current resolution

Getting Started

There are two MPLAB X projects, software\BatteryController.X is for the battery microcontroller and software\PowerSupply.X is for the main power supply microcontroller. To compile the code just open them into MPLAB X.

Prerequisites

Theory of Operation

The project is split into two circuit boards. The one on the left is the battery, the other is the power supply. The battery board holds six Lithium-Ion cells, the protection and charger circuitry, and a microcontroller to keep track of the SOC (State Of Charge). All the components besides the cells are located on the backside. The power supply board on the right has all the circuitry to handle the user interface and to generate the output voltages. The output voltage is regulated in two steps, there's a switching pre-regulator to keep efficiency high followed by a linear one to reduce noise. The two boards are connected by a 10-way cable that carries power and control signals. When the power supply is on, the battery sends its SOC to the PSU via UART. Inside

Battery Block Diagram

Battery Block Diagram
This is the simplified block diagram for the battery board. This board is responsible for charging and protecting the Lithium-Ion cells. The three main components are the BMS IC, the charging IC, and the microcontroller.
The BMS BQ76920 from Texas Instruments, continuously monitors cell voltages and current. If an over-voltage, under-voltage, or over-current condition is detected the cells are immediately disconnected. The IC also features internal balancing FETs that are activated by the microcontroller to balance the cells. The BMS is connected to the microcontroller through I2C.
The Charger IC BQ25700A also from Texas Instruments uses a switching buck-boost converter to take the input voltage and charge the cells with a constant-current constant-voltage scheme. Its I2C interface is connected to the microcontroller through an I2C isolator.
The microcontroller is a PIC16LF18345 from Microchip. It keeps track of the battery SOC, balances the cels, and enables/disables the charger. The microcontroller is connected directly to the batteries, when the BMS goes into protection mode and the cells are disconnected from the rest of the circuit, the only things powered are the BMS and the microcontroller.
To save power, voltage to the I2C isolators is removed when they're not in use.

SOC Estimation

SOC Estimation Flow Chart
The flow chart above describes the SOC Estimation algorithm adopted, it is a variation of this Coulomb-Counting Algorithm. Coulomb-Counting consists of temporal integration of the battery current during charge and discharge. To take into account the battery self-discharge, the SOC is recalibrated by looking at the open-circuit voltage after the battery is left sitting unused for 24 hours. During charge and discharge the coulomb-counter 16-bit ADC inside the BMS is active and configured to trigger an interrupt every 250 ms. Inside the microcontroller, there are three variables: capacity, energy, and SOC. When the board is first powered the capacity is initialized with the expected capacity from a new set of cells, the SOC is estimated from the open-circuit voltage, and energy is set as a fraction of the initial capacity based upon the SOC. Each time the BMS triggers an interrupt the energy is updated, when the battery is empty the energy is set to zero. At the end of the charging process, if the battery has been charged from empty without interruptions, the accumulated energy is by definition the real battery capacity so the capacity variable is updated. This takes into account the aging of the cells in the SOC estimations.

Charging and Balancing

Charging-Balancing Flowchart
The microcontroller controls the charger IC, when the charging cable is plugged in, the charger is enabled if the SOC is less than 95% and it's disabled when SOC reaches 100%.
Balancing is performed only near the end of charge when the cell voltages are closer. If the difference in voltage between cells is greater than 15 mV, the balancing FET for the cell with the highest voltage is activated. It remains active until its voltage equals that of another cell. This simple scheme works surprisingly well. Once the cells are balanced they remain aligned pretty much on their own and only small corrections are needed.

PSU Block Diagram

PSU Block Diagram
This is the block diagram for the power supply. The microcontroller PIC24FJ1024GB610 handles the user interface and controls the rest of the circuitry. The connection to the LCD uses the EPMP peripheral configured as an 8-bit 6800 bus. The buttons and the encoder are handled by interrupts. When the power supply is turned off, all the flyback converters are disabled, the 3.3V rail is disabled, and the microcontroller enters sleep mode. During sleep the main 8MHz external clock is halted, the only way to wake the CPU is the interrupt triggered by the power button.
The power supply has two identical isolated channels, to set the output voltage and current limits, each channel has two DACs connected to the same I2C bus through isolators. Control signals are passed on with optocouplers. The output voltage is regulated in two steps, there is a flyback switching converter to keep isolation between channels followed by a linear regulator to reduce noise. The 100KHz clocks for the flyback converters are provided by the microcontroller, the clock signals for the two converters are 180° out of phase, this prevents the primary side MOSFETs from turning on at the same time thus reducing the RMS load on the primary capacitors. There is also a third flyback converter to provide power to the control circuitry.

Custom Transformers

Transforrmers
There are three custom transformers: two identical ones for the two main flyback converters and one for the auxiliary flyback converter. The picture above shows the winding scheme for each transformer.

Future Improvements

  • Fix issues with PCBs
  • BOM consolidation
  • Add USB functionality to the main uC

References

Disclaimer

The following project is shared "as is", with the sole objective of being useful. The creator of the described piece of hardware and its associated software cannot guarantee its correct functioning under any circumstance. The author of this project will not be held responsible for any material, personal or economic losses to you or any third parties that may arise from using this design. This project will not be used under any circumstances on systems whose responsibility is critical, or from which people's lives depend upon, directly or indirectly.

About

Dual-channel portable PSU powered from 6 x 18650 Lithium-Ion cells

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published