Inferensys

Glossary

Coefficient of Restitution (COR)

The Coefficient of Restitution (COR) is a dimensionless scalar value between 0 and 1 that characterizes the elasticity of a collision, defined as the ratio of the relative separation velocity to the relative approach velocity of two bodies after and before impact.
Stylish WeWork-like workspace with hot desks and document wall, professional searching through enterprise knowledge base on a mounted ultrawide display, warm industrial pendants overhead.
PHYSICS SIMULATION

What is Coefficient of Restitution (COR)?

A fundamental scalar parameter in rigid body dynamics that quantifies the elasticity of a binary collision.

The Coefficient of Restitution (COR) is a dimensionless scalar value between 0 and 1 that characterizes the elasticity of a collision, defined as the negative ratio of the relative separation velocity to the relative approach velocity of two bodies after and before impact, respectively. A value of 1 represents a perfectly elastic collision with no kinetic energy loss, while 0 represents a perfectly inelastic collision where the bodies coalesce. In physics-based simulation for robotics, COR is a critical parameter for modeling realistic post-impact behavior of objects and end-effectors.

Accurate COR modeling is essential for sim-to-real transfer, as it directly influences the bounce, roll, and final resting state of manipulated objects. In simulation engines, COR is often applied at the contact point during the collision resolution step within the constraint solver. For complex materials, it can be defined per collision pair. Domain randomization of COR during training helps create robust policies that can handle real-world variability in material properties, bridging the reality gap for tasks like grasping, pushing, or assembly.

COEFFICIENT OF RESTITUTION

Key Properties and Characteristics

The Coefficient of Restitution (COR) is a fundamental scalar parameter in collision physics. Its value, bounded between 0 and 1, dictates the post-impact energy distribution and is critical for accurate sim-to-real transfer.

01

Definition and Formula

The Coefficient of Restitution (COR) is formally defined as the negative ratio of the relative separation velocity to the relative approach velocity of two bodies along the line of impact. For a collision between bodies A and B:

COR = - (v_A2 - v_B2) / (v_A1 - v_B1)

Where v_A1, v_B1 are pre-impact velocities and v_A2, v_B2 are post-impact velocities. This dimensionless value quantifies the elasticity of the collision.

02

Interpretation of Values

The COR's scalar range has direct physical meaning:

  • COR = 1: A perfectly elastic collision. Kinetic energy is conserved; bodies rebound with reversed relative velocity. Idealized case (e.g., superball).
  • COR = 0: A perfectly inelastic collision. Maximum kinetic energy loss; bodies stick together post-impact (e.g., clay).
  • 0 < COR < 1: A partially elastic collision. Most real-world impacts (e.g., baseball on bat, robot gripper on object). Energy is dissipated as heat, sound, or deformation.
03

Dependence on Material and Geometry

COR is not a pure material property. It depends on:

  • Material Pair: The combination of the two colliding materials (steel-on-steel vs. rubber-on-concrete).
  • Impact Velocity: COR often decreases with increasing impact speed due to greater plastic deformation.
  • Geometry & Temperature: Shape, surface roughness, and temperature affect the effective COR. In simulation, a constant COR is often used, but high-fidelity models may implement velocity-dependent COR tables for greater accuracy.
04

Role in Sim-to-Real Transfer

Accurate COR modeling is vital for sim-to-real transfer in robotics. An incorrect COR in simulation leads to:

  • Divergent Dynamics: A simulated robot will learn policies based on incorrect rebound behavior.
  • Reality Gap: Policies fail on physical hardware where real-world damping and material properties differ. Domain randomization of COR during training is a common technique to build robust policies that can handle a range of real-world physical interactions.
05

Relationship to Energy Loss

The COR directly determines the kinetic energy lost in a collision. For a central impact, the fractional kinetic energy loss is:

Energy Loss = 1 - COR²

This quadratic relationship shows that a small decrease in COR causes a significant increase in energy dissipation. A COR of 0.8 results in a 36% energy loss. This is crucial for simulating systems where damping and friction (Coulomb friction) are coupled with collision response.

06

Integration in Physics Engines

In physics engines like MuJoCo, Bullet, or Isaac Sim, the COR is a key parameter in the contact model. It is typically applied in the constraint solver or impulse-based dynamics resolution step:

  • The solver calculates a normal impulse to prevent penetration.
  • The COR scales this impulse to achieve the correct post-impact relative velocity.
  • It works in conjunction with the friction cone model for tangential forces. Incorrect solver ordering between friction and restitution can cause visual artifacts like jitter.
PHYSICS ENGINE FUNDAMENTAL

