1

Currently, I have a circuit with two motors (200 W, 24V, 8A max), motor drivers, DC DC converters, controllers and other components powered by a 24V Li-ion battery. The problem with current setup is whenever the battery drains, we need to replace it with the fully charged battery which forces us to shut down the whole system while swapping batteries.

The proposed idea for this issue is to use two batteries and design a power management system such that if one battery drains below the threshold voltage, the circuit automatically switches power supply to the other battery and vise versa. Before the second battery depletes, the user will be prompted to replace the first battery and vice versa. The battery management circuit should also measure the voltage level via Arduino Analog pins so that user can be prompted.

Though, i found many useful information from similar posts, i am still feeling little bit lost.

How to use diode oring to switch between two power sources

From the above link, i found 2 simple circuits. enter image description here

The main problem with the circuit above is that if we use batteries for both sources (V1 and V2) , they deplete concurrently which is not preferred in my case.


enter image description here

In the circuit above, When V1 is cut off or drops below threshold voltage, the relay switches two V2. But, the problem is once V1 is connected back, the circuit switches back from V2 to V1 which again is not desired.


What I am looking for is a solution where the circuit runs on first battery and when the first battery drops below the threshold value, the circuit should switch to second battery and the user will later replace the first battery. Again, when the second battery voltage drops below the threshold value, the circuit should switch back to the first battery. This is to ensure that the battery is fully drained before charging.

I am open to use diodes, relays, transistors and arduino (it's already in the circuit). I am afraid there might by huge power loss if we use diodes.

Please, feel free to advise and comment :)

prasanth_ntu
  • 11
  • 1
  • 6
  • @EMFields 1) 5A to 10A may have to be switched. 2) Yes, the switchover must occur without a drop out (as the CPU turns off immediately if there's a dropout) – prasanth_ntu Aug 08 '16 at 08:31
  • 1
    What happens when the 2nd battery becomes depleted and the first battery is not in position or recharged. You need to logically cover the what-ifs. – Andy aka Aug 08 '16 at 08:55
  • @Andyaka Thanks for the prompt. Before the 2nd battery depletes & when the first battery is not recharged, user will be notified (via buzzers or screen) to manually replace the first battery. The same applies for the other battery. – prasanth_ntu Aug 08 '16 at 09:15
  • 1
    No, you are missing my point. What if the battery is not replaced - you want a solution that has to cope with the what ifs. It's no good saying it will be replaced - what if it isn't - how does the system cope, what should the system do. Think about it more. – Andy aka Aug 08 '16 at 09:17
  • @Andyaka: Sorry that i missed your point. Will think of a back up solution for that. If both the batteries depletes, the system might be programmed to self shut down. As of now, it's not our primary focus as each battery can run the system for at least 3-4 hrs which gives plenty of time for the user to swap/ charge the other battery. – prasanth_ntu Aug 08 '16 at 09:20
  • http://electronics.stackexchange.com/questions/161061/switching-between-two-outputs?rq=1 This link shows how to switch between 2 outputs. In my case, i need to switch between 2 inputs – prasanth_ntu Aug 08 '16 at 09:38
  • What's the switchover voltage? 4) Can your load be low-side switched or must it be high-side switched?
  • – EM Fields Aug 08 '16 at 10:36
  • @EMFields: Could you please advise me on how to calculate switchover voltage. I am also wondering what would be the difference between low-sided switch and high-sided switch. I am feeling little bit lost in it as I am a freshly graduated engineering student with no prior experience in circuits. – prasanth_ntu Aug 11 '16 at 04:03
  • You "calculate" the switching point by deciding on how far the active battery's voltage is allowed to decay before you disconnect it and switch in the fresh one. A high side switch - in this case - is one which switches power to the input of a grounded load, while a low side switch would switch the ground. – EM Fields Aug 11 '16 at 11:37