Constraint::SpeedCoupler Class Reference

#include <Constraint.h>

Inheritance diagram for Constraint::SpeedCoupler:

Constraint::Custom Constraint PIMPLHandle

List of all members.


Detailed Description

This is a subclass of Constraint::Custom which uses a Function object to define a nonholonomic (velocity) constraint.

You provide a Function which takes some subset of the system's generalized speeds as arguments, and returns a single value. It also must support partial derivatives up to second order. The constraint enforces that the value of the function should equal 0 at all times.

The Function may optionally depend on coordinates (q) as well as speeds (u), but it only acts as a constraint on the speeds. The constraint takes the current values of the coordinates as constants, then tries to modify only the speeds so as to satisfy the constraint.

Public Member Functions

 SpeedCoupler (SimbodyMatterSubsystem &matter, const Function< 1 > *function, const std::vector< MobilizedBodyIndex > &speedBody, const std::vector< MobilizerUIndex > &speedIndex)
 Create a SpeedCoupler.
 SpeedCoupler (SimbodyMatterSubsystem &matter, const Function< 1 > *function, const std::vector< MobilizedBodyIndex > &speedBody, const std::vector< MobilizerUIndex > &speedIndex, const std::vector< MobilizedBodyIndex > &coordBody, const std::vector< MobilizerQIndex > &coordIndex)
 Create a SpeedCoupler.


Constructor & Destructor Documentation

SpeedCoupler ( SimbodyMatterSubsystem matter,
const Function< 1 > *  function,
const std::vector< MobilizedBodyIndex > &  speedBody,
const std::vector< MobilizerUIndex > &  speedIndex 
)

Create a SpeedCoupler.

You specify a Function and a list of generalized speeds to pass to it as arguments. Each generalized speed is specified by a MobilizedBody and the index of the speeds within that body. For example matter.getMobilizedBody(bodies[2]).getOneU(state, speeds[2]) will be passed to the function as the value of the second argument.

Parameters:
matter the matter subsystem this constraint will be added to
function the Function whose value should equal 0 at all times. The constraint takes over ownership of this object, and automatically deletes it when the constraint is deleted.
speedBody the MobilizedBody corresponding to each generalized speed that should be passed as a function argument
speedIndex the index corresponding to each generalized speed that should be passed as a function argument

SpeedCoupler ( SimbodyMatterSubsystem matter,
const Function< 1 > *  function,
const std::vector< MobilizedBodyIndex > &  speedBody,
const std::vector< MobilizerUIndex > &  speedIndex,
const std::vector< MobilizedBodyIndex > &  coordBody,
const std::vector< MobilizerQIndex > &  coordIndex 
)

Create a SpeedCoupler.

You specify a Function and a list of generalized coordinates and speeds to pass to it as arguments. Each generalized speed is specified by a MobilizedBody and the index of the speeds within that body. For example matter.getMobilizedBody(bodies[2]).getOneU(state, speeds[2]) will be passed to the function as the value of the second argument. Generalized coordinates come after generalized speeds in the argument list. For example, if you specify three generalized speeds and two generalized coordinates, the Function must take a total of five arguments. The first three are the speeds, and the last two are the coordinates.

Parameters:
matter the matter subsystem this constraint will be added to
function the Function whose value should equal 0 at all times. The constraint takes over ownership of this object, and automatically deletes it when the constraint is deleted.
speedBody the MobilizedBody corresponding to each generalized speed that should be passed as a function argument
speedIndex the index corresponding to each generalized speed that should be passed as a function argument
coordBody the MobilizedBody corresponding to each generalized coordinate that should be passed as a function argument
coordIndex the index corresponding to each generalized coordinate that should be passed as a function argument


The documentation for this class was generated from the following file:

Generated on Fri Sep 26 07:44:31 2008 for SimTKcore by  doxygen 1.5.6