Rem Calculator

.rem-calc-container { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; max-width: 800px; margin: 20px auto; padding: 30px; border: 1px solid #e1e1e1; border-radius: 12px; background-color: #ffffff; box-shadow: 0 4px 20px rgba(0,0,0,0.08); color: #333; } .rem-calc-header { text-align: center; margin-bottom: 25px; } .rem-calc-header h2 { color: #2c3e50; margin-bottom: 10px; font-size: 28px; } .rem-calc-group { margin-bottom: 20px; } .rem-calc-group label { display: block; font-weight: 600; margin-bottom: 8px; color: #444; } .rem-calc-group input, .rem-calc-group select { width: 100%; padding: 12px; border: 2px solid #ddd; border-radius: 8px; font-size: 16px; box-sizing: border-box; transition: border-color 0.3s; } .rem-calc-group input:focus { border-color: #3498db; outline: none; } .rem-calc-btn { width: 100%; background-color: #2c3e50; color: white; padding: 15px; border: none; border-radius: 8px; font-size: 18px; font-weight: bold; cursor: pointer; transition: background-color 0.3s; } .rem-calc-btn:hover { background-color: #1a252f; } .rem-calc-result { margin-top: 25px; padding: 20px; background-color: #f8f9fa; border-radius: 8px; border-left: 5px solid #2c3e50; display: none; } .rem-calc-result h3 { margin-top: 0; color: #2c3e50; font-size: 20px; } .rem-val { font-size: 24px; font-weight: bold; color: #e67e22; } .rem-article { margin-top: 40px; line-height: 1.6; color: #444; } .rem-article h2 { color: #2c3e50; border-bottom: 2px solid #eee; padding-bottom: 10px; } .rem-article h3 { color: #2980b9; margin-top: 25px; } .rem-table { width: 100%; border-collapse: collapse; margin: 20px 0; } .rem-table th, .rem-table td { border: 1px solid #ddd; padding: 12px; text-align: left; } .rem-table th { background-color: #f2f2f2; }

REM Calculator

Calculate Radiation Equivalent Man (Dose Equivalent)

X-rays, Gamma rays, or Beta particles (Q = 1) Thermal Neutrons (Q = 5) Fast Neutrons / Unknown Neutrons (Q = 10) Alpha particles / Heavy nuclei (Q = 20) Protons (High energy) (Q = 2)

Calculated Results:

Dose Equivalent: 0 rem

In Millirem: 0 mrem

SI Equivalent: 0 Sv

Understanding REM: The Roentgen Equivalent Man

In health physics and radiation protection, the rem (Roentgen Equivalent Man) is a CGS unit used to measure the biological effect of ionizing radiation. Unlike the rad, which measures the amount of energy absorbed by physical matter, the rem accounts for the specific biological damage that different types of radiation inflict on human tissue.

The REM Calculation Formula

The calculation of dose equivalent is straightforward but requires knowledge of the radiation type's "Quality Factor" (Q). The formula used by this calculator is:

H (rem) = D (rad) × Q

  • H: Dose equivalent in rem
  • D: Absorbed dose in rad (radiation absorbed dose)
  • Q: Quality Factor (Dimensionless weighting factor)

Common Quality Factors (Q)

Radiation Type Quality Factor (Q)
X-rays, Gamma rays, Beta particles 1
Protons 2 – 5
Thermal Neutrons 5
Fast Neutrons 10
Alpha Particles, Fission Fragments 20

Example Calculation

If a technician is exposed to 0.05 rad of alpha particle radiation, we use the quality factor of 20 for alpha particles. The calculation would be:

0.05 rad × 20 = 1.0 rem

This means that while the physical energy absorbed was small, the biological impact is equivalent to 1 rem of X-ray exposure.

Safety Limits and Context

To put these numbers into perspective, the average person receives approximately 0.62 rem (620 mrem) per year from natural and medical sources combined. The occupational limit for radiation workers in the United States is generally 5 rem per year, though many facilities aim for much lower levels following the ALARA (As Low As Reasonably Achievable) principle.

Rem vs. Sievert (Sv)

The rem is an older unit still widely used in the United States. The International System of Units (SI) equivalent is the Sievert (Sv). The conversion is simple:

  • 1 Sievert = 100 rem
  • 1 rem = 0.01 Sievert (or 10 millisieverts)
function calculateRem() { var absorbedDose = document.getElementById('absorbedDose').value; var qualityFactor = document.getElementById('radiationType').value; var resultDiv = document.getElementById('remResult'); var remDisplay = document.getElementById('remValue'); var mremDisplay = document.getElementById('mremValue'); var sievertDisplay = document.getElementById('sievertValue'); if (absorbedDose === "" || isNaN(absorbedDose)) { alert("Please enter a valid number for the absorbed dose."); return; } var doseValue = parseFloat(absorbedDose); var qValue = parseFloat(qualityFactor); if (doseValue < 0) { alert("Dose cannot be negative."); return; } // Calculation logic var remTotal = doseValue * qValue; var mremTotal = remTotal * 1000; var svTotal = remTotal / 100; // Displaying results remDisplay.innerHTML = remTotal.toLocaleString(undefined, {minimumFractionDigits: 2, maximumFractionDigits: 5}); mremDisplay.innerHTML = mremTotal.toLocaleString(undefined, {minimumFractionDigits: 2, maximumFractionDigits: 2}); sievertDisplay.innerHTML = svTotal.toLocaleString(undefined, {minimumFractionDigits: 4, maximumFractionDigits: 7}); resultDiv.style.display = "block"; }

Leave a Comment