Online mECT Dose Calculator (ECT Charge in mC)
Electroconvulsive Therapy (ECT) remains one of the most effective treatments for severe depression, catatonia, and treatment-resistant psychiatric conditions. Modern ECT devices deliver constant-current stimulation, which means the stimulus dose is best expressed as electrical charge, measured in millicoulombs (mC).
To make this easier to understand and teach, I have created a simple online mECT dose calculator below. It allows you to estimate the delivered charge (mC) based on three commonly used stimulus parameters:
-
Pulse width (ms)
-
Frequency (Hz)
-
Stimulus duration (seconds)
Most modern ECT devices operate around a constant current of ~800 mA, and the delivered charge can be calculated using the formula:
Charge (mC) = Current × Pulse Width × Frequency × Duration
The calculator embedded below performs this calculation instantly.
ECT / MECT Charge Calculator
Estimate delivered electrical charge based on stimulus parameters.
Formula: Q = Current × Pulse Width × Frequency × Duration
function calcCharge(){
let pw = parseFloat(document.getElementById("pw").value); let freq = parseFloat(document.getElementById("freq").value); let dur = parseFloat(document.getElementById("dur").value);
let currentA = 0.8;
let pwSeconds = pw / 1000;
let chargeC = currentA * pwSeconds * freq * dur;
let chargemC = chargeC * 1000;
document.getElementById("resultmC").innerHTML = chargemC.toFixed(1) + " mC";
}
Why Charge (mC) Matters in ECT
Unlike energy (Joules), charge directly reflects the electrical stimulus delivered to the brain in constant-current ECT systems. This makes it the most meaningful parameter for:
-
seizure threshold titration
-
teaching residents
-
understanding stimulus dosing
-
comparing stimulation parameters across devices
In clinical practice, the actual treatment dose is often given as a multiple of the patient’s seizure threshold, rather than a fixed charge value.
Disclaimer
This calculator is intended for educational and illustrative purposes only.
It is not a clinical decision-making tool and should not be used to determine treatment parameters for individual patients. ECT dosing must always be performed using approved medical devices, established treatment protocols, and clinical judgment by qualified professionals.
Actual stimulus delivery may vary depending on device characteristics, patient impedance, electrode placement, and seizure threshold.
Dr. Srinivas Rajkumar T, MD (AIIMS, New Delhi), DNB, MBA (BITS Pilani)
Consultant Psychiatrist & Neurofeedback Specialist
Mind & Memory Clinic, Apollo Clinic Velachery (Opp. Phoenix Mall)
✉ srinivasaiims@gmail.com 📞 +91-8595155808