Introduction & Context

Centrifugal acceleration—expressed as a multiple of gravitational acceleration g—is the key scaling parameter that determines phase-separation performance in rotating equipment. In process engineering it governs:

  • Solid–liquid separation in decanter and screen-bowl centrifuges
  • Liquid–liquid extraction in podbielniak and disc-stack centrifuges
  • Cell harvesting and inclusion-body recovery in bioprocess trains
  • De-sanding and de-watering of produced water in upstream oil & gas

The dimensionless "RCF" (Relative Centrifugal Force) quantifies how much stronger the radial acceleration is compared with gravity; matching an RCF specification to a physical bowl geometry therefore fixes the required shaft speed. The calculation below converts a target RCF into the corresponding rotational speed in revolutions per minute (rpm) for any given bowl diameter.

🚀 Skip the Manual Math!

Use our interactive Centrifugal Acceleration (G-Force) Calculation to compute these parameters instantly online, or download the offline Excel calculation.

Launch Calculator →

Methodology & Formulas

  1. Convert practical geometry to SI units
    Bowl diameter D is usually quoted in centimetres; the effective radius is \[ r = \frac{D}{200} \quad [\text{m}] \]
  2. Relate RCF to angular velocity
    By definition \[ \text{RCF} = \frac{a_{\text{centrifugal}}}{g} = \frac{r\,\omega^{2}}{g} \] Solving for angular velocity gives \[ \omega = \sqrt{\frac{\text{RCF} \cdot g}{r}} \quad [\text{rad s}^{-1}] \]
  3. Convert angular velocity to rpm
    \[ N = \frac{60\,\omega}{2\pi} \quad [\text{rpm}] \]
Variable Description SI Unit
RCF Relative Centrifugal Force (dimensionless)
g Gravitational acceleration m s-2
r Bowl inside radius m
\(\omega\) Angular velocity rad s-1
N Rotational speed rpm

The Python snippet implements the above sequence and includes a guard against non-positive radius or RCF values. Replace the hard-coded inputs with live data to obtain the required shaft speed for any centrifuge geometry and target RCF.