-
Notifications
You must be signed in to change notification settings - Fork 68
/
getCentroidalTotalMomentum.m
28 lines (24 loc) · 1.14 KB
/
getCentroidalTotalMomentum.m
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
function totalMomentum = getCentroidalTotalMomentum(KinDynModel)
% GETCENTROIDALTOTALMOMENTUM retrieves the centroidal momentum from the reduced
% model. The quantity is expressed in a frame that depends
% on the 'FrameVelocityReperesentation' settings.
%
% This matlab function wraps a functionality of the iDyntree library.
% For further info see also: https://github.com/robotology/idyntree
%
% FORMAT: totalMomentum = getCentroidalTotalMomentum(KinDynModel)
%
% INPUTS: - KinDynModel: a structure containing the loaded model and additional info.
%
% OUTPUTS: - totalMomentum: [6 x 1] vector of linear and angular momentum.
%
% Author : Gabriele Nava ([email protected])
%
% SPDX-FileCopyrightText: Fondazione Istituto Italiano di Tecnologia (IIT)
% SPDX-License-Identifier: BSD-3-Clause
%% ------------Initialization----------------
% get the momentum
totalMomentum_iDyntree = KinDynModel.kinDynComp.getCentroidalTotalMomentum();
% convert to Matlab format
totalMomentum = totalMomentum_iDyntree.toMatlab;
end