23 "computeKineticEnergy",
24 &computeKineticEnergy<Scalar, Options, JointCollectionDefaultTpl, VectorXs, VectorXs>,
25 bp::args(
"model",
"data",
"q",
"v"),
26 "Computes the forward kinematics and the kinematic energy of the system for the "
27 "given joint configuration and velocity given as input. The result is accessible "
28 "through data.kinetic_energy.");
31 "computeKineticEnergy", &computeKineticEnergy<Scalar, Options, JointCollectionDefaultTpl>,
32 bp::args(
"model",
"data"),
33 "Computes the kinematic energy of the system for the "
34 "given joint placement and velocity stored in data. The result is accessible through "
35 "data.kinetic_energy.");
38 "computePotentialEnergy",
39 &computePotentialEnergy<Scalar, Options, JointCollectionDefaultTpl, VectorXs>,
40 bp::args(
"model",
"data",
"q"),
41 "Computes the potential energy of the system for the "
42 "given the joint configuration given as input. The result is accessible through "
43 "data.potential_energy.");
46 "computePotentialEnergy",
47 &computePotentialEnergy<Scalar, Options, JointCollectionDefaultTpl>,
48 bp::args(
"model",
"data"),
49 "Computes the potential energy of the system for the "
50 "given joint placement stored in data. The result is accessible through "
51 "data.potential_energy.");
54 "computeMechanicalEnergy",
55 &computeMechanicalEnergy<Scalar, Options, JointCollectionDefaultTpl, VectorXs, VectorXs>,
56 bp::args(
"model",
"data",
"q",
"v"),
57 "Computes the forward kinematics and the kinematic energy of the system for the "
58 "given joint configuration and velocity given as input. The result is accessible through "
59 "data.mechanical_energy.\n"
60 "A byproduct of this function is the computation of both data.kinetic_energy and "
61 "data.potential_energy too.");
64 "computeMechanicalEnergy",
65 &computeMechanicalEnergy<Scalar, Options, JointCollectionDefaultTpl>,
66 bp::args(
"model",
"data"),
67 "Computes the mechanical energy of the system for the "
68 "given joint placement and velocity stored in data. The result is accessible through "
69 "data.mechanical_energy.\n"
70 "A byproduct of this function is the computation of both data.kinetic_energy and "
71 "data.potential_energy too.");