25 "computeKineticEnergy",
26 &computeKineticEnergy<Scalar, Options, JointCollectionDefaultTpl, VectorXs, VectorXs>,
27 bp::args(
"model",
"data",
"q",
"v"),
28 "Computes the forward kinematics and the kinematic energy of the system for the "
29 "given joint configuration and velocity given as input. The result is accessible "
30 "through data.kinetic_energy.",
34 "computeKineticEnergy", &computeKineticEnergy<Scalar, Options, JointCollectionDefaultTpl>,
35 bp::args(
"model",
"data"),
36 "Computes the kinematic energy of the system for the "
37 "given joint placement and velocity stored in data. The result is accessible through "
38 "data.kinetic_energy.",
42 "computePotentialEnergy",
43 &computePotentialEnergy<Scalar, Options, JointCollectionDefaultTpl, VectorXs>,
44 bp::args(
"model",
"data",
"q"),
45 "Computes the potential energy of the system for the "
46 "given the joint configuration given as input. The result is accessible through "
47 "data.potential_energy.",
51 "computePotentialEnergy",
52 &computePotentialEnergy<Scalar, Options, JointCollectionDefaultTpl>,
53 bp::args(
"model",
"data"),
54 "Computes the potential energy of the system for the "
55 "given joint placement stored in data. The result is accessible through "
56 "data.potential_energy.",
60 "computeMechanicalEnergy",
61 &computeMechanicalEnergy<Scalar, Options, JointCollectionDefaultTpl, VectorXs, VectorXs>,
62 bp::args(
"model",
"data",
"q",
"v"),
63 "Computes the forward kinematics and the kinematic energy of the system for the "
64 "given joint configuration and velocity given as input. The result is accessible through "
65 "data.mechanical_energy.\n"
66 "A byproduct of this function is the computation of both data.kinetic_energy and "
67 "data.potential_energy too.",
71 "computeMechanicalEnergy",
72 &computeMechanicalEnergy<Scalar, Options, JointCollectionDefaultTpl>,
73 bp::args(
"model",
"data"),
74 "Computes the mechanical energy of the system for the "
75 "given joint placement and velocity stored in data. The result is accessible through "
76 "data.mechanical_energy.\n"
77 "A byproduct of this function is the computation of both data.kinetic_energy and "
78 "data.potential_energy too.",