unilab.base.entity.Entity¶
- class unilab.base.entity.Entity[source]¶
Bases:
objectLogical entity with cached local-to-backend mappings.
- Parameters:
name (
str)cfg (
EntityCfg)backend (
SimBackend)reset_state (
ResetStateTransaction|None)state_read_cache (
_EntityStateReadCache|None)
Methods
__init__(name, cfg, backend[, ...])apply_body_wrench_to_sim(forces, torques, ...)Dispatch world-frame body forces/torques through the formal interval plan.
Dispatch a cached root linear-velocity delta through the formal interval plan.
apply_root_velocity_delta_to_sim(...[, ...])Dispatch world-frame root linear/angular velocity deltas in one interval plan.
bind_actuator_gain_write([actuator_ids])Bind selected actuator columns and immutable gain defaults on the cold path.
bind_body_inertia_write([body_ids])Bind entity-local body columns and caller-compiled default inertias.
bind_body_ipos_write([body_ids])Bind entity-local body columns and immutable inertial positions.
bind_body_mass_write([body_ids])Bind entity-local body columns and immutable default masses.
bind_body_state_copy([body_ids])Bind entity-local body columns to the backend copy contract on the cold path.
bind_body_wrench([body_ids])Resolve entity-local and backend body columns for interval wrench writes.
bind_geom_friction_write([geom_ids])Bind entity-local geoms and immutable default friction vectors.
bind_geom_size_write([geom_ids])Bind entity-local geom_size columns and immutable defaults.
bind_geom_solimp_write([geom_ids])Bind entity-local geom_solimp columns and immutable defaults.
bind_geom_solref_write([geom_ids])Bind entity-local geom_solref columns and immutable defaults.
bind_joint_armature_write([joint_ids])Bind entity-local joints and immutable default DOF armatures.
bind_joint_damping_write([joint_ids])Bind entity-local joint_damping columns and immutable defaults.
bind_joint_frictionloss_write([joint_ids])Bind entity-local joint_frictionloss columns and immutable defaults.
bind_mocap_pose_write(body_name, *, term_name)Bind an explicitly named mocap body, independently of the floating root.
bind_root_angular_velocity_delta(*, term_name)Validate the interval root angular-velocity capability on the cold path.
bind_root_linear_velocity_delta(*, term_name)Validate the interval root-velocity capability on the cold path.
find_actuators(keys[, preserve_order])find_bodies(keys[, preserve_order])find_cameras(keys[, preserve_order])find_geoms(keys[, preserve_order])find_joints(keys[, preserve_order])Resolve actuator-target joint patterns in natural entity joint order.
find_lights(keys[, preserve_order])find_materials(keys[, preserve_order])find_pairs(keys[, preserve_order])find_sites(keys[, preserve_order])find_tendons(keys[, preserve_order])find_textures(keys[, preserve_order])Read full-batch mocap poses, including pending reset writes.
read_reset_root_pose([env_ids])Read the world position and wxyz root orientation staged in the reset.
set_joint_effort_target(target[, joint_ids, ...])Map joint effort (torque) targets to the actuator control buffer.
set_joint_position_target(target[, ...])Map entity-local joint targets to the env-owned actuator control buffer.
set_joint_velocity_target(target[, ...])Map joint velocity targets to the entity actuator control buffer.
write_actuator_gains_to_sim(kp, kd[, ...])Stage entity-local actuator gains in the active reset transaction.
write_body_inertia_to_sim(values[, ...])Stage selected entity body principal inertias in the reset transaction.
write_body_ipos_to_sim(values[, body_ids, ...])Stage selected entity body inertial positions in the reset transaction.
write_body_mass_to_sim(values[, body_ids, ...])Stage selected entity body masses in the active reset transaction.
write_geom_friction_to_sim(values[, ...])Stage selected entity geom friction in the active reset transaction.
write_geom_size_to_sim(values[, geom_ids, ...])Stage geom_size values through the reset transaction.
write_geom_solimp_to_sim(values[, geom_ids, ...])Stage geom_solimp values through the reset transaction.
write_geom_solref_to_sim(values[, geom_ids, ...])Stage geom_solref values through the reset transaction.
write_joint_armature_to_sim(values[, ...])Stage selected entity joint armatures in the active reset transaction.
write_joint_damping_to_sim(values[, ...])Stage joint_damping values through the reset transaction.
write_joint_frictionloss_to_sim(values[, ...])Stage joint_frictionloss values through the reset transaction.
write_joint_state_to_sim(position, velocity)Stage community-style joint state writes in the active reset transaction.
write_mocap_pose_to_sim(poses[, env_ids, ...])Stage poses to commit after the ordinary reset state upload.
write_root_link_pose_to_sim(root_pose[, env_ids])Stage world position and wxyz root orientation during reset.
write_root_link_velocity_to_sim(root_velocity)Stage world linear/angular root velocity during reset.
write_root_state_to_sim(root_state[, env_ids])Stage a 13-D world-frame root state in the active reset transaction.
Attributes
Motion-dataset body columns for the declared entity body order.
- __init__(name, cfg, backend, control_buffer=None, reset_state=None, *, default_qpos=None, state_read_cache=None)[source]¶
- Parameters:
name (
str)cfg (
EntityCfg)backend (
SimBackend)reset_state (
ResetStateTransaction|None)state_read_cache (
_EntityStateReadCache|None)
- find_joints_by_actuator_names(keys)[source]¶
Resolve actuator-target joint patterns in natural entity joint order.
- set_joint_position_target(target, joint_ids=None, env_ids=None)[source]¶
Map entity-local joint targets to the env-owned actuator control buffer.
- set_joint_velocity_target(target, joint_ids=None, env_ids=None)[source]¶
Map joint velocity targets to the entity actuator control buffer.
- set_joint_effort_target(target, joint_ids=None, env_ids=None)[source]¶
Map joint effort (torque) targets to the actuator control buffer.
- bind_body_state_copy(body_ids=None)[source]¶
Bind entity-local body columns to the backend copy contract on the cold path.
- write_root_state_to_sim(root_state, env_ids=None)[source]¶
Stage a 13-D world-frame root state in the active reset transaction.
- bind_actuator_gain_write(actuator_ids=None, *, term_name)[source]¶
Bind selected actuator columns and immutable gain defaults on the cold path.
- write_actuator_gains_to_sim(kp, kd, actuator_ids=None, env_ids=None, *, term_name='pd_gains')[source]¶
Stage entity-local actuator gains in the active reset transaction.
- bind_geom_size_write(geom_ids=None, *, term_name)[source]¶
Bind entity-local geom_size columns and immutable defaults.
- write_geom_size_to_sim(values, geom_ids=None, env_ids=None, *, term_name='geom_size')[source]¶
Stage geom_size values through the reset transaction.
- bind_geom_solref_write(geom_ids=None, *, term_name)[source]¶
Bind entity-local geom_solref columns and immutable defaults.
- write_geom_solref_to_sim(values, geom_ids=None, env_ids=None, *, term_name='geom_solref')[source]¶
Stage geom_solref values through the reset transaction.
- bind_geom_solimp_write(geom_ids=None, *, term_name)[source]¶
Bind entity-local geom_solimp columns and immutable defaults.
- write_geom_solimp_to_sim(values, geom_ids=None, env_ids=None, *, term_name='geom_solimp')[source]¶
Stage geom_solimp values through the reset transaction.
- bind_joint_damping_write(joint_ids=None, *, term_name)[source]¶
Bind entity-local joint_damping columns and immutable defaults.
- write_joint_damping_to_sim(values, joint_ids=None, env_ids=None, *, term_name='joint_damping')[source]¶
Stage joint_damping values through the reset transaction.
- bind_joint_frictionloss_write(joint_ids=None, *, term_name)[source]¶
Bind entity-local joint_frictionloss columns and immutable defaults.
- write_joint_frictionloss_to_sim(values, joint_ids=None, env_ids=None, *, term_name='joint_frictionloss')[source]¶
Stage joint_frictionloss values through the reset transaction.
- bind_mocap_pose_write(body_name, *, term_name)[source]¶
Bind an explicitly named mocap body, independently of the floating root.
- read_mocap_pose()[source]¶
Read full-batch mocap poses, including pending reset writes.
- Return type:
- write_mocap_pose_to_sim(poses, env_ids=None, *, term_name='mocap_pose')[source]¶
Stage poses to commit after the ordinary reset state upload.
- bind_joint_armature_write(joint_ids=None, *, term_name)[source]¶
Bind entity-local joints and immutable default DOF armatures.
- write_joint_armature_to_sim(values, joint_ids=None, env_ids=None, *, term_name='joint_armature')[source]¶
Stage selected entity joint armatures in the active reset transaction.
- bind_geom_friction_write(geom_ids=None, *, term_name)[source]¶
Bind entity-local geoms and immutable default friction vectors.
- write_geom_friction_to_sim(values, geom_ids=None, env_ids=None, *, term_name='geom_friction')[source]¶
Stage selected entity geom friction in the active reset transaction.
- bind_body_mass_write(body_ids=None, *, term_name)[source]¶
Bind entity-local body columns and immutable default masses.
- write_body_mass_to_sim(values, body_ids=None, env_ids=None, *, term_name='randomize_rigid_body_mass')[source]¶
Stage selected entity body masses in the active reset transaction.
- bind_body_ipos_write(body_ids=None, *, term_name)[source]¶
Bind entity-local body columns and immutable inertial positions.
- write_body_ipos_to_sim(values, body_ids=None, env_ids=None, *, term_name='randomize_rigid_body_com')[source]¶
Stage selected entity body inertial positions in the reset transaction.
- bind_body_inertia_write(body_ids=None, *, default, default_mass, term_name)[source]¶
Bind entity-local body columns and caller-compiled default inertias.
default/default_massare the full backend-width inertial tables compiled from the scene model on the cold path; the transaction cross-validatesdefault_massagainst the backend’s authoritative body-mass table before trusting the inertia rows.
- write_body_inertia_to_sim(values, body_ids=None, env_ids=None, *, term_name='randomize_body_mass_inertia')[source]¶
Stage selected entity body principal inertias in the reset transaction.
- bind_root_linear_velocity_delta(*, term_name)[source]¶
Validate the interval root-velocity capability on the cold path.
- bind_root_angular_velocity_delta(*, term_name)[source]¶
Validate the interval root angular-velocity capability on the cold path.
- apply_root_linear_velocity_delta_to_sim(values, env_ids=None, *, term_name='push_by_setting_velocity')[source]¶
Dispatch a cached root linear-velocity delta through the formal interval plan.
- apply_root_velocity_delta_to_sim(linear_delta, angular_delta, env_ids=None, *, term_name='push_by_setting_velocity')[source]¶
Dispatch world-frame root linear/angular velocity deltas in one interval plan.
- bind_body_wrench(body_ids=None, *, torque, term_name)[source]¶
Resolve entity-local and backend body columns for interval wrench writes.
Returns readonly
(local_ids, backend_ids);local_idsindex the entity’s body-state views (e.g.data.body_link_quat_w) andbackend_idsare the columns accepted byapply_body_wrench_to_sim().
- apply_body_wrench_to_sim(forces, torques, body_ids, env_ids=None, *, term_name)[source]¶
Dispatch world-frame body forces/torques through the formal interval plan.
body_idsare the immutable backend columns returned bybind_body_wrench();forces/torquesare world-frame rows forenv_idsstaged for the upcoming step.
- write_root_link_pose_to_sim(root_pose, env_ids=None)[source]¶
Stage world position and wxyz root orientation during reset.
- write_root_link_velocity_to_sim(root_velocity, env_ids=None)[source]¶
Stage world linear/angular root velocity during reset.
- read_reset_root_pose(env_ids=None)[source]¶
Read the world position and wxyz root orientation staged in the reset.
Returns a detached
(len(env_ids), 7)copy of the pose currently staged in the active reset transaction (backend default for rows no term has written yet), so a later reset term can build on an earlier term’s root placement.
- write_joint_state_to_sim(position, velocity, joint_ids=None, env_ids=None)[source]¶
Stage community-style joint state writes in the active reset transaction.