Sievert values #38
-
Hi, Is it possible to get Sievert values instead of cps? Thanks in advance. BR Andreas |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Hi again, that's actually not trivial since for different sizes and geometries of scintillator crystals produce different count rates for the same sample. If you have a calibrated geiger counter at hand, you could use this as a way to somewhat calibrate your device. The simplest possible way is to just find a multiplication factor that converts your cps reading to a Sv reading. You can play around with this factor until the Sv reading on your calibrated Geiger counter matches the one on your device. That's not ideal at all, but it's quick and easy. A small disclaimer: I intentionally didn't add a Sievert reading. That's because it might lead you to believe that the device is a genuine measuring instrument for nuclear safety and you might want to use it for such a purpose. Do NOT do this. This is more of a toy project than something you want to rely on. Furthermore, using a spectrometer as a Geiger counter only, in order to read Sievert is quite the waste of resources. There's much cheaper projects suited for this use case, such as my Mini SiD project. For everything else, a simple cps reading is more than enough to gauge the activity relative to the background. Hope this answers your question! |
Beta Was this translation helpful? Give feedback.
You can try the simple multiplication way.
You will need to change this line here (this is the display for the geiger mode):
Open-Gamma-Detector/software/opengamma_pico/opengamma_pico.ino
Line 827 in f222fe1
Try to find a constant that, when multiplied with
avg_cps
, will output Sv values close to a calibrated one in the same environment (e.g. background only). If your're in an order of magnitue of like 10 at background levels, you'd probably want to start with a factor of around 1/100 000 000 and test forward from there.I don't know for sure if this works for larger ranges (linearity!), but you could also try to build a linear function that co…