How COR Works in Physics Simulation

The Coefficient of Restitution (COR) is a core parameter in physics engines that dictates the energy conservation and realism of simulated collisions.

The Coefficient of Restitution (COR) is a dimensionless scalar value between 0 and 1 that defines the elasticity of a collision between two bodies. It is calculated as the negative ratio of the final relative separation velocity to the initial relative approach velocity along the contact normal. A COR of 1 represents a perfectly elastic collision with kinetic energy conserved, while a COR of 0 represents a perfectly inelastic collision where the bodies stick together post-impact. This parameter is critical for simulating realistic bounce, energy dissipation, and material response in rigid body dynamics.

Within a constraint solver, the COR is used to compute the magnitude of the restitution impulse applied during the collision resolution phase. This impulse scales the relative velocity reversal to model energy loss. For accurate sim-to-real transfer, the COR must be carefully identified and tuned from real-world collision data, as an incorrect value can cause unnatural bouncing or excessive damping. It is often paired with Coulomb friction models to fully define a contact's material properties, directly influencing the stability and physical plausibility of the simulated interaction.

PHYSICS SIMULATION COMPARISON

COR vs. Related Contact Parameters

This table compares the Coefficient of Restitution (COR) to other key parameters that define the physical behavior of a contact or collision between rigid bodies in a simulation engine.

ParameterCoefficient of Restitution (COR)Friction Coefficient (μ)Contact Stiffness (k)Contact Damping (b)

Definition

Ratio of separation to approach velocity post-collision.

Ratio of tangential friction force to normal force.

Spring constant resisting penetration (N/m).

Damping constant dissipating contact energy (N·s/m).

Primary Role

Models energy loss and rebound elasticity.

Models resistance to sliding/rolling motion.

Models material compliance; prevents infinite penetration.

Models viscoelastic damping; stabilizes numerical integration.

Typical Value Range

0.0 (perfectly inelastic) to 1.0 (perfectly elastic).

0.0 (frictionless) to >1.0 (high friction). Often 0.2-0.8.

10^3 to 10^9 N/m, based on material and simulation scale.

0.1 to 10^4 N·s/m, tuned for numerical stability.

Dimensionality

Scalar (1D).

Scalar (1D) or anisotropic tensor for directionality.

Scalar (1D) or full 3x3 matrix for anisotropic materials.

Scalar (1D).

Governs

Post-collision velocities along the contact normal.

Tangential forces parallel to the contact surface.

Magnitude of the normal penalty force due to penetration.

Rate of energy dissipation in the normal contact direction.

Simulation Method

Applied as a velocity update in impulse-based solvers.

Modeled via Coulomb's law in constraint or penalty solvers.

Core parameter in penalty/spring-damper contact models.

Core parameter in penalty/spring-damper contact models.

Interaction with COR

N/A - This is the parameter.

Independent; governs tangential behavior orthogonal to COR's normal axis.

High stiffness can cause numerical instability if COR is near 1.0.

Works with COR; damping directly removes energy, lowering effective rebound.

Real-World Calibration

Measured via drop tests or high-speed collision analysis.

Measured via incline plane or tribometer tests.

Derived from material Young's modulus and geometry.

Often tuned empirically for stable simulation rather than from direct measurement.

COEFFICIENT OF RESTITUTION

Frequently Asked Questions

The Coefficient of Restitution (COR) is a fundamental scalar value in physics simulation that quantifies the elasticity of a collision between two bodies. These questions address its definition, calculation, role in simulation, and practical implications for robotics and engineering.

The Coefficient of Restitution (COR) is a dimensionless scalar value between 0 and 1 that characterizes the elasticity of a collision, defined as the ratio of the relative separation velocity to the relative approach velocity of two bodies after and before impact, respectively. A COR of 1 represents a perfectly elastic collision with no kinetic energy loss, while a COR of 0 represents a perfectly inelastic collision where the bodies stick together post-impact. This value is material-dependent and is critical for predicting post-collision dynamics in physics engines and rigid body simulations.

Prasad Kumkar

About the author

Prasad Kumkar

CEO & MD, Inference Systems

Prasad Kumkar is the CEO & MD of Inference Systems and writes about AI systems architecture, LLM infrastructure, model serving, evaluation, and production deployment. Over 5+ years, he has worked across computer vision models, L5 autonomous vehicle systems, and LLM research, with a focus on taking complex AI ideas into real-world engineering systems.

His work and writing cover AI systems, large language models, AI agents, multimodal systems, autonomous systems, inference optimization, RAG, evaluation, and production AI engineering.