File size: 17,201 Bytes
406662d | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 | # Copyright (c) 2022-2026, The Isaac Lab Project Developers (https://github.com/isaac-sim/IsaacLab/blob/main/CONTRIBUTORS.md).
# All rights reserved.
#
# SPDX-License-Identifier: BSD-3-Clause
"""Test cases for LocalFrameTask class."""
# Import pinocchio in the main script to force the use of the dependencies installed
# by IsaacLab and not the one installed by Isaac Sim
# pinocchio is required by the Pink IK controller
import sys
if sys.platform != "win32":
import pinocchio # noqa: F401
from isaaclab.app import AppLauncher
# launch omniverse app
simulation_app = AppLauncher(headless=True).app
from pathlib import Path
import numpy as np
import pinocchio as pin
import pytest
from isaaclab.controllers.pink_ik.local_frame_task import LocalFrameTask
from isaaclab.controllers.pink_ik.pink_kinematics_configuration import PinkKinematicsConfiguration
# class TestLocalFrameTask:
# """Test suite for LocalFrameTask class."""
@pytest.fixture
def urdf_path():
"""Path to test URDF file."""
return Path(__file__).parent / "urdfs" / "test_urdf_two_link_robot.urdf"
@pytest.fixture
def controlled_joint_names():
"""List of controlled joint names for testing."""
return ["joint_1", "joint_2"]
@pytest.fixture
def pink_config(urdf_path, controlled_joint_names):
"""Create a PinkKinematicsConfiguration instance for testing."""
return PinkKinematicsConfiguration(
urdf_path=str(urdf_path),
controlled_joint_names=controlled_joint_names,
# copy_data=True,
# forward_kinematics=True,
)
@pytest.fixture
def local_frame_task():
"""Create a LocalFrameTask instance for testing."""
return LocalFrameTask(
frame="link_2",
base_link_frame_name="base_link",
position_cost=1.0,
orientation_cost=1.0,
lm_damping=0.0,
gain=1.0,
)
def test_initialization(local_frame_task):
"""Test proper initialization of LocalFrameTask."""
# Check that the task is properly initialized
assert local_frame_task.frame == "link_2"
assert local_frame_task.base_link_frame_name == "base_link"
assert np.allclose(local_frame_task.cost[:3], [1.0, 1.0, 1.0])
assert np.allclose(local_frame_task.cost[3:], [1.0, 1.0, 1.0])
assert local_frame_task.lm_damping == 0.0
assert local_frame_task.gain == 1.0
# Check that target is initially None
assert local_frame_task.transform_target_to_base is None
def test_initialization_with_sequence_costs():
"""Test initialization with sequence costs."""
task = LocalFrameTask(
frame="link_1",
base_link_frame_name="base_link",
position_cost=[1.0, 1.0, 1.0],
orientation_cost=[1.0, 1.0, 1.0],
lm_damping=0.1,
gain=2.0,
)
assert task.frame == "link_1"
assert task.base_link_frame_name == "base_link"
assert np.allclose(task.cost[:3], [1.0, 1.0, 1.0])
assert np.allclose(task.cost[3:], [1.0, 1.0, 1.0])
assert task.lm_damping == 0.1
assert task.gain == 2.0
def test_inheritance_from_frame_task(local_frame_task):
"""Test that LocalFrameTask properly inherits from FrameTask."""
from pink.tasks.frame_task import FrameTask
# Check inheritance
assert isinstance(local_frame_task, FrameTask)
# Check that we can call parent class methods
assert hasattr(local_frame_task, "compute_error")
assert hasattr(local_frame_task, "compute_jacobian")
def test_set_target(local_frame_task):
"""Test setting target with a transform."""
# Create a test transform
target_transform = pin.SE3.Identity()
target_transform.translation = np.array([0.1, 0.2, 0.3])
target_transform.rotation = pin.exp3(np.array([0.1, 0.0, 0.0]))
# Set the target
local_frame_task.set_target(target_transform)
# Check that target was set correctly
assert local_frame_task.transform_target_to_base is not None
assert isinstance(local_frame_task.transform_target_to_base, pin.SE3)
# Check that it's a copy (not the same object)
assert local_frame_task.transform_target_to_base is not target_transform
# Check that values match
assert np.allclose(local_frame_task.transform_target_to_base.translation, target_transform.translation)
assert np.allclose(local_frame_task.transform_target_to_base.rotation, target_transform.rotation)
def test_set_target_from_configuration(local_frame_task, pink_config):
"""Test setting target from a robot configuration."""
# Set target from configuration
local_frame_task.set_target_from_configuration(pink_config)
# Check that target was set
assert local_frame_task.transform_target_to_base is not None
assert isinstance(local_frame_task.transform_target_to_base, pin.SE3)
def test_set_target_from_configuration_wrong_type(local_frame_task):
"""Test that set_target_from_configuration raises error with wrong type."""
with pytest.raises(ValueError, match="configuration must be a PinkKinematicsConfiguration"):
local_frame_task.set_target_from_configuration("not_a_configuration")
def test_compute_error_with_target_set(local_frame_task, pink_config):
"""Test computing error when target is set."""
# Set a target
target_transform = pin.SE3.Identity()
target_transform.translation = np.array([0.1, 0.2, 0.3])
local_frame_task.set_target(target_transform)
# Compute error
error = local_frame_task.compute_error(pink_config)
# Check that error is computed correctly
assert isinstance(error, np.ndarray)
assert error.shape == (6,) # 6D error (3 position + 3 orientation)
# Error should not be all zeros (unless target exactly matches current pose)
# This is a reasonable assumption for a random target
def test_compute_error_without_target(local_frame_task, pink_config):
"""Test that compute_error raises error when no target is set."""
with pytest.raises(ValueError, match="no target set for frame 'link_2'"):
local_frame_task.compute_error(pink_config)
def test_compute_error_wrong_configuration_type(local_frame_task):
"""Test that compute_error raises error with wrong configuration type."""
# Set a target first
target_transform = pin.SE3.Identity()
local_frame_task.set_target(target_transform)
with pytest.raises(ValueError, match="configuration must be a PinkKinematicsConfiguration"):
local_frame_task.compute_error("not_a_configuration")
def test_compute_jacobian_with_target_set(local_frame_task, pink_config):
"""Test computing Jacobian when target is set."""
# Set a target
target_transform = pin.SE3.Identity()
target_transform.translation = np.array([0.1, 0.2, 0.3])
local_frame_task.set_target(target_transform)
# Compute Jacobian
jacobian = local_frame_task.compute_jacobian(pink_config)
# Check that Jacobian is computed correctly
assert isinstance(jacobian, np.ndarray)
assert jacobian.shape == (6, 2) # 6 rows (error), 2 columns (controlled joints)
# Jacobian should not be all zeros
assert not np.allclose(jacobian, 0.0)
def test_compute_jacobian_without_target(local_frame_task, pink_config):
"""Test that compute_jacobian raises error when no target is set."""
with pytest.raises(Exception, match="no target set for frame 'link_2'"):
local_frame_task.compute_jacobian(pink_config)
def test_error_consistency_across_configurations(local_frame_task, pink_config):
"""Test that error computation is consistent across different configurations."""
# Set a target
target_transform = pin.SE3.Identity()
target_transform.translation = np.array([0.1, 0.2, 0.3])
local_frame_task.set_target(target_transform)
# Compute error at initial configuration
error_1 = local_frame_task.compute_error(pink_config)
# Update configuration
new_q = pink_config.full_q.copy()
new_q[1] = 0.5 # Change first revolute joint
pink_config.update(new_q)
# Compute error at new configuration
error_2 = local_frame_task.compute_error(pink_config)
# Errors should be different (not all close)
assert not np.allclose(error_1, error_2)
def test_jacobian_consistency_across_configurations(local_frame_task, pink_config):
"""Test that Jacobian computation is consistent across different configurations."""
# Set a target
target_transform = pin.SE3.Identity()
target_transform.translation = np.array([0.1, 0.2, 0.3])
local_frame_task.set_target(target_transform)
# Compute Jacobian at initial configuration
jacobian_1 = local_frame_task.compute_jacobian(pink_config)
# Update configuration
new_q = pink_config.full_q.copy()
new_q[1] = 0.3 # Change first revolute joint
pink_config.update(new_q)
# Compute Jacobian at new configuration
jacobian_2 = local_frame_task.compute_jacobian(pink_config)
# Jacobians should be different (not all close)
assert not np.allclose(jacobian_1, jacobian_2)
def test_error_zero_at_target_pose(local_frame_task, pink_config):
"""Test that error is zero when current pose matches target pose."""
# Get current transform of the frame
current_transform = pink_config.get_transform_frame_to_world("link_2")
# Set target to current pose
local_frame_task.set_target(current_transform)
# Compute error
error = local_frame_task.compute_error(pink_config)
# Error should be very close to zero
assert np.allclose(error, 0.0, atol=1e-10)
def test_different_frames(pink_config):
"""Test LocalFrameTask with different frame names."""
# Test with link_1 frame
task_link1 = LocalFrameTask(
frame="link_1",
base_link_frame_name="base_link",
position_cost=1.0,
orientation_cost=1.0,
)
# Set target and compute error
target_transform = pin.SE3.Identity()
target_transform.translation = np.array([0.1, 0.0, 0.0])
task_link1.set_target(target_transform)
error_link1 = task_link1.compute_error(pink_config)
assert error_link1.shape == (6,)
# Test with base_link frame
task_base = LocalFrameTask(
frame="base_link",
base_link_frame_name="base_link",
position_cost=1.0,
orientation_cost=1.0,
)
task_base.set_target(target_transform)
error_base = task_base.compute_error(pink_config)
assert error_base.shape == (6,)
def test_different_base_frames(pink_config):
"""Test LocalFrameTask with different base frame names."""
# Test with base_link as base frame
task_base_base = LocalFrameTask(
frame="link_2",
base_link_frame_name="base_link",
position_cost=1.0,
orientation_cost=1.0,
)
target_transform = pin.SE3.Identity()
task_base_base.set_target(target_transform)
error_base_base = task_base_base.compute_error(pink_config)
assert error_base_base.shape == (6,)
# Test with link_1 as base frame
task_link1_base = LocalFrameTask(
frame="link_2",
base_link_frame_name="link_1",
position_cost=1.0,
orientation_cost=1.0,
)
task_link1_base.set_target(target_transform)
error_link1_base = task_link1_base.compute_error(pink_config)
assert error_link1_base.shape == (6,)
def test_sequence_cost_parameters():
"""Test LocalFrameTask with sequence cost parameters."""
task = LocalFrameTask(
frame="link_2",
base_link_frame_name="base_link",
position_cost=[1.0, 2.0, 3.0],
orientation_cost=[0.5, 1.0, 1.5],
lm_damping=0.1,
gain=2.0,
)
assert np.allclose(task.cost[:3], [1.0, 2.0, 3.0]) # Position costs
assert np.allclose(task.cost[3:], [0.5, 1.0, 1.5]) # Orientation costs
assert task.lm_damping == 0.1
assert task.gain == 2.0
def test_error_magnitude_consistency(local_frame_task, pink_config):
"""Test that error computation produces reasonable results."""
# Set a small target offset
small_target = pin.SE3.Identity()
small_target.translation = np.array([0.01, 0.01, 0.01])
local_frame_task.set_target(small_target)
error_small = local_frame_task.compute_error(pink_config)
# Set a large target offset
large_target = pin.SE3.Identity()
large_target.translation = np.array([0.5, 0.5, 0.5])
local_frame_task.set_target(large_target)
error_large = local_frame_task.compute_error(pink_config)
# Both errors should be finite and reasonable
assert np.all(np.isfinite(error_small))
assert np.all(np.isfinite(error_large))
assert not np.allclose(error_small, error_large) # Different targets should produce different errors
def test_jacobian_structure(local_frame_task, pink_config):
"""Test that Jacobian has the correct structure."""
# Set a target
target_transform = pin.SE3.Identity()
target_transform.translation = np.array([0.1, 0.2, 0.3])
local_frame_task.set_target(target_transform)
# Compute Jacobian
jacobian = local_frame_task.compute_jacobian(pink_config)
# Check structure
assert jacobian.shape == (6, 2) # 6 error dimensions, 2 controlled joints
# Check that Jacobian is not all zeros (basic functionality check)
assert not np.allclose(jacobian, 0.0)
def test_multiple_target_updates(local_frame_task, pink_config):
"""Test that multiple target updates work correctly."""
# Set first target
target1 = pin.SE3.Identity()
target1.translation = np.array([0.1, 0.0, 0.0])
local_frame_task.set_target(target1)
error1 = local_frame_task.compute_error(pink_config)
# Set second target
target2 = pin.SE3.Identity()
target2.translation = np.array([0.0, 0.1, 0.0])
local_frame_task.set_target(target2)
error2 = local_frame_task.compute_error(pink_config)
# Errors should be different
assert not np.allclose(error1, error2)
def test_inheritance_behavior(local_frame_task):
"""Test that LocalFrameTask properly overrides parent class methods."""
# Check that the class has the expected methods
assert hasattr(local_frame_task, "set_target")
assert hasattr(local_frame_task, "set_target_from_configuration")
assert hasattr(local_frame_task, "compute_error")
assert hasattr(local_frame_task, "compute_jacobian")
# Check that these are the overridden methods, not the parent ones
assert local_frame_task.set_target.__qualname__ == "LocalFrameTask.set_target"
assert local_frame_task.compute_error.__qualname__ == "LocalFrameTask.compute_error"
assert local_frame_task.compute_jacobian.__qualname__ == "LocalFrameTask.compute_jacobian"
def test_target_copying_behavior(local_frame_task):
"""Test that target transforms are properly copied."""
# Create a target transform
original_target = pin.SE3.Identity()
original_target.translation = np.array([0.1, 0.2, 0.3])
original_rotation = original_target.rotation.copy()
# Set the target
local_frame_task.set_target(original_target)
# Modify the original target
original_target.translation = np.array([0.5, 0.5, 0.5])
original_target.rotation = pin.exp3(np.array([0.5, 0.0, 0.0]))
# Check that the stored target is unchanged
assert np.allclose(local_frame_task.transform_target_to_base.translation, np.array([0.1, 0.2, 0.3]))
assert np.allclose(local_frame_task.transform_target_to_base.rotation, original_rotation)
def test_error_computation_with_orientation_difference(local_frame_task, pink_config):
"""Test error computation when there's an orientation difference."""
# Set a target with orientation difference
target_transform = pin.SE3.Identity()
target_transform.rotation = pin.exp3(np.array([0.2, 0.0, 0.0])) # Rotation around X-axis
local_frame_task.set_target(target_transform)
# Compute error
error = local_frame_task.compute_error(pink_config)
# Check that error is computed correctly
assert isinstance(error, np.ndarray)
assert error.shape == (6,)
# Error should not be all zeros
assert not np.allclose(error, 0.0)
def test_jacobian_rank_consistency(local_frame_task, pink_config):
"""Test that Jacobian maintains consistent shape across configurations."""
# Set a target that we know can be reached by the test robot.
target_transform = pin.SE3.Identity()
target_transform.translation = np.array([0.0, 0.0, 0.45])
# 90 degrees around x axis = pi/2 radians
target_transform.rotation = pin.exp3(np.array([np.pi / 2, 0.0, 0.0]))
local_frame_task.set_target(target_transform)
# Compute Jacobian at multiple configurations
jacobians = []
for i in range(5):
# Update configuration
new_q = pink_config.full_q.copy()
new_q[1] = 0.1 * i # Vary first joint
pink_config.update(new_q)
# Compute Jacobian
jacobian = local_frame_task.compute_jacobian(pink_config)
jacobians.append(jacobian)
# All Jacobians should have the same shape
for jacobian in jacobians:
assert jacobian.shape == (6, 2)
# All Jacobians should have rank 2 (full rank for 2-DOF planar arm)
for jacobian in jacobians:
assert np.linalg.matrix_rank(jacobian) == 2
|