1. Prototypes
Status as of June, 2024
With an SSD1306 0.96'' OLED and a buzzer. Also connected is a Pico-GPS-L76B (GNSS Modul) to determine the geographical location, including an extra Pico because using an extra Pico is easier for conducting experiments.
The Picos communicate thru the UART interface.
Demo video
In a nutshell
On the left OLED you hopefully recognize the past four CPM values (13, 14, 15, 10), together with a geographical location (obscured for privacy reasons).
In order to save power, the OLED on the right shows only a bare minimum of data (every pixel consumes energy), and the brightness is diminished. More information farther below.
2. Schematic
The device comprises in essence the MCU board, the boost converter, a power supply network, the HV control loop and of course the Geiger tube itself.
Diode D1 prevents immediate discharge of capacitor C1 and tube voltage is building up quickly. The coil voltage peaks into the double, then triple digits every time the transistor cuts off (see simulation results below).
Upper limit of the PWM frequency is a few kHz: around 2 kHz the HV is starting to drop considerably (edit: with UF4007 not longer the case, see "Note 2").
Note 1: values for R1, R5, C2, C3 can be varied (it is mostly irrelevant for the power consumption whether R1 is 240 Ohm or, say, 1 kOhm for I use a control loop anyway)
Note 2: UF4007 is superior to the originally used 1N4007 (UF4007 better suited for higher frequencies)
Note 3: I've changed the inefficient (but cheap) L7805CV linear voltage regulator to LP2950; C2 isn't really necessary here but doesn't hurt either
Note 4: as a general rule, the anode resistor should be soldered physically close to the tube
3. G-M tube SBM-20 (or STS-5, Cyrillic CTC-5)
With this Soviet Union tube you can detect Beta and Gamma radiation (as with any Geiger tube, you cannot distinguish them), but not Alpha. For the tubes you are seeing on the pictures I paid around 30€ (in 2022, probably more expensive now), including shipment.
Technical data: SBM-20_GER1.pdf (mikrocontroller.net)
For registering pulses by the counting system proper working conditions have to be established. That means in practical terms generating a tube voltage within the Plateau area.
Beyond the characteristic "Knee" all pulses are (or ought to be) counted. Below the starting voltage, no pulses are counted at all.
4. Emitters, natural radiation and testing
For testing the general viability I use small pieces of Uranium glass (this matter doesn't radiate intensely for obvious reasons).
The natural radiation is detected about 20 CPM (in 49°46xxx' N, 11°12xxx' E) with the current prototypes. There's of course the inherent randomness in the measured data.
Note: for a reasonably accurate realization of the underlying probability distribution there are a lot of samples needed, the given graphs are just for illustration (for seldom events such as radioactive decay, Poisson distribution can be a helpful mathematical model).
5. Program development and display of data
5.1 Conceiving an algorithm from scratch
I use C language for program development. In order to work with it, I had to install the tool chain (the C development system) on my Raspberry Pi.
Necessary for the HV-generation is a PWM with a frequency of e.g. 10 kHz and a duty cycle of e.g. 60% (output here on GP3, see paragraph 5) - those are empirical parameters.
As we have an MCU connected there are several ways how to handle measurement data.
Triggering IRQs and counting them (here on GP2) is one pragmatic method, for a pulse (gas discharge, i.e. counting event) has a duration of about 0.3 ms. Problems may arise with high counting rates for the interrupt handler might be unable to deal with them properly (up to about 500 CPM, a counting rate I'm able to generate with the emitters, everything seems alright)....
Read more »
The counter on some of your photos is not SBM-20, but STS-5, an older version with similar specifications.