1

Possible Duplicate:
How to drive a Peltier element?

I want to control a few Peltier using MCU. I think the easiest way is using PWM, but I feel that the efficiency is very low and It maybe will damage the Peltier.

Does anyone know what is the standard way to make a Peltier power supply with variable power?

pstan
  • 911
  • 2
  • 10
  • 18
  • Olin explains at http://electronics.stackexchange.com/a/28637/8627 why you shouldn't want to drive a peltier from PWM. – jippie Aug 05 '12 at 10:05

1 Answers1

1

For more information see both my answer and Olin's answer at How to drive a Peltier element. Note that while our two answers may appear to conflict somewhat in places they are both giving essentially identical advice.

  • My key message is that thermal cycling must be avoided as if it occurs it will physically destroy the device in much less time than when driven properly. Drive should be either DC with a low enough ripple component that it does not affect thermal cycling, or PWM at a high enough frequency that the PWM frame period is far smaller than the Peltier device's thermal time constant. 50 Hz or greater OWM frame rate is probably OK.

  • Olin's key message is that PWM is less efficient than DC because the Peltier is less efficient when driven to maximum level, and PWM uses maximum level or off.

RC filtering PWM will produce lossy DC and reduce efficiency. LC filtering PWM can result in higher efficiency.

If efficiency is especially important a good and relatively low cost solution is to use a buck converter running at a high enough frequency to avoid thermal cycling.

Using my favourite entry level smps IC, the MC34063, you can build a suitable buck converter for probably $1 to $2 US. Fig 11 / 11A / 11B in the MC34063 data sheet show circuits for step down. You would want to convert these to constant current output and select the desired current to suit.

Russell McMahon
  • 147,325
  • 18
  • 210
  • 386