Contact Sensor#

A ContactSensor aggregates contacts on one or more rigid bodies into batched force measurements. The sensor scope is defined by prim_path: each matched body becomes one sensor body in every environment.

A contact sensor reporting total and filtered contact forces

Net and filtered forces#

net_normal_forces_w is the aggregate normal force acting on each sensor body in the world frame. It includes contact with every body in the scene.

When supported by the backend and enabled with track_friction_forces, net_friction_forces_w reports the aggregate friction force. The total force is therefore

\[\boldsymbol{f}_{total} = \boldsymbol{f}_{normal} + \boldsymbol{f}_{friction}.\]

On Newton, net_forces_w reports this total. PhysX and OvPhysX cannot compute the aggregate friction component, so net_forces_w returns net_normal_forces_w with a warning. Use the explicit normal and friction properties when the split matters.

Set filter_prim_paths_expr when forces from specific collision partners are also needed. normal_force_matrix_w and friction_force_matrix_w retain one entry per configured filter expression.

Summing a force matrix over its filter dimension reconstructs the corresponding aggregate force only when the filters cover every contacting object.

Body-level filtering supports a many-to-one relationship: prim_path must resolve to one sensor body per environment when filters are configured. Define one sensor per source body when separate filtered forces are required, for example one sensor for each foot. Newton additionally supports shape-level sensing and filtering through sensor_shape_prim_expr and filter_shape_prim_expr.

Configure the sensor#

Add the configuration to an InteractiveSceneCfg:

from isaaclab.scene import InteractiveSceneCfg
from isaaclab.sensors import ContactSensorCfg


class MySceneCfg(InteractiveSceneCfg):
    left_foot_contact = ContactSensorCfg(
        prim_path="{ENV_REGEX_NS}/Robot/LF_FOOT",
        update_period=0.0,
        history_length=6,
        filter_prim_paths_expr=["{ENV_REGEX_NS}/Object"],
        track_air_time=True,
    )

update_period=0.0 samples every physics step. history_length stores earlier force samples. Enable optional buffers only when they are needed. Their backend support differs:

  • Isaac Sim PhysX supports pose, filtered contact-point, and filtered friction-force tracking, but not aggregate friction-force tracking.

  • OvPhysX supports pose tracking for a single sensor body per environment, but not contact-point or friction-force tracking.

  • Newton supports filtered contact-point and aggregate or filtered friction-force tracking, but not pose tracking.

Filtered contact points and friction-force matrices require filters. Contact-rich Isaac Sim PhysX scenes may require a larger max_contact_data_count_per_prim.

Read the data#

For E environments, S sensor bodies, F filter expressions, and history length H, the principal Torch views have these contracts:

Buffer

Shape

Meaning

net_normal_forces_w.torch

(E, S, 3)

Net normal contact force [N] in world frame

net_friction_forces_w.torch

(E, S, 3)

Net friction force [N] in world frame; Newton only

net_forces_w.torch

(E, S, 3)

Total force [N] on Newton; normal force with a warning on PhysX and OvPhysX

normal_force_matrix_w.torch

(E, S, F, 3)

Normal force [N] from each filtered partner

friction_force_matrix_w.torch

(E, S, F, 3)

Friction force [N] from each filtered partner; Isaac Sim PhysX and Newton

contact_pos_w.torch

(E, S, F, 3)

Average filtered contact position [m] in world frame; unavailable on OvPhysX

current_air_time.torch / current_contact_time.torch

(E, S)

Current mode duration [s]

Supported optional buffers are None unless their matching tracking option or filter is enabled. Normal and friction force histories follow the same shapes with an added H dimension. OvPhysX rejects unsupported tracking options during initialization. Reading aggregate friction on PhysX or OvPhysX raises NotImplementedError. The compatibility alias friction_forces_w returns the aggregate on Newton; on PhysX it returns friction_force_matrix_w with a warning. Reading pose data on Newton raises NotImplementedError.

contact = scene["left_foot_contact"]
net_normal_force = contact.data.net_normal_forces_w.torch
object_normal_force = contact.data.normal_force_matrix_w.torch

Use debug_vis=True while validating body expressions and filter partners. The visualization shows sensor contacts but does not change the reported data.

Contact sensor debug visualization

A complete runnable example is available in scripts/demos/sensors/contact_sensor.py:

uv run --extra isaacsim python scripts/demos/sensors/contact_sensor.py