Skip to main content

Peltier Module project Idea

Peltier module

Peltier module is a device which uses the peltier effect to create a heat difference between the two sides of the device.In simple terms its like a heat pump. It takes the heat from one side (The side which becomes cold) and transfers it to the other side (the side which becomes Hot). These are very compact and efficient. A DC source should be connected to this module. The Peltier module I have, requires a 12 volts supply. They are available in a lot of power rating. The higher the power rating the higher the capacity to pump the heat from one side to another. As you can see the image it has two terminals, one is red for +12 Volts and and black for ground. I tried to connect a 12 volts lead acid battery but it was not providing sufficient amount of current. So I took an SMPS from my old computer and used the +12 volts supply.

Advantages:
  • They are compact. Small in size. The one I have is around 4cmx4cm. and it can easily freeze water.
  • no refrigerant required. unlike conventional refrigerator, we do not need any refrigerant for cooling.
  • no moving parts. so no wear and tear of parts.
  • has a very long life.
  • the cooling/heating can be controlled by varying the input voltage.
  • Easy to use.
  • portable.
Disadvantage:
  • They are fragile. if you drop them the edges are going to break.
  • requires high current.
  • The temperature difference between the two sides of the peltier module is limited.
  • Not as efficint with respect to co-efficient of performance.
Project ideas:
  • Connect the peltier module between the processor of your computer and its heat sink. It will keep your processor cool and healthy for long hours use. This is best for office computer s or gaming computers.
  • similarly we can use the peltier module in other gadgets which gets too hot and can damage the device itself.
  • we can build a small refrigerator to keep a can of coke or beer cold connecting it to a cigarette lighter port in the car.
  • can build a USB coffee Warmer by using the hotside instead of the cold side
  • we can use this module to build a all weather jacket.  If you know whhat i mean...
  • A laptop cooler.
And more....
If you have more ideas please post them in the comment section.



NOTE: please connect a proper heat sink on the hot surface of the peltier module. Else the module will be damaged. And use heat sink compound between the heat sink and the Peltier module.


Ice formed on the peltier module.



Comments

Popular posts from this blog

Switch debouncer using SR Latch

We use switch in our day to day life to switch ON/OFF a bulb or a fan or  any electrical devices. But when we use switches in digital circuits, we observe a phenomenon called bouncing. This occurs because, when we turn the switch, the mechanical parts vibrate. i.e It toggles between ON and OFF state for some time until the mechanical contact attain equilibrium. this vibrations are minute and are not at all noticeable in electrical circuit. where as in digital circuits, these vibrations create pulses. which are detected by circuits which results in an error.               In the above circuit, there is a switch connected to VCC. You can toggle it between terminal 'a' and terminal 'b'. which as a voltage drop of 'Va' and 'Vb' respectively. In digital circuits if you can observe, it takes a finite amount of time to toggle between terminal 'a' and 'b'. which might approximately take 15ns. Now let us consider the terminal is at 'a'. we...

ADXL 355 Accelerometer

A few days ago I went to get components for a project I was building. and came across a 3-axis accelerometer. So I decided to test it and make a post to give you an idea of things work and how you can use it. ADXL 355                   The accelerometer I have is ADXL 355 v2.0 board. there is are 5 headder pins, ground, 5V supply, X-axis output,Y-axis output and Z-axis output. It is quite compact. The one I have measured around 15mm x 15mm. These sensors are low cost. And can be incorporated in Projects or robots we build. The ADXL 355 board I have has an onboard Red led (smd) for the indication of power. The accelerometer has a wide range of applications. ADXL 355 is a basic accelerometer which gives analog values for all the three axis depending upon the position of the IC. ADXL 345 is an advanced accelerometr which can detect free-fall,activity,tap,double tap and communicates via I2C. The ADXL is a a ultra-lowpower as it consumes only 25 u...

Latch using JK Flip Flop

In this post we will learn how to use JK flip flop as a latch. i.e. for one pulse, the circuit continues to stay in the ON state until the next pulse. and the circuit continues to be in the OFF state till the next pulse. This can be achieved by using toggle mode in JK flip flop. TRUTH TABLE: IC 7476 J       k       set '      reset'        Q      Q' 1       1        1            1               Toggle IC CD4026 J       k       set       reset         Q      Q' 1       1        0           0               Toggle Note: Set is referred as PRE or preset. Reset is referred as CLR or clear. Refer the Datasheet of the JK flip flop you are using ...