About the CenterOfMass property of rigidBodyTree
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
The CenterOfMass property in the rigidBodyTree class seems to not work. The code is as follows
clear;
load exampleRobots.mat
% Set lbr robot dynamics input data format to 'column'
lbr.DataFormat = 'column';
lbr.Gravity=[0 0 -9.80665];
% Generate a random configuration for lbr
q = [0 0 0 0 0 0 0]';
dq = [0 0 0 0 0 0 0]';
ddq = [0.1 0 0 0 0 0 0]';
%
% Compute the required joint torques for lbr to
% statically hold that configuration
tau = inverseDynamics(lbr, q);
disp(tau);
lbr.Bodies{1}.CenterOfMass=[1000 0 0];
tau = inverseDynamics(lbr, q);
disp(tau);
No matter how I change the position of the center of mass, the moment always remains the same.It looks like the center of mass position or body mass is set to 0,
matlab version is 2022a.
0 Commenti
Risposte (1)
Aman
il 20 Ago 2024
Hi,
As per my understanding, you aren't seeing any change in the required joint torque even after changing the COM of a particular body.
This may happen if the body whose COM you change is not in a position where gravity or other forces significantly affect it; the joint torque might not change. You can refer to the below code where I have changed the COM of body 4, which is affecting the joint torque.
clear;
lbr = loadrobot("abbIrb120");
% Set lbr robot dynamics input data format to 'column'
lbr.DataFormat = 'column';
lbr.Gravity=[0 0 -9.80665];
% Generate a random configuration for lbr
q = [0 0 0 0 0 0 ]';
% Compute the required joint torques for lbr to
% statically hold that configuration
tau = inverseDynamics(lbr, q);
disp(tau);
lbr.Bodies{1}.CenterOfMass=[1000 0 0];
tau = inverseDynamics(lbr, q);
disp(tau);
lbr.Bodies{4}.CenterOfMass=[1000 0 0];
tau = inverseDynamics(lbr, q);
disp(tau);
Hope it helps!
0 Commenti
Vedere anche
Categorie
Scopri di più su Manipulator Modeling in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!