From: thorin92 on
On Jan 6, 1:59 am, mike <spam...(a)go.com> wrote:
> thorin92 wrote:
> > On Jan 5, 1:49 pm, mike <spam...(a)go.com> wrote:
> >> thorin92 wrote:
> >>> On Jan 5, 1:12 pm, mike <spam...(a)go.com> wrote:
> >>>> thorin92 wrote:
> >>>>> Dear group,
> >>>>> I am trying to design a battery charger for this battery:
> >>>>>http://uk.farnell.com/varta/55615605940/battery-pcb-mount-6v-5-v150h/...
> >>>>> I'm familiar with voltage regulators and current limiting etc. but am
> >>>>> unsure what parameters to use?
> >>>>> If I simply provide 6v limited to 70mA will this work?
> >>>> NO unless you comply EXACTLY with the conditions of that number in the
> >>>> spec.  Not likely.
> >>>>> Thanks in advance
> >>>> To design a battery charger, you have to disclose a LOT about
> >>>> how the battery is used.  Simplest thing is to charge it at 4.2ma.
> >>>> Spec at the link says it will last 6-years being abused like that.
> >>>> But that may not meet your cycle requirements, that you haven't stated.
> >>> Hi Mike, thanks for the reply.
> >>> The battery will be discharged at around 50mA over 3 hours, then re-
> >>> charged as fast as possible. Its for a portable device running a load
> >>> of LEDs (like a bike light)
> >>> A long life needs to be maintained because the battery will be
> >>> permanently attached to the pcb.
> >>> Does that inspire any more help? Cheers :)
> >> Often, the most difficult part of a project is writing the spec.
> >> Words like "as fast as possible" will get you loads of input that
> >> may be VERY bad tradeoffs.
>
> >> Still insufficient information, but...
> >> Unless you have some SERIOUS size/weight constraints, your battery
> >> is probably too small.
>
> >> What's your definition of "discharged"?
> >> If you mean voltage cutoff at a level that guarantees none of the 5
> >> internal cells gets reversed, you have a chance of success.
> >> If you mean run it 'till the light goes dim, your battery will NOT have
> >> long life.
>
> >> Charging is problematic.  Depending on the NUMBER associated with
> >> "as fast as possible", you may have no option but to use a smart battery
> >> charger chip.
>
> >> I'm assuming this is a production device that requires agency approvals
> >> and you care about customer retention.   If it's an advertising giveaway
> >> device, put lithium coin cells in it and ship it.
>
> >> Replaceable AAA-cells that the customer has to recharge externally
> >> will save you a LOT of grief.  Customers cuss the internal battery
> >> when the light goes dim at midnight when they're half-way home.
>
> > The battery is for a research project that involves small plastic
> > glowing cubes, so the size/weight constraint is beyond AAA batteries.
>
> > By "fast", I'm only referring to a sensible charge time that would be
> > convenient. e.g. 8 hours is acceptable.
>
> > The cubes only need to operate for around 3 hours between charges, and
> > this is an AVR uC application so the system will switch off when the
> > voltage drops below 4.5v. Therefore the battery would not be fully
> > discharged (I assume).
>
> > The charger chip approach sounds the most plausible, what would you
> > recommend?
>
> > Thanks
>
> One thing to ask is, "how long does the research project last?"
> Doesn't make sense to go to a lot of trouble if it only has to
> last for a few months and a small number of recharges.
> Just charge it at C/10 and use a timer so it doesn't cook too badly.
> You can use the AVR to implement the timer internally.
>
> There are some considerations you may not have included in your analysis.
> I'm a PIC guy, so I can't speak for AVR, but assume similar
> issues apply.
>
> Have you considered that the maximum voltage on the battery during
> charge may exceed the supply voltage your AVR can tolerate?  Don't
> forget to include the increased internal resistance of an aging cell.
>
> 4.5V is 0.9V/cell.  That's below what's normally done, but not extreme.
> BUT, for such tiny cells at high discharge rates, it doesn't take
> a lot of imbalance to create problems.  4 cells at 1.2V can reverse
> the fifth one at 4.5V.  It's not a matter if IF the cells become imbalanced,
> just WHEN.
>
> Depends on your actual discharge profiles, but for a timed charge,
> you might set a flag if the 4.5V shutdown was triggered and apply
> a longer equalizing charge for the next charge cycle.
>
> If you open up one of the NiMH 9V batteries, you find this type
> of cell construction inside.  I've never had a good experience
> with rechargeable 9V batteries.  They always leak or short.
>
> I don't have any experience fast charging such tiny cells, but you might
> look into 0deltaV charging.  You have a processor, use that to monitor
> the charge.  There are A/D converter resolution issues.
> You're probably gonna have to turn off the charge current to measure
> the volts.

Hi Mike. 'Thanks for the detailed reply.

I'm not really looking for a sophisticated method of charging, just a
basic Voltage Regulator or Charger IC. Essentially the charger is
external and will simply connect to a 9V power supply (wall-wart).

I'm assuming that to achieve a constant current, the charge voltage is
variable. I've been looking at:

http://www.onsemi.com/pub_link/Collateral/AND8109-D.PDF

