|
virtual sBool | computeGCModel (const SRobotSensors *arg_sensor_data, SGcModel *arg_gc_model) |
|
virtual sBool | computeTransformsForAllLinks (sutil::CMappedTree< std::string, SRigidBodyDyn > &arg_tree, const Eigen::VectorXd &arg_q) |
|
virtual sBool | computeTransform (SRigidBodyDyn &arg_link, const Eigen::VectorXd &arg_q) |
|
virtual sBool | computeTransformToAncestor (Eigen::Affine3d &arg_T, SRigidBodyDyn &arg_link, const SRigidBodyDyn *arg_ancestor, const Eigen::VectorXd &arg_q) |
|
virtual sBool | computeJacobianWithTransforms (Eigen::MatrixXd &arg_J, SRigidBodyDyn &arg_link, const Eigen::VectorXd &arg_q, const Eigen::Vector3d &arg_pos_local) |
|
virtual sBool | computeJacobian (Eigen::MatrixXd &arg_J, const SRigidBodyDyn &arg_link, const Eigen::VectorXd &arg_q, const Eigen::Vector3d &arg_pos_local) const |
|
virtual sBool | computeJacobian (Eigen::MatrixXd &arg_J, SRigidBodyDyn &arg_link, const SRigidBodyDyn *arg_ancestor, const Eigen::VectorXd &arg_q, const Eigen::Vector3d &arg_pos_local, const bool arg_recompute_transforms=true) |
|
sBool | computeJacobianComForAllLinks (sutil::CMappedTree< std::string, SRigidBodyDyn > &arg_tree, const Eigen::VectorXd &arg_q) const |
|
sBool | computeInertiaGC (Eigen::MatrixXd &ret_Mgc, sutil::CMappedTree< std::string, SRigidBodyDyn > &arg_tree, const Eigen::VectorXd &arg_q) |
|
sBool | computeForceGravityGC (Eigen::VectorXd &ret_FgravGC, sutil::CMappedTree< std::string, SRigidBodyDyn > &arg_tree, const Eigen::VectorXd &arg_q) |
|
virtual sFloat | computeEnergyKinetic (sutil::CMappedTree< std::string, SRigidBodyDyn > &arg_tree, const Eigen::VectorXd &arg_q, const Eigen::VectorXd &arg_dq) |
|
virtual sFloat | computeEnergyPotential (sutil::CMappedTree< std::string, SRigidBodyDyn > &arg_tree, const Eigen::VectorXd &arg_q) |
|
virtual sBool | computeImpulseForce (const SRobotSensors &arg_sensor_data, const SGcModel &arg_gc_model, sFloat arg_coeff_rest, sFloat arg_collision_time, scl::SForceContact &ret_force_) |
|
| CDynamicsScl () |
|
virtual | ~CDynamicsScl () |
|
virtual sBool | init (const SRobotParsed &arg_robot_data) |
|
virtual sBool | computeJacobian (Eigen::MatrixXd &arg_J, const SRigidBodyDyn &arg_link, const SRigidBodyDyn *arg_ancestor, const Eigen::VectorXd &arg_q, const Eigen::Vector3d &arg_pos_local) |
|
virtual sBool | computeJacobianTrans (Eigen::MatrixXd &arg_J, const SRigidBodyDyn &arg_link, const SRigidBodyDyn *arg_ancestor, const Eigen::VectorXd &arg_q, const Eigen::Vector3d &arg_pos_local) |
|
virtual sBool | computeJacobianRot (Eigen::MatrixXd &arg_J, const SRigidBodyDyn &arg_link, const SRigidBodyDyn *arg_ancestor, const Eigen::VectorXd &arg_q, const Eigen::Vector3d &arg_pos_local) |
|
virtual sBool | computeExternalContacts (sutil::CMappedList< std::string, SForce > &arg_contacts) |
|
virtual sBool | integrate (SRobotIO &arg_inputs, const sFloat arg_time_interval) |
|
virtual sBool | hasBeenInit () |
|
This class implements dynamics algorithms for control and simulation using the scl library.
The primary goal of this implementation—given that there are alternatives—is to enable quick Jacobian and transformation matrix computations.
The main feature of this dynamics implementation is that it is truly stateless.
It does not (presently) implement an integrator so plan on using an alternative Physics engine (like Tao).
Calculates the collision forces for the robot to which this dynamics object is assigned.
Uses std::string based force lookup. The dynamics implementation should support this (maintain a map or something).
NOTE : The dynamics engine may delete forces from the passed mapped list at will. Do not store pointers to them at random places in your code.
As of now, this is optional for dynamics engines
- Parameters
-
arg_contacts | This is where the simulator will store the contact forces. It may use the std::string to identify when to remove or re-add forces. |
Reimplemented in scl_ext::CDynamics3d.
sBool scl::CDynamicsScl::computeJacobian |
( |
Eigen::MatrixXd & |
arg_J, |
|
|
const SRigidBodyDyn & |
arg_link, |
|
|
const Eigen::VectorXd & |
arg_q, |
|
|
const Eigen::Vector3d & |
arg_pos_local |
|
) |
| const |
|
virtual |
Calculates the Jacobian for the robot to which this dynamics object is assigned. dx_global_origin = Jx . dq The Jacobian is specified by a link and an offset (in task space dimensions)from that link. ** CONST VERSION **
For linear joints: Jv => dq = The linear velocity vector simply needs to be rotated to the global frame Jω => Zero. There is no contribution to the angular velocity.
For rotational joints: Jv => cross product of operational point and angular velocity at the given dof. Jω => The angular velocity vector simply needs to be rotated to the global frame.
- Parameters
-
arg_J | The Jacobain will be saved here. |
arg_link | The link at which the Jacobian is to be calculated |
arg_q | The current generalized coordinates. |
arg_pos_local | The offset from the link's frame (in link coordinates). |
Reimplemented from scl::CDynamicsBase.
sBool scl::CDynamicsScl::computeTransformToAncestor |
( |
Eigen::Affine3d & |
arg_T, |
|
|
SRigidBodyDyn & |
arg_link, |
|
|
const SRigidBodyDyn * |
arg_ancestor, |
|
|
const Eigen::VectorXd & |
arg_q |
|
) |
| |
|
virtual |
Calculates the Transformation Matrix for the robot to which this dynamics object is assigned. x_ancestor_link_coords = arg_link.T_lnk_ * x_link_coords
Note that the local transformation matrices are updated in all the link data structs from arg_link to arg_ancestor.
Also note that there are two origins, robot origin, which actually has a node allocated for it. And the global scl origin, for which you should pass in a NULL as ancestor.
Calculates the Transformation Matrix for the robot to which this dynamics object is assigned. x_ancestor_link_coords = arg_link.T_lnk_ * x_link_coords Note that the local transformation matrices are updated in all the link data structs from arg_link to arg_ancestor.
- Parameters
-
arg_T | The transformation matrix in which to store the answer |
arg_link | The link at which the transformation matrix is to be calculated |
arg_ancestor | The link up to which the transformation matrix is to be calculated Pass NULL to compute the transform up to the global root. |
arg_q | The current generalized coordinates. |
Reimplemented from scl::CDynamicsBase.
Initializes the dynamics to be computed for a specific robot. Returns: true : Succeeds in creating a dynamics object
false : If it can't find the robot or if the information is inconsistent with what the implementation requires, it returns false
Initializes the dynamics to be computed for a specific robot. Returns: true : Always. false : If something is seriously wrong
Implements scl::CDynamicsBase.
virtual sBool scl::CDynamicsBase::integrate |
( |
SRobotIO & |
arg_inputs, |
|
|
const sFloat |
arg_time_interval |
|
) |
| |
|
inlinevirtualinherited |
Integrates the robot's state. Uses the given applied forces, torques, positions and velocities and its internal dynamic model to compute new positions and velocities. Operates on the SRobotIO data structure.
Reads from, and updates: arg_inputs_.sensors_.q_, dq_, ddq_
Reads from: arg_inputs_.sensors_.forces_external_ arg_inputs_.actuators_.force_gc_commanded_
- Parameters
-
arg_inputs | The existing generalized coordinates, velocities and accelerations + The generalized forces + task (euclidean) forces and the list of contact points and links. |
arg_time_interval | The time across which the system should integrate the dynamics. Could take fixed steps or dynamic ones in between. Up to the integrator implementation. |
Reimplemented in scl::CSimbodyDynamics, scl::CDynamicsTao, scl_ext::CDynamics3d, and scl_ext::CDynamicsSclSpatial.