Geiger counter

From Alnwlsn - Projects Repository
Revision as of 16:22, 20 October 2018 by Alnwlsn (talk | contribs) (→‎Hardware)
Jump to navigation Jump to search
Completed unit in 2018.

A Geiger counter has been on my list of projects for a while, and in Spring 2018 I made one based on the very available Russian SBM-20 Geiger-Muller tubes, one of the most common cheap tubes on Ebay.

The heart of the Geiger counter is the GM tube, which is a tube filled with gas, and two electrodes. A high voltage is applied to the tube, usually around 400 volts. When a particle of ionizing radiation passes through the tube, it will ionize a molecule of the gas, and allow a tiny bit of current to flow through the tube. If we can detect the tiny current that flows through the tube, we can count them and find out the rate of radiation exposure in the area.

Hardware

I haven't opened the system for a while, and since it has been a while since building, I don't have a full schematic ready. But briefly:

  • The GM tube is a SBM-20. It can measure beta and gamma radiation. A resistor of several megaohms is placed in series to protect the tube from excessive current flow.
  • An ATTiny84 microcontroller controls the HV power supply, counting, and user interface.
  • The pulse detection circuit is made from a couple resistors, capacitors, and transistors, and comes from one of the common Geiger kit plans available online.
  • The power supply is a boost converter made from an inductor being repeatedly shut off, which creates high voltage spikes. A diode rectifies the high voltage and stores it in a capacitor. A voltage divider allows the microcontroller to read the high voltage. Signal to the boost converter is supplied by the microcontroller, at about 8kHz. PWM on this 8khz signal controls the output voltage. The ATTiny provides a feedback control system, which is an I (integral) controller, which I found was quite stable. I also tried a P controller and PI controller, but I could not tune these as well.
  • Power is supplied by an 18650 battery.

Case

The outside of the case has all user controls, inputs and outputs.

  • On the left side of the case, there are two switches:
    • Top Switch - When pulled towards front face, will enable internal speaker to provide Geiger "clicks"
    • Bottom Switch - When pulled towards face, will hold Center button down. I originally planned to use this for an extra user interface item, but ran out of IO.
  • On the front face:
    • 7 segment display - showing all the user interface operations
    • Blue LED - Turns on when high counts of radiation are observed
    • Buttons, Center, Left, and Right. These are the main interface controls.
  • On the right side:
    • 3.5 mm jack - provides Gnd, radiation pulse output, and serial output from the microcontroller
    • Barrel connector - Connect 3.7V - 5V here for external power. Center positive.
    • Microusb - Connect USB to charge battery. It should not be used to run the system, probably.
    • Power switch - Switches between battery power and external power barrel connector.