Skip to main content

Making Hydrogen

There are numerous Ways to make Hydrogen gas. It is the main component of water. So I shall show you one technique to make hydrogen gas.

Materials required:
  •  Aluminium : I used aluminium pieces which I found in my garage. You can also cut pieces of coke/red-bull can and use
  • NaOH : I took NaOH pellets
  • Water
  • Test tube or conical flask Depending upon how much hydrogen you want to produce.
  • Test tube stand
  • Balloon : select the appropriate size of the balloon.
  • rubber band
  • Source of ignition: To test The hydrogen.



Now follow these steps:

  • Step 1: Take the Test tube and fill it with water. Dissolve the NaOH pellets. If you have ready NaOH solution, Then you can use that.
  • Step 2: Now add the Aluminium pieces.(If you want to produce hydrogen faster then you have to use aluminium powder instead of pieces.)
  • Step 3: Tie the balloon to the Test tube using the rubber band. and mount the test tube on the test tube stand.
NOTE: The reaction is exothermic. There is a lot of heat produced.So do not try to hold the test tube in the hand. else you will drop it or get sever burns.

  • Step 4: Once the balloon is filled or the reactions stops. you can tie the neck of the balloon and remove it from the test tube.
You have successfully produced Hydrogen.you can test it to confirm.

Reaction: 2NaOH + 2AL +6H2O ---> 2NaAl(OH)4 + 3H2 

NOTE:  I take no responsibility for any Damage caused. This information is for educational purposes only.

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

PIC 18F452 Programming: LED blinking using assembly

Here is the basic program you need to start off with when you learn to use a microcontroller. We are using the microchip family PIC microcontroller. Which stands for Peripheral Interface Controller, PIC 18F452 is a 40 pin 8-bit microcontroller with 32 KBytes flash, 1536 Bytes of RAM and 256 Bytes EEPROM. It also boasts 4 timers, and three external interrupt pins. Coming to our first program, We will be using MPLAB for Building this project. Create a new project and select MPASM Suite for compiling. After writing the program, Dont forget to add the linker file and the source file in the source window. The linker file for the PIC 18F452 can be found in the  C:\Program Files\Microchip\MPASM Suite\LKR. search for 18f452. In this program, the Bit RB0, toggles continuously with some delay. Connect an LED to The RB0 Pin, i.e Pin 33.connect a 330E resistor in series with the LED. PROGRAM #INCLUDE p18f452.INC; CONFIG WDT=OFF; disabling the watchdog timer ORG 0; Specifing the st

PIC Programming: making a port bits toggle using assembly

CIRCUIT: Program: #INCLUDE p18f452.INC ORG 0 CLRF TRISD  L1 SETF PORTD CALL DELAY CLRF PORTD CALL DELAY GOTO L1 DELAY MOVLW 0xff MOVWF 0x10 L2 DECF 0x10,F BNZ L2 RETURN END