Exposure Rate Calculation

Radiation Exposure Rate Calculator .calc-container { max-width: 800px; margin: 0 auto; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; line-height: 1.6; color: #333; } .calculator-box { background: #f8f9fa; border: 1px solid #e9ecef; border-radius: 8px; padding: 30px; margin-bottom: 40px; box-shadow: 0 4px 6px rgba(0,0,0,0.05); } .calculator-title { text-align: center; color: #2c3e50; margin-bottom: 25px; font-size: 24px; font-weight: 700; } .form-group { margin-bottom: 20px; } .form-group label { display: block; margin-bottom: 8px; font-weight: 600; color: #495057; } .form-control { width: 100%; padding: 12px; border: 1px solid #ced4da; border-radius: 4px; font-size: 16px; box-sizing: border-box; } .form-control:focus { border-color: #007bff; outline: none; box-shadow: 0 0 0 3px rgba(0,123,255,.25); } .btn-calc { width: 100%; background-color: #007bff; color: white; border: none; padding: 15px; font-size: 18px; border-radius: 4px; cursor: pointer; font-weight: 600; transition: background-color 0.2s; } .btn-calc:hover { background-color: #0056b3; } .result-box { background-color: #ffffff; border: 1px solid #dee2e6; border-radius: 4px; padding: 20px; margin-top: 25px; text-align: center; display: none; } .result-value { font-size: 32px; font-weight: 700; color: #28a745; margin: 10px 0; } .result-label { font-size: 14px; color: #6c757d; text-transform: uppercase; letter-spacing: 1px; } .article-content h2 { color: #2c3e50; border-bottom: 2px solid #eee; padding-bottom: 10px; margin-top: 40px; } .article-content p { margin-bottom: 15px; } .formula-box { background: #eef2f7; padding: 15px; border-left: 4px solid #007bff; font-family: monospace; margin: 20px 0; } .note { font-size: 0.9em; color: #666; font-style: italic; }

Radiation Exposure Rate Calculator

— Custom / Manual Entry — Cesium-137 (Cs-137) Cobalt-60 (Co-60) Iridium-192 (Ir-192) Radium-226 (Ra-226) Thulium-170 (Tm-170)
Estimated Exposure Rate
0 R/h
0 mR/h

Understanding Radiation Exposure Rate

In the fields of health physics, industrial radiography, and nuclear safety, calculating the Exposure Rate is a fundamental task for ensuring personnel safety. The exposure rate determines the intensity of radiation at a specific distance from a radioactive source.

This calculator uses the standard "Inverse Square Law" combined with the specific Gamma constant of the radioactive isotope to determine how many Roentgens per hour (R/h) a person or object would be exposed to at a given distance.

The Exposure Rate Formula

For a point source of radiation, the exposure rate is calculated using the following formula:

X = (Γ × A) / d²

Where:

  • X = Exposure Rate (Roentgens per hour, R/h)
  • Γ (Gamma) = Specific Gamma Ray Constant (R·m²/Ci·h)
  • A = Activity of the source (Curies, Ci)
  • d = Distance from the source (Meters)

Inverse Square Law Explained

The most critical component of this calculation is the distance (d). Because distance is squared in the denominator (d²), doubling your distance from a radiation source reduces the exposure rate by a factor of four. Conversely, halving your distance increases the exposure by a factor of four.

This principle is a cornerstone of the ALARA (As Low As Reasonably Achievable) safety concept: Time, Distance, and Shielding.

Common Gamma Constants

Different isotopes emit gamma rays at different energies and probabilities. The Gamma Constant (Γ) normalizes these factors for calculation. Here are common approximate values used in industrial radiography:

  • Cobalt-60 (Co-60): 1.32 R·m²/Ci·h (High energy, used in sterilization and therapy)
  • Cesium-137 (Cs-137): 0.33 R·m²/Ci·h (Used in calibration equipment)
  • Iridium-192 (Ir-192): 0.48 R·m²/Ci·h (Standard for industrial radiography/NDT)

How to Use This Calculator

  1. Select Isotope: Choose a common isotope from the dropdown menu to auto-fill the Gamma Constant. If your isotope isn't listed, select "Custom" and enter the constant manually.
  2. Enter Activity: Input the current activity of the source in Curies (Ci). Note that activity decays over time, so ensure you use the current activity, not the initial activity at the time of manufacture.
  3. Enter Distance: Input the distance between the source and the point of measurement in meters.
  4. Calculate: Press the button to see the result in Roentgens per hour (R/h) and milliRoentgens per hour (mR/h).

Disclaimer: This calculator is for educational and estimation purposes only. It assumes a point source geometry and does not account for air attenuation or shielding. Always use calibrated survey meters for verifying actual radiation levels.

function updateGamma() { var select = document.getElementById('isotopeSelect'); var gammaInput = document.getElementById('gammaConstant'); var selectedValue = select.value; if (selectedValue !== "0") { gammaInput.value = selectedValue; } else { gammaInput.value = ""; } } function calculateExposureRate() { // Get input values var gamma = parseFloat(document.getElementById('gammaConstant').value); var activity = parseFloat(document.getElementById('activitySource').value); var distance = parseFloat(document.getElementById('distanceSource').value); var resultBox = document.getElementById('resultBox'); var resultValue = document.getElementById('resultValue'); var resultMilli = document.getElementById('resultMilli'); // Validation if (isNaN(gamma) || isNaN(activity) || isNaN(distance)) { alert("Please enter valid numbers for all fields."); return; } if (distance <= 0) { alert("Distance must be greater than zero."); return; } // Calculation: Rate = (Gamma * Activity) / (Distance^2) var rate = (gamma * activity) / (distance * distance); // Formatting result // Rate is in R/h var rateFormatted = rate.toFixed(4); // Convert to mR/h for smaller values var rateMilli = (rate * 1000).toFixed(2); // Display results resultBox.style.display = "block"; resultValue.innerHTML = rateFormatted + " R/h"; resultMilli.innerHTML = "Equivalent to: " + rateMilli + " mR/h"; }

Leave a Comment