To implement the constant current source. However, I'm concerned with
any problems this method may involve. e.g.

-will the battery accept a voltage higher than 6v across the
terminals?
-will charging stop automatically?

My apologies but this area is new to me. Thanks
From: mike on
thorin92 wrote:
> On Jan 6, 1:59 am, mike <spam...(a)go.com> wrote:
>> thorin92 wrote:
>>> On Jan 5, 1:49 pm, mike <spam...(a)go.com> wrote:
>>>> thorin92 wrote:
>>>>> On Jan 5, 1:12 pm, mike <spam...(a)go.com> wrote:
>>>>>> thorin92 wrote:
>>>>>>> Dear group,
>>>>>>> I am trying to design a battery charger for this battery:
>>>>>>> http://uk.farnell.com/varta/55615605940/battery-pcb-mount-6v-5-v150h/...
>>>>>>> I'm familiar with voltage regulators and current limiting etc. but am
>>>>>>> unsure what parameters to use?
>>>>>>> If I simply provide 6v limited to 70mA will this work?
>>>>>> NO unless you comply EXACTLY with the conditions of that number in the
>>>>>> spec. Not likely.
>>>>>>> Thanks in advance
>>>>>> To design a battery charger, you have to disclose a LOT about
>>>>>> how the battery is used. Simplest thing is to charge it at 4.2ma.
>>>>>> Spec at the link says it will last 6-years being abused like that.
>>>>>> But that may not meet your cycle requirements, that you haven't stated.
>>>>> Hi Mike, thanks for the reply.
>>>>> The battery will be discharged at around 50mA over 3 hours, then re-
>>>>> charged as fast as possible. Its for a portable device running a load
>>>>> of LEDs (like a bike light)
>>>>> A long life needs to be maintained because the battery will be
>>>>> permanently attached to the pcb.
>>>>> Does that inspire any more help? Cheers :)
>>>> Often, the most difficult part of a project is writing the spec.
>>>> Words like "as fast as possible" will get you loads of input that
>>>> may be VERY bad tradeoffs.
>>>> Still insufficient information, but...
>>>> Unless you have some SERIOUS size/weight constraints, your battery
>>>> is probably too small.
>>>> What's your definition of "discharged"?
>>>> If you mean voltage cutoff at a level that guarantees none of the 5
>>>> internal cells gets reversed, you have a chance of success.
>>>> If you mean run it 'till the light goes dim, your battery will NOT have
>>>> long life.
>>>> Charging is problematic. Depending on the NUMBER associated with
>>>> "as fast as possible", you may have no option but to use a smart battery
>>>> charger chip.
>>>> I'm assuming this is a production device that requires agency approvals
>>>> and you care about customer retention. If it's an advertising giveaway
>>>> device, put lithium coin cells in it and ship it.
>>>> Replaceable AAA-cells that the customer has to recharge externally
>>>> will save you a LOT of grief. Customers cuss the internal battery
>>>> when the light goes dim at midnight when they're half-way home.
>>> The battery is for a research project that involves small plastic
>>> glowing cubes, so the size/weight constraint is beyond AAA batteries.
>>> By "fast", I'm only referring to a sensible charge time that would be
>>> convenient. e.g. 8 hours is acceptable.
>>> The cubes only need to operate for around 3 hours between charges, and
>>> this is an AVR uC application so the system will switch off when the
>>> voltage drops below 4.5v. Therefore the battery would not be fully
>>> discharged (I assume).
>>> The charger chip approach sounds the most plausible, what would you
>>> recommend?
>>> Thanks
>> One thing to ask is, "how long does the research project last?"
>> Doesn't make sense to go to a lot of trouble if it only has to
>> last for a few months and a small number of recharges.
>> Just charge it at C/10 and use a timer so it doesn't cook too badly.
>> You can use the AVR to implement the timer internally.
>>
>> There are some considerations you may not have included in your analysis.
>> I'm a PIC guy, so I can't speak for AVR, but assume similar
>> issues apply.
>>
>> Have you considered that the maximum voltage on the battery during
>> charge may exceed the supply voltage your AVR can tolerate? Don't
>> forget to include the increased internal resistance of an aging cell.
>>
>> 4.5V is 0.9V/cell. That's below what's normally done, but not extreme.
>> BUT, for such tiny cells at high discharge rates, it doesn't take
>> a lot of imbalance to create problems. 4 cells at 1.2V can reverse
>> the fifth one at 4.5V. It's not a matter if IF the cells become imbalanced,
>> just WHEN.
>>
>> Depends on your actual discharge profiles, but for a timed charge,
>> you might set a flag if the 4.5V shutdown was triggered and apply
>> a longer equalizing charge for the next charge cycle.
>>
>> If you open up one of the NiMH 9V batteries, you find this type
>> of cell construction inside. I've never had a good experience
>> with rechargeable 9V batteries. They always leak or short.
>>
>> I don't have any experience fast charging such tiny cells, but you might
>> look into 0deltaV charging. You have a processor, use that to monitor
>> the charge. There are A/D converter resolution issues.
>> You're probably gonna have to turn off the charge current to measure
>> the volts.
>
> Hi Mike. 'Thanks for the detailed reply.

