📐 Math

Centrifugal Force Calculator

Solve Centrifugal Force Calculator problems with step-by-step solutions

⚡ Free to use 📱 Mobile friendly 🕒 Updated: May 29, 2026
🧮 Centrifugal Force Calculator
rad/s
Centrifugal Force
F = m·v² / r
function calculate() { const mass = parseFloat(document.getElementById('i1').value); const radius = parseFloat(document.getElementById('i2').value); const vel = parseFloat(document.getElementById('i3').value); const omega = parseFloat(document.getElementById('i4').value); const massUnit = document.getElementById('i1-unit').value; const radiusUnit = document.getElementById('i2-unit').value; const velUnit = document.getElementById('i3-unit').value; if (isNaN(mass) || isNaN(radius) || (isNaN(vel) && isNaN(omega))) { showResult('—', 'Invalid input', []); document.getElementById('breakdown-wrap').innerHTML = '
Please enter mass, radius, and either velocity or angular velocity.
'; return; } // Convert mass to kg let massKg = mass; if (massUnit === 'g') massKg = mass / 1000; else if (massUnit === 'lb') massKg = mass * 0.453592; // Convert radius to m let radiusM = radius; if (radiusUnit === 'cm') radiusM = radius / 100; else if (radiusUnit === 'ft') radiusM = radius * 0.3048; // Determine velocity (m/s) let velMs = vel; if (!isNaN(vel) && velUnit === 'km/h') velMs = vel / 3.6; else if (!isNaN(vel) && velUnit === 'ft/s') velMs = vel * 0.3048; // If velocity not given, compute from omega if (isNaN(velMs) && !isNaN(omega)) { velMs = omega * radiusM; } if (isNaN(velMs) || radiusM === 0) { showResult('—', 'Invalid', []); document.getElementById('breakdown-wrap').innerHTML = '
Radius must be > 0 and velocity must be valid.
'; return; } // Centrifugal force F = m * v^2 / r const forceN = massKg * (velMs * velMs) / radiusM; // Additional calculations const acceleration = (velMs * velMs) / radiusM; const angularVel = velMs / radiusM; const period = (2 * Math.PI) / angularVel; const rpm = (60 * angularVel) / (2 * Math.PI); // Color coding let forceColor = 'green'; const forceAbs = Math.abs(forceN); if (forceAbs > 10000) forceColor = 'red'; else if (forceAbs > 1000) forceColor = 'yellow'; let accelColor = 'green'; if (acceleration > 500) accelColor = 'red'; else if (acceleration > 100) accelColor = 'yellow'; let rpmColor = 'green'; if (rpm > 10000) rpmColor = 'red'; else if (rpm > 1000) rpmColor = 'yellow'; const forceDisplay = forceN.toLocaleString(undefined, { maximumFractionDigits: 2 }) + ' N'; const accelDisplay = acceleration.toLocaleString(undefined, { maximumFractionDigits: 2 }) + ' m/s²'; const velDisplay = velMs.toLocaleString(undefined, { maximumFractionDigits: 2 }) + ' m/s'; const rpmDisplay = rpm.toLocaleString(undefined, { maximumFractionDigits: 1 }) + ' RPM'; const periodDisplay = period.toLocaleString(undefined, { maximumFractionDigits: 3 }) + ' s'; const massDisplay = massKg.toLocaleString(undefined, { maximumFractionDigits: 3 }) + ' kg'; const radiusDisplay = radiusM.toLocaleString(undefined, { maximumFractionDigits: 3 }) + ' m'; showResult(forceDisplay, 'Centrifugal Force', [ { label: 'Mass (converted)', value: massDisplay, cls: '' }, { label: 'Radius (converted)', value: radiusDisplay, cls: '' }, { label: 'Tangential Velocity', value: velDisplay, cls: '' }, { label: 'Centripetal Acceleration', value: accelDisplay, cls: accelColor }, { label: 'Angular Velocity', value: angularVel.toFixed(3) + ' rad/s', cls: '' }, { label: 'Rotational Period', value: periodDisplay, cls: '' }, { label: 'Rotational Speed', value: rpmDisplay, cls: rpmColor } ]); // Breakdown table let breakdownHTML = `
StepFormulaCalculationResult
1. Convert unitsm → kg, r → m, v → m/s${mass} ${massUnit} → ${massDisplay}, ${radius} ${radiusUnit} → ${radiusDisplay}
2. Centripetal accela = v² / r(${velMs.toFixed(3)})² / ${radiusM.toFixed(3)}${accelDisplay}
3. Centrifugal forceF = m · a${massKg.toFixed(3)} × ${acceleration.toFixed(3)}${forceDisplay}
4. Angular velocityω = v / r${velMs.toFixed(
📊 Centrifugal Force at Different Radii for a 2 kg Mass at 10 m/s

What is Centrifugal Force Calculator?

A Centrifugal Force Calculator is a specialized digital tool that computes the outward force experienced by an object moving in a circular path. This force, often described as an apparent outward push, is critical in physics and engineering because it dictates how much tension, stress, or balancing force is required to keep an object rotating without flying off its trajectory. From designing a high-speed centrifuge in a lab to calculating the forces on a car tire during a sharp turn, this calculator provides instant, accurate results that manual math cannot match.

Engineers, physicists, students, and hobbyists use this calculator to solve problems related to rotational dynamics. For example, a mechanical engineer designing a rotating shaft needs to know the centrifugal force to select appropriate bearings, while a physics student uses it to verify homework problems involving circular motion. The tool eliminates guesswork, saving hours of repetitive calculation and reducing the risk of costly design errors.

Our free online Centrifugal Force Calculator is built for speed and simplicity. You simply input the mass of the object, its rotational speed, and the radius of the circular path, and the tool instantly outputs the force in Newtons, along with a step-by-step breakdown of the math used to reach that answer.

How to Use This Centrifugal Force Calculator

Using our Centrifugal Force Calculator is straightforward, whether you are a seasoned engineer or a student tackling circular motion for the first time. The interface is designed to minimize confusion, guiding you through each required input field with clear labels. Follow these five simple steps to get your result in seconds.

  1. Select Your Unit System: Before entering any numbers, choose between Metric (kilograms, meters, seconds) or Imperial (pounds, feet, seconds) units. This setting ensures all subsequent inputs are interpreted correctly, preventing unit conversion errors that could ruin your calculation.
  2. Enter the Object's Mass (m): Input the mass of the rotating object. In Metric, use kilograms (kg). In Imperial, use pounds-mass (lb). This value directly influences the force—doubling the mass doubles the centrifugal force, assuming all other factors remain constant.
  3. Input the Rotational Speed: You have two options here: angular velocity (ω) in radians per second or revolutions per minute (RPM). If you know the speed in RPM (common for motors and wheels), the calculator will automatically convert it to radians per second for the formula. For example, a wheel spinning at 1200 RPM would be entered as "1200" in the RPM field.
  4. Provide the Radius (r): Enter the distance from the center of rotation to the object's center of mass. This is the radius of the circular path. In Metric, use meters (m). In Imperial, use feet (ft). A larger radius increases the force linearly—a radius of 2 meters produces twice the force of a 1-meter radius at the same speed.
  5. Click "Calculate": Once all fields are filled, press the calculate button. The tool will instantly display the centrifugal force in Newtons (or pound-force for Imperial). Below the result, you will see a detailed step-by-step breakdown showing the formula, the numbers plugged in, and the final arithmetic. You can also reset the fields to start a new calculation.

For best results, ensure your inputs are realistic. For instance, a small rock on a string might have a mass of 0.1 kg and a radius of 0.5 m, while a car tire on a test rig might have a mass of 20 kg and a radius of 0.3 m. The calculator handles both extremes equally well.

Formula and Calculation Method

The Centrifugal Force Calculator uses the standard formula derived from Newtonian mechanics for uniform circular motion. This formula is universally accepted in physics and engineering because it accurately describes the relationship between mass, speed, radius, and the resulting outward force. Understanding this formula is key to interpreting your results and applying them to real-world problems.

Formula
F = m × ω² × r

Where F is the centrifugal force in Newtons (N), m is the mass in kilograms (kg), ω (omega) is the angular velocity in radians per second (rad/s), and r is the radius in meters (m). If you input speed in RPM, the calculator first converts it using the relation: ω = (RPM × 2π) / 60.

Understanding the Variables

Mass (m): This is the inertia of the object resisting the change in direction. A heavier object requires more force to keep it on the circular path. For example, a 10 kg mass will experience double the centrifugal force of a 5 kg mass at the same speed and radius.

Angular Velocity (ω): This measures how fast the object rotates, specifically the angle swept per unit time. Because the formula squares this value, even small increases in speed cause large increases in force. Doubling the angular velocity quadruples the centrifugal force. This is why high-speed rotors, like those in ultracentrifuges, require extremely strong materials.

Radius (r): The distance from the axis of rotation to the object. A larger radius means the object travels a longer path per revolution, requiring more centripetal force (and thus feeling more centrifugal force) to maintain its circular motion. This is why a person standing at the edge of a spinning merry-go-round feels a stronger push than someone near the center.

Step-by-Step Calculation

Here is how the calculator performs the math, step by step. First, it checks your unit selection and converts any non-standard inputs. If you entered RPM, it converts to rad/s by multiplying RPM by 2π (approximately 6.2832) and then dividing by 60. Next, it squares the angular velocity (ω²). Then, it multiplies this squared value by the mass (m). Finally, it multiplies that product by the radius (r). The result is the centrifugal force in Newtons. For Imperial units, the same logic applies but uses slugs for mass and feet for radius, outputting pound-force. This linear sequence ensures transparency—you can verify every step against the displayed result.

Example Calculation

Let us walk through a realistic scenario that demonstrates exactly how the Centrifugal Force Calculator works. This example is drawn from a common laboratory experiment: spinning a test tube in a centrifuge.

Example Scenario: A laboratory technician spins a test tube containing a liquid sample in a centrifuge. The test tube and its contents have a combined mass of 0.05 kg. The radius from the center of the centrifuge rotor to the bottom of the test tube is 0.15 meters. The centrifuge operates at 3000 RPM. What is the centrifugal force acting on the test tube?

Step 1: Convert RPM to Angular Velocity (ω). The calculator takes the RPM value of 3000 and applies the conversion: ω = (3000 × 2π) / 60. 2π ≈ 6.2832, so 3000 × 6.2832 = 18,849.6. Divide by 60 gives ω = 314.16 rad/s. This is the speed at which the test tube rotates.

Step 2: Square the Angular Velocity. ω² = 314.16² = 98,696.5 rad²/s². This squared term is why high-speed rotations generate enormous forces.

Step 3: Multiply by Mass. m × ω² = 0.05 kg × 98,696.5 = 4,934.825 kg·rad²/s².

Step 4: Multiply by Radius. Finally, multiply by r = 0.15 m: F = 4,934.825 × 0.15 = 740.22 Newtons.

Result: The centrifugal force is approximately 740.2 N. In plain English, this means the test tube is experiencing an outward force equivalent to the weight of about 75.5 kg (740.2 N / 9.81 m/s²) pressing against its bottom. This force is what separates the components of the liquid sample based on density.

Another Example

Consider a car tire on a dynamic balancing machine. The tire has a mass of 18 kg, and the imbalance is located at a radius of 0.3 meters from the center. The machine spins the tire at 600 RPM. Using the calculator: ω = (600 × 6.2832) / 60 = 62.832 rad/s. ω² = 3,947.8. m × ω² = 18 × 3,947.8 = 71,060.4. Multiply by radius (0.3 m) gives F = 21,318.1 N. This is a massive force—over 2,170 kg of equivalent weight—which explains why even a small imbalance at high speed can cause violent shaking. The calculator shows exactly why balancing is critical for vehicle safety and comfort.

Benefits of Using Centrifugal Force Calculator

Our Centrifugal Force Calculator offers substantial advantages over manual calculations or generic spreadsheet formulas. It is designed to save time, reduce errors, and provide clear insights into the physics of rotating systems. Here are the five key benefits that make this tool indispensable for students, engineers, and hobbyists alike.

  • Instantaneous Results with Zero Math Errors: Manual calculation of centrifugal force involves squaring angular velocity, unit conversions, and multiple multiplication steps—each a potential point of failure. Our calculator performs all arithmetic instantly and flawlessly, eliminating the risk of a misplaced decimal or forgotten conversion. For critical applications like rotor design or material stress analysis, this accuracy is non-negotiable.
  • Automatic Unit Conversion Between RPM and rad/s: Most real-world machinery specifications list rotational speed in RPM, but the formula requires rad/s. Our calculator handles this conversion automatically behind the scenes. You do not need to remember the conversion factor (2π/60) or risk using the wrong one. This feature alone saves significant time and prevents the most common source of calculation errors in circular motion problems.
  • Step-by-Step Solution Display for Learning: Unlike a simple number generator, our tool shows every step of the calculation. This transparency helps students understand the relationship between inputs and output, reinforcing the physics concepts. For professionals, the step-by-step display serves as a verification tool, allowing you to quickly check intermediate values against your own expectations or design tolerances.
  • Handles Both Metric and Imperial Units Seamlessly: Whether you are working in a laboratory using kilograms and meters or a workshop using pounds and feet, the calculator adapts. This dual-system support ensures that the tool is usable across different industries and educational systems without requiring manual unit conversion, which is another major source of calculation errors.
  • Free and Accessible from Any Device: Our calculator is completely free to use, with no hidden fees, subscriptions, or account creation required. It runs on any modern web browser, including mobile phones and tablets. This accessibility means you can perform a quick calculation on a factory floor, in a classroom, or at home without needing specialized software or a high-end computer.

Tips and Tricks for Best Results

To get the most accurate and useful results from your Centrifugal Force Calculator, it helps to understand a few nuances of rotational dynamics. These expert tips will help you avoid common pitfalls and interpret your results correctly, whether you are designing a machine or solving a homework problem.

Pro Tips

  • Always measure the radius from the exact center of rotation to the object's center of mass, not the edge of the object. For irregular shapes, approximate the center of mass location. A 1 cm error in radius at high RPM can produce a significant force error.
  • When entering RPM, ensure you are using the rotational speed of the object itself, not the speed of a motor driving it if there are gears or belts changing the speed. Use a tachometer or spec sheet to verify the actual rotation rate at the point of interest.
  • Double-check your mass input. In Imperial units, remember to use pounds-mass (lb) for the mass input, not pounds-force (lbf). The calculator expects mass, not weight. If you only know the weight in pounds-force, divide by 32.174 ft/s² (standard gravity) to get mass in slugs, or use the Metric setting for simplicity.
  • For safety-critical applications (e.g., flywheel design, centrifuge rotors), always apply a safety factor to the calculated force. The formula assumes ideal conditions, but real materials have imperfections. A safety factor of 2 to 5 is common depending on the industry and risk level.

Common Mistakes to Avoid

  • Confusing Centrifugal Force with Centripetal Force: Many users mistakenly think the calculator outputs the inward force (centripetal) rather than the outward apparent force (centrifugal). The magnitude is the same, but the direction is opposite. Our calculator outputs the outward force magnitude. In engineering analysis, you will often use this value to design the restraining structure (e.g., a tether or bearing) that provides the centripetal force.
  • Using Linear Velocity Instead of Angular Velocity: Some users attempt to enter linear speed (m/s) into the RPM field. This is incorrect. The formula requires angular velocity. If you only know the linear speed (v) of the object along its circular path, you must first calculate angular velocity using ω = v / r, then use that value in the calculator (or convert to RPM using RPM = (ω × 60) / (2π)).
  • Ignoring the Effect of Radius on High-Speed Calculations: Because the force is proportional to the square of the angular velocity and linearly proportional to radius, a small increase in speed at a large radius can produce dangerously high forces. For example, a 10% increase in RPM at a 2-meter radius can increase force by over 20%. Always double-check your inputs if the calculated force seems unexpectedly high—it might be correct, and your design needs reinforcement.
  • Forgetting to Convert Units Consistently: If you mix units—for example, entering mass in grams and radius in meters—the calculator will produce a wrong result unless it specifically handles that conversion. Always use the unit system you selected at the start. If you need to use grams, convert to kilograms (divide by 1000) before entering the mass in the Metric mode.

Conclusion

The Centrifugal Force Calculator is an essential tool for anyone working with rotating systems, from physics students learning about circular motion to professional engineers designing centrifuges, tires, or amusement park rides. By automating the complex math involving mass, angular velocity, and radius, it delivers accurate, instant results while also providing a clear step-by-step breakdown that reinforces understanding. The tool's ability to handle both RPM and rad/s, along with Metric and Imperial units, makes it universally applicable across different fields and educational levels.

We encourage you to use our free Centrifugal Force Calculator for your next project or study session. Whether you are verifying a homework answer, checking a design parameter, or simply curious about the forces at play in a spinning object, this calculator provides the precision and clarity you need. Bookmark it for quick access, and share it with colleagues or classmates who also work with rotational dynamics. Accurate calculations are just a few clicks away.

Frequently Asked Questions

A Centrifugal Force Calculator is a digital tool that computes the outward apparent force acting on an object moving in a circular path. It specifically calculates the magnitude of centrifugal force based on three inputs: the mass of the object (in kilograms), its tangential velocity (in meters per second), and the radius of the circular path (in meters). The result is given in Newtons, representing the force pushing the object outward from the center of rotation.

The calculator uses the formula F = (m * v²) / r, where F is centrifugal force in Newtons, m is mass in kilograms, v is tangential velocity in meters per second, and r is the radius in meters. For example, if you have a 2 kg object moving at 5 m/s in a circle with a 1 meter radius, the calculation would be (2 * 5²) / 1 = 50 Newtons. This formula is derived directly from Newtonian mechanics for uniform circular motion.

In household appliances like a washing machine during spin cycle (1200 RPM, 0.3m radius, 5kg wet clothes), centrifugal force typically ranges from 2,000 to 8,000 Newtons. For laboratory centrifuges processing 50ml tubes at 3,000 RPM with a 0.15m radius, forces range from 500 to 1,500 Newtons. Industrial applications can reach tens of thousands of Newtons, but anything exceeding 10,000 Newtons in small-scale equipment usually indicates dangerous overspeed conditions.

A standard Centrifugal Force Calculator is mathematically exact to the formula, providing accuracy to 6-8 decimal places in ideal theoretical conditions. However, real-world accuracy is limited by input precision: a 1% error in velocity measurement causes a 2% error in force due to the squared term. In practical lab settings with calibrated equipment, calculated values typically match measured forces within ±2-5%, assuming no friction or air resistance losses.

The primary limitation is that the calculator assumes ideal circular motion with constant velocity and no external forces like gravity or friction. It cannot account for non-uniform motion, elliptical paths, or objects that change mass during rotation. Additionally, the calculator treats centrifugal force as a real force in the rotating frame, but in an inertial frame it's actually the centripetal force that is real—this distinction is critical for advanced physics applications but often overlooked by casual users.

A basic online calculator provides the static centrifugal force value instantly using the idealized formula, while professional tools like ANSYS or MATLAB simulations model dynamic effects such as vibration, material stress distribution, and thermal expansion. For example, a simple calculator might show 500N for a spinning rotor, but FEA software would reveal stress concentrations at bolt holes that could reach 800N equivalent stress. For quick estimates and educational purposes, the simple calculator is sufficient, but safety-critical designs always require professional simulation.

This is a common misconception. While it is true that in an inertial reference frame centrifugal force is classified as a fictitious or pseudo-force, the calculator is not flawed—it correctly computes the apparent outward force experienced by an observer in the rotating reference frame. For practical engineering, such as designing a centrifuge rotor or a car's wheel balance, the centrifugal force value is essential and accurately predicts real-world stresses and failures. The calculator simply applies the correct physics for the rotating frame, which is how most practical applications are analyzed.

A practical application is in balancing industrial washing machine drums. A technician measures a 10 kg unbalanced load at a 0.4m radius spinning at 800 RPM (83.8 m/s tangential velocity). Using the calculator, they find F = (10 * 83.8²) / 0.4 = 175,561 Newtons—far exceeding the machine's 50,000N bearing limit. This calculation immediately warns that the load must be redistributed or the spin speed reduced to 400 RPM (21,000N) to avoid catastrophic bearing failure and structural damage.

Last updated: May 29, 2026 · Bookmark this page for quick access

🔗 You May Also Like