Count Rate Calculator

Count Rate Calculator .crc-wrapper { max-width: 800px; margin: 0 auto; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; color: #333; line-height: 1.6; } .crc-calculator-box { background: #fdfdfd; border: 1px solid #e0e0e0; border-radius: 8px; padding: 30px; box-shadow: 0 4px 6px rgba(0,0,0,0.05); margin-bottom: 40px; } .crc-input-group { margin-bottom: 20px; } .crc-label { display: block; font-weight: 600; margin-bottom: 8px; color: #2c3e50; } .crc-input { width: 100%; padding: 12px; border: 1px solid #ccc; border-radius: 4px; font-size: 16px; box-sizing: border-box; } .crc-select { width: 100%; padding: 12px; border: 1px solid #ccc; border-radius: 4px; font-size: 16px; background-color: white; box-sizing: border-box; } .crc-btn { width: 100%; background-color: #0073aa; color: white; padding: 14px; border: none; border-radius: 4px; font-size: 18px; font-weight: bold; cursor: pointer; transition: background-color 0.3s; } .crc-btn:hover { background-color: #005177; } .crc-results { margin-top: 25px; padding: 20px; background-color: #f0f8ff; border-radius: 4px; border-left: 5px solid #0073aa; display: none; } .crc-result-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid #ddeeff; } .crc-result-row:last-child { border-bottom: none; } .crc-result-label { font-weight: 600; } .crc-result-value { font-weight: bold; color: #0073aa; } .crc-content h2 { color: #2c3e50; border-bottom: 2px solid #eee; padding-bottom: 10px; margin-top: 40px; } .crc-content h3 { color: #444; margin-top: 25px; } .crc-content ul { margin-bottom: 20px; } .crc-content li { margin-bottom: 8px; } .crc-formula-box { background: #f9f9f9; padding: 15px; border-left: 4px solid #666; font-family: monospace; margin: 20px 0; overflow-x: auto; }

Count Rate Calculator

Calculate CPS, CPM, and Statistical Uncertainty

Seconds (s) Minutes (min) Hours (hr)
Counts Per Second (CPS):
Counts Per Minute (CPM):
Statistical Uncertainty (Std Dev):
Relative Standard Deviation:

Understanding Count Rate Calculations

The Count Rate Calculator is an essential tool for nuclear physics, health physics, and radiochemistry. It determines the frequency of radiation events detected over a specific period. Whether you are using a Geiger-Müller counter, a scintillation detector, or analyzing radioactive decay data, converting raw counts into a standardized rate (like CPS or CPM) is the first step in analysis.

What is Count Rate?

Count rate is simply the number of events (counts) detected per unit of time. Unlike a total count, which depends on how long you measure, the count rate allows you to compare the intensity of radiation sources regardless of the measurement duration.

  • CPS (Counts Per Second): The standard SI-adjacent unit for intensity.
  • CPM (Counts Per Minute): Commonly used in handheld survey meters and Geiger counters.

The Count Rate Formula

To calculate the count rate ($R$), divide the total number of detected events ($N$) by the time interval ($t$) during which measurement took place.

R = N / t

Where:

  • R = Count Rate (CPS or CPM)
  • N = Total measured counts (dimensionless integer)
  • t = Time elapsed

Statistical Uncertainty in Counting

Radioactive decay is a random process governed by Poisson statistics. The reliability of your count rate depends on the total number of counts collected. The standard deviation ($\sigma$) of a single measurement of $N$ counts is approximated by the square root of $N$.

The uncertainty in the count rate ($\sigma_R$) is calculated as:

σ_R = √N / t

This calculator provides this uncertainty value, allowing you to report results as Rate ± Error. The Relative Standard Deviation (RSD), expressed as a percentage, helps determine the precision of your measurement. Collecting more counts generally reduces the RSD, improving statistical confidence.

How to Use This Calculator

  1. Enter Total Counts: Input the raw number of radiation events detected by your instrument.
  2. Enter Duration: Input the time elapsed during the measurement.
  3. Select Unit: Choose whether your time input is in seconds, minutes, or hours.
  4. Calculate: Click the button to see the normalized rates (CPS/CPM) and the statistical error associated with your measurement.
function calculateCountRate() { // Get input elements var countsInput = document.getElementById('totalCounts'); var timeInput = document.getElementById('timeDuration'); var unitInput = document.getElementById('timeUnit'); var resultsArea = document.getElementById('resultsArea'); // Get values var N = parseFloat(countsInput.value); var t = parseFloat(timeInput.value); var unit = unitInput.value; // Validation if (isNaN(N) || N < 0) { alert("Please enter a valid positive number for Total Counts."); return; } if (isNaN(t) || t 0) { rsd = (1 / Math.sqrt(N)) * 100; } // Formatting Output document.getElementById('resCPS').innerHTML = cps.toFixed(4) + " s⁻¹"; document.getElementById('resCPM').innerHTML = cpm.toFixed(2) + " min⁻¹"; // Display uncertainty based on the magnitude document.getElementById('resError').innerHTML = "± " + rateUncertaintyCPS.toFixed(4) + " CPS"; document.getElementById('resRSD').innerHTML = rsd.toFixed(2) + "%"; // Show results resultsArea.style.display = "block"; }

Leave a Comment