idyntree icon indicating copy to clipboard operation
idyntree copied to clipboard

Multibody Dynamics Library designed for Free Floating Robots

Results 140 idyntree issues
Sort by recently updated
recently updated
newest added

I'm facing a strange behavior in the `YARPConversion` helper function. `iDynTree` has generic templates, such as: https://github.com/robotology/idyntree/blob/d4a1cf98a80391937da6a040982c72764aec9a86/src/yarp/include/iDynTree/yarp/YARPConversions.h#L178-L185 and functions, which their presence should prevent the template to be instantiated. An...

Component: YARP
Platform: Linux
Severity: Minor

In the `SimpleLeggedOdometry` class the position of the fixed foot is evaluated by solving a forward kinematics problem. In details: https://github.com/robotology/idyntree/blob/114671fb1a012f6214b35b8462d463fea99781fd/src/estimation/src/SimpleLeggedOdometry.cpp#L250-L254 In the case of flat ground, the z coordinate...

I am currently working on the implementation of a solver for inverse-velocity-kinematics in view of implementing velocity integration based inverse kinematics solver. The implementation can be found in [`lrapetti/idyntree/feature/inverse-velocity-kinematics`](https://github.com/lrapetti/idyntree/tree/feature/inverse-velocity-kinematics). @traversaro...

In ORCA https://github.com/syroco/orca i'm embedding idyntree as an external dependencies (via`add_subdirectories(external/idyntree)` ). In `InstallBasicPackageFiles.cmake` it'd be great to change all the `${CMAKE_SOURCE_DIR}` to `${PROJECT_SOURCE_DIR}` and `${CMAKE_BINARY_DIR}` to `${PROJECT_BINARY_DIR}`. Now they...

Today, when I tried to load a .urdf model with the `loadModelFromFile` method via Matlab bindings, it gave me this error: ```matlab test = iDynTree.ModelLoader(); test.loadModelFromFile('model.urdf','urdf') [ERROR] :: modelFromURDFString :...

PR 246 : https://github.com/robotology/idyntree/pull/246 Allow to have two fake links (i.e. "additional frames") connected to one another through fixed joints. This happens on the Walkman model. This reduces to modify...

Component: Core
Priority: IFI Day
Severity: Normal
Status: Help Wanted
Complexity: Medium

We (@Yeshasvitvs ) were facing a strange segfault problem when using the IK. [Here](https://github.com/Yeshasvitvs/human-dynamics-estimation/blob/17e345aae88a709a2e023a1d18071358b7bba450/devices/HumanStateProvider/tests/ipopt-test.cpp) the test. By adding the following line ``` ik.setRotationParametrization(iDynTree::InverseKinematicsRotationParametrizationRollPitchYaw); ``` it started working as expected. The...

Type: Bug
Component: InverseKinematics

We are a bit time-constrained now, but the InverseKinematics class would really benefit from a cleanup. We have several tests checking its behavior, so it should be relatively pain-free to...

Component: InverseKinematics

In this issue we collect timing statistics regarding the inverse kinematics with the aim of finding (and removing) potential bottlenecks. The IK is configured in the following way: - Robot:...

Type: Enhancement
Type: Discussion
Component: InverseKinematics

Given a floating base system subject to a set of rigid constraints: \begin{equation} M \dot{\nu} + h = B\tau + J_c^\top f \\\\ J_c \dot{\nu} + \dot{J}_c \nu = 0...