You didn't answer my questions, so any info is a shot in the dark.
>
> I'm not really looking for a sophisticated method of charging, just a
> basic Voltage Regulator or Charger IC. Essentially the charger is
> external and will simply connect to a 9V power supply (wall-wart).

What's your definition of wall-wart? If it's a regulated wall-wart,
you can count on 9V if you comply with minimum load specs if any.
If you mean unregulated like you get from radio shack, the output
voltage can be VERY much different from 9V depending on the load.
>
> I'm assuming that to achieve a constant current, the charge voltage is
> variable.

I've been looking at:
>
> http://www.onsemi.com/pub_link/Collateral/AND8109-D.PDF
>
> To implement the constant current source. However, I'm concerned with
> any problems this method may involve. e.g.
>
> -will the battery accept a voltage higher than 6v across the
> terminals?
> -will charging stop automatically?

Putting a constant voltage across a NiMH battery is a good way
to make smoke. Stick in current and let the voltage go where it wants.
The problem is when to STOP charging. You need to provide some method
to stop the process when the cell is charged.

There's a quick and very dirty way to limit the current. Use an
incandescent
light bulb. For a relatively constant line voltage and a particular
wall-wart design,
a light bulb with enough volts across it to make it glow red will give you
constant-enough current over the range of interest.
Takes some experimentation. You can't just look up specs and decide
what to do. The parameters you want aren't specified.
I use #382 light bulbs just because I have
a box of them. This would be considered by most to be a BAD design,
but it can work in well constrained cases.

But you still want to STOP charging somehow.

You didn't respond to my caution about overvoltage.
You didn't say which AVR processor you're using, but all the ones
I looked at are specified for a maximum of 5.5V. Your battery will
be over 5.5V while charging...and during the initial portion of the
discharge. It's not unusual for a used cell to go to 1.6V during
charge. X5 that's 8V. Even at 1.4V/cell, you're still WAY over 5.5V.
Unless you're doing something to regulate it, you risk blowing the thing
up. If you ARE regulating it, there are issues in that department.

Electronic design is a science.
Product design is an ART.
There are many, many issues that are obvious to an engineer skilled in
the art that will bite you in the A$$.

The battery is one of the biggest problems in a battery-operated design.
Sounds like you need somebody local to help you design this.
>
> My apologies but this area is new to me. Thanks
From: thorin92 on
In the application, the output of the battery is regulated by an LDO
Voltage Regulator before powering the AVR, so the AVR supply is of no
concern.

The DC supply for the charger will be heavily filtered and regulated,
powered from a mains transformer.

I do not wish to use an AVR to manage charging, although if this is a
necessity for implementation of a timer then I guess its compulsory.

In the battery specs it states fast charge 70mA for 3 hours. Thus if I
build the LM317 regulator with current control to 70mA this should
suffice, but how would I know when the battery is charged? Is there
some indication from the terminal voltage with this type of battery?

Alternatively, a trickle charge of 4.3mA implemented using the LM317?

Best



From: Phil Allison on

"thorin92"

I'm not really looking for a sophisticated method of charging,
just a basic Voltage Regulator or Charger IC.

** The problem is that " basic" chargers tend to ruin cells
and batteries very quickly - by overcharging them and
permanently altering the internal chemistry.


I'm assuming that to achieve a constant current, the charge
voltage is variable. I've been looking at:

http://www.onsemi.com/pub_link/Collateral/AND8109-D.PDF

To implement the constant current source. However, I'm
concerned with any problems this method may involve. e.g.
-will the battery accept a voltage higher than 6v across the
terminals?

** It really has NO choice in the matter .....


-will charging stop automatically?


** No way will that happen, unless a very clever circuit makes
it happen.


My apologies but this area is new to me.


** Not too hard to tell that one ..... which makes it near
impossible to educate you quickly enough.

So your best bet is NOT to try to be too clever or
"high tech" in your choices - rather go conservative,
use slow ( ie 10 hour) charging and cells sized to have
more capacity that you actually need.

A safety margin can be great asset against the unforseen ...



..... Phil





From: Phil Allison on

"thorin92"


The battery is for a research project that involves small plastic
glowing cubes, so the size/weight constraint is beyond AAA batteries.

** You should consider another option - Farnell have 2/3AAA size NiMH
cells (solder tagged too) that are far more rugged than your button cells
and have *double* the mAH capacity ( 300mAh against 150mAh ) and four times
the max discharge rate.

Size and weight are only slightly more at 45gms against 32gms.

http://uk.farnell.com/gp-batteries/gp30aaamhb/battery-2-3aaa-1-2v/dp/206519?Ntt=206519

Cost is about the same for either option.


The cubes only need to operate for around 3 hours between charges, and
this is an AVR uC application so the system will switch off when the
voltage drops below 4.5v. Therefore the battery would not be fully
discharged (I assume).

** At 0.9 volts per cell

- they certainly would be FULLY discharged.



..... Phil





First  |  Prev  |  Next  |  Last
Pages: 1 2 3 4 5 6
Prev: Oldschool TTL design question
Next: Multiple current mirrors