Visual Servoing Platform  version 3.1.0
vpVirtuose Class Reference

#include <visp3/robot/vpVirtuose.h>

Public Member Functions

 vpVirtuose ()
 
 ~vpVirtuose ()
 
void addForce (vpColVector &force)
 
void enableForceFeedback (int enable)
 
vpColVector getArticularPosition () const
 
vpColVector getArticularVelocity () const
 
vpPoseVector getAvatarPosition () const
 
vpPoseVector getBaseFrame () const
 
VirtCommandType getCommandType () const
 
bool getDeadMan () const
 
bool getEmergencyStop () const
 
vpColVector getForce () const
 
VirtContext getHandler ()
 
vpPoseVector getObservationFrame () const
 
vpPoseVector getPhysicalPosition () const
 
vpColVector getPhysicalVelocity () const
 
vpPoseVector getPosition () const
 
bool getPower () const
 
vpColVector getVelocity () const
 
void init ()
 
void setArticularForce (const vpColVector &articularForce)
 
void setArticularPosition (const vpColVector &articularPosition)
 
void setArticularVelocity (const vpColVector &articularVelocity)
 
void setBaseFrame (const vpPoseVector &position)
 
void setCommandType (const VirtCommandType &type)
 
void setForce (const vpColVector &force)
 
void setForceFactor (const float &forceFactor)
 
void setIndexingMode (const VirtIndexingType &type)
 
void setIpAddress (const std::string &ip)
 
void setObservationFrame (const vpPoseVector &position)
 
void setPeriodicFunction (VirtPeriodicFunction CallBackVirt)
 
void setPosition (vpPoseVector &position)
 
void setPowerOff ()
 
void setPowerOn ()
 
void setSaturation (const float &forceLimit, const float &torqueLimit)
 
void setTimeStep (const float &timeStep)
 
void setVelocity (vpColVector &velocity)
 
void setVelocityFactor (const float &velocityFactor)
 
void setVerbose (bool mode)
 
void startPeriodicFunction ()
 
void stopPeriodicFunction ()
 

Protected Attributes

VirtContext m_virtContext
 
std::string m_ip
 
bool m_verbose
 
int m_apiMajorVersion
 
int m_apiMinorVersion
 
int m_ctrlMajorVersion
 
int m_ctrlMinorVersion
 
VirtCommandType m_typeCommand
 
VirtIndexingType m_indexType
 
bool m_is_init
 
float m_period
 

Detailed Description

This class was tested with Haption (http://www.haption.com) Virtuose 6D haptic device.

The class vpVirtuose allows to work with the original Virtuose API inside ViSP. The Virtuose API supports the following devices:

  • Virtuose 6D35-45
  • Virtuose 3D35-40
  • Virtuose 3D10-20
  • Virtuose Desktop
  • Virtuose Inca

Not all Virtuose API function are implemented in the class. Original Virtuose API functions need to be called with a VirtContext object, provided by the function getHandler().

The Virtuose library implements different control modes that could be set using setCommandType(). The choice of the control mode depends on the application. The following is the description of the main control modes as described in the Virtuose API documentation.

  1. Force/position control (impedance mode): the application sends forces and torques to the device and reads the position and speed of the end-effector frame.
  2. Position/force control (admittance mode): this advanced control mode allows direct coupling with virtual objects; in that case, the application sends the position and speed of the center of the object to the device, and reads the forces and torques to be applied to the object for dynamic integration. Stiffness and damping are calculated by the embedded software, knowing the mass and inertia of the object, in order to ensure control stability.
  3. Position/force with virtual guides: this is the same as above, with addition of virtual guides (e.g. fixed translation, fixed rotation, etc.).

The Virtuose library defines the following reference frames:

  1. The environment frame, corresponding to the origin of the virtual scene; it is specified by the software application independently of the Virtuose API.
  2. The observation frame, corresponding generally to the position of the camera; it is defined with respect to environment frame. This frame location could be set using setObservationFrame().
  3. The base frame, representing the center of the haptic device; it is defined with respect to the observation frame. This frame location could be set using setBaseFrame().
  4. The tool frame corresponds to the base of the tool fixed at the end of the haptic device, and is defined with respect to the environment frame.
  5. The end-effector (avatar) frame corresponds to the position of the user hand on the device, taking into account the geometry of the tool, and is defined with respect to tool frame.

The position of the following frames can be defined only once using the API: base frame (with respect to the observation frame) thanks to setBaseFrame() and end-effector frame (with respect to the tool frame).

The position of the observation frame (with respect to the environment frame) can be modified dynamically using setObservationFrame().

The position of the tool frame (with respect to the environment frame) cannot be modified.

All values used in the Virtuose API are expressed in physical units using metric conventions:

  • Durations in seconds (s)
  • Dimensions in meters (m)
  • Angles in radians (rad)
  • Linear velocities in meters per second (m.s -1 )
  • Angular velocities in radians per second (rad.s -1 )
  • Forces in Newtons (N)
  • Torques in Newton-meters (N.m)
  • Masses in kilogrammes (kg)
  • Inertia components in kg.m2

The following sample code shows how to connect to the haptic device to get its current joint position:

#include <visp3/robot/vpVirtuose.h>
int main()
{
vpVirtuose virtuose;
virtuose.init();
std::cout << "Joint position: " << q.t() << std::endl;
}
Examples:
testVirtuose.cpp, testVirtuoseAfma6.cpp, testVirtuoseHapticBox.cpp, testVirtuoseJointLimits.cpp, and testVirtuosePeriodicFunction.cpp.

Definition at line 143 of file vpVirtuose.h.

Constructor & Destructor Documentation

◆ vpVirtuose()

vpVirtuose::vpVirtuose ( )

Default constructor. Set command type to virtual mechanism by default (impedance mode). Authorize indexing on all movements by default.

Definition at line 54 of file vpVirtuose.cpp.

References m_apiMajorVersion, and m_apiMinorVersion.

◆ ~vpVirtuose()

vpVirtuose::~vpVirtuose ( )

Default destructor that delete the VirtContext object.

Definition at line 66 of file vpVirtuose.cpp.

References m_virtContext.

Member Function Documentation

◆ addForce()

void vpVirtuose::addForce ( vpColVector force)

Add a force to be applied to the virtuose (impedance effort). This function works in every mode.

Parameters
force: Is 6 component dynamic tensor (three forces and three torques) wrt virtuose end-effector and is expressed in the coordinates of the base frame.

Definition at line 81 of file vpVirtuose.cpp.

References vpException::dimensionError, vpException::fatalError, init(), m_virtContext, and vpArray2D< Type >::size().

◆ enableForceFeedback()

void vpVirtuose::enableForceFeedback ( int  enable)

Activate or desactivate force feedback.

Parameters
enable: 1 to activate (system's default value), 0 to desactivate.

Definition at line 106 of file vpVirtuose.cpp.

References vpException::fatalError, init(), and m_virtContext.

◆ getArticularPosition()

vpColVector vpVirtuose::getArticularPosition ( ) const

Return the 6 joint values of the virtuose.

Examples:
testVirtuose.cpp, and testVirtuoseJointLimits.cpp.

Definition at line 119 of file vpVirtuose.cpp.

References vpException::fatalError, m_is_init, and m_virtContext.

◆ getArticularVelocity()

vpColVector vpVirtuose::getArticularVelocity ( ) const

Return the 6 joint velocities of the virtuose.

Definition at line 142 of file vpVirtuose.cpp.

References vpException::fatalError, m_is_init, and m_virtContext.

◆ getAvatarPosition()

vpPoseVector vpVirtuose::getAvatarPosition ( ) const

Return the indexed position of the end-effector, expressed in the coordinates of the environment reference frame. With respect to the function getPosition(), getAvatarPosition() takes into account current offsets (indexing) and motor scale factors.

See also
getPosition(), getPhysicalPosition()

Definition at line 168 of file vpVirtuose.cpp.

References vpPoseVector::buildFrom(), vpException::fatalError, m_is_init, and m_virtContext.

◆ getBaseFrame()

vpPoseVector vpVirtuose::getBaseFrame ( ) const

Return the current position of the base frame with respect to the observation reference frame.

See also
setBaseFrame(), getObservationFrame()

Definition at line 202 of file vpVirtuose.cpp.

References vpPoseVector::buildFrom(), vpException::fatalError, m_is_init, and m_virtContext.

◆ getCommandType()

VirtCommandType vpVirtuose::getCommandType ( ) const

Return the current command type.

Definition at line 233 of file vpVirtuose.cpp.

References vpException::fatalError, m_is_init, and m_virtContext.

◆ getDeadMan()

bool vpVirtuose::getDeadMan ( ) const

Return the status of DeadMan sensor : true if the sensor is ON (a user is holding the handle) and false if the sensor is OFF (no user detected).

Definition at line 252 of file vpVirtuose.cpp.

References vpException::fatalError, m_is_init, and m_virtContext.

◆ getEmergencyStop()

bool vpVirtuose::getEmergencyStop ( ) const

Return the status of the emergency stop button : true if the system is operational (button correctly plugged and not triggered) and false if the system is not operational (button not plugged or triggered).

Examples:
testVirtuose.cpp.

Definition at line 271 of file vpVirtuose.cpp.

References vpException::fatalError, m_is_init, and m_virtContext.

◆ getForce()

vpColVector vpVirtuose::getForce ( ) const

Return the 6-dimension force tensor to be applied to the object attached to the Virtuose, allowing the dynamic simulation of the scene.

Definition at line 289 of file vpVirtuose.cpp.

References vpException::fatalError, m_is_init, and m_virtContext.

◆ getHandler()

VirtContext vpVirtuose::getHandler ( )

Return the handler used to communicate with the device. This function could be used to access to a functionality that is not implemented in vpVirtuose class.

The following sample code shows how to use this function to get the device joint positions. This functionality is already implemented in getArticularPosition().

#include <visp3/robot/vpVirtuose.h>
int main()
{
vpVirtuose virtuose;
virtuose.init();
VirtContext handler = virtuose.getHandler();
float q[6];
if (virtGetArticularPosition(handler, q)) { // Use the handler to access to Haption API directly
std::cout << "Cannot get articular position" << std::endl;
}
std::cout << "Joint position: ";
for (unsigned int i=0; i<6; i++)
std::cout << q[i] << " ";
std::cout << std::endl;
}
See also
getArticularPosition()

Definition at line 339 of file vpVirtuose.cpp.

References m_virtContext.

◆ getObservationFrame()

vpPoseVector vpVirtuose::getObservationFrame ( ) const

Return the cartesian current position of the observation reference frame with respect to the environment reference frame.

See also
setObservationFrame(), getBaseFrame()

Definition at line 347 of file vpVirtuose.cpp.

References vpPoseVector::buildFrom(), vpException::fatalError, m_is_init, and m_virtContext.

◆ getPhysicalPosition()

vpPoseVector vpVirtuose::getPhysicalPosition ( ) const

Return the cartesian physical position of the Virtuose expressed in the coordinates of the base reference frame.

See also
getAvatarPosition(), getPosition()
Examples:
testVirtuoseHapticBox.cpp, and testVirtuosePeriodicFunction.cpp.

Definition at line 379 of file vpVirtuose.cpp.

References vpPoseVector::buildFrom(), vpException::fatalError, m_is_init, and m_virtContext.

◆ getPhysicalVelocity()

vpColVector vpVirtuose::getPhysicalVelocity ( ) const

Return the physical cartesian velocity twist of the Virtuose expressed in the coordinates of the base reference frame.

Returns
A 6-dimension velocity twist with 3 translation velocities and 3 rotation velocities.
See also
getVelocity()
Examples:
testVirtuoseHapticBox.cpp, and testVirtuosePeriodicFunction.cpp.

Definition at line 412 of file vpVirtuose.cpp.

References vpException::fatalError, m_is_init, and m_virtContext.

◆ getPosition()

vpPoseVector vpVirtuose::getPosition ( ) const

Return the cartesian position of the virtuose (or the object attached to it, if any) expressed in the coordinates of the environment reference frame.

See also
getAvatarPosition(), getPhysicalPosition()

Definition at line 435 of file vpVirtuose.cpp.

References vpPoseVector::buildFrom(), vpException::fatalError, m_is_init, and m_virtContext.

◆ getPower()

bool vpVirtuose::getPower ( ) const

Return status of the motors : true if motors are ON, false otherwise.

Definition at line 465 of file vpVirtuose.cpp.

References vpException::fatalError, m_is_init, and m_virtContext.

◆ getVelocity()

vpColVector vpVirtuose::getVelocity ( ) const

Return the cartesian velocity twist of the virtuose (or the object attached to it, if any) expressed in the coordinates of the environment reference frame.

Returns
A 6-dimension velocity twist with 3 translation velocities and 3 rotation velocities.
See also
getPhysicalVelocity()
Examples:
testVirtuoseAfma6.cpp.

Definition at line 482 of file vpVirtuose.cpp.

References vpException::fatalError, m_is_init, and m_virtContext.

◆ init()

◆ setArticularForce()

void vpVirtuose::setArticularForce ( const vpColVector articularForce)

Send a command of articular force to the Virtuose. setArticularForce() only works in mode COMMAND_TYPE_ARTICULAR_IMPEDANCE, to be set with setCommandType().

Parameters
articularForce: Six dimension torque vector.
Examples:
testVirtuoseJointLimits.cpp.

Definition at line 545 of file vpVirtuose.cpp.

References vpException::dimensionError, vpException::fatalError, init(), m_virtContext, and vpArray2D< Type >::size().

◆ setArticularPosition()

void vpVirtuose::setArticularPosition ( const vpColVector articularPosition)

Send a command of articular (joint) position to the virtuose. This function works only in COMMAND_TYPE_ARTICULAR mode, to be set with setCommandType().

Parameters
articularPosition: Six dimension joint position vector.

Definition at line 572 of file vpVirtuose.cpp.

References vpException::dimensionError, vpException::fatalError, init(), m_virtContext, and vpArray2D< Type >::size().

◆ setArticularVelocity()

void vpVirtuose::setArticularVelocity ( const vpColVector articularVelocity)

Send a command of articular (joint) velocity to the virtuose. This function works only in COMMAND_TYPE_ARTICULAR mode, to be set with setCommandType().

Parameters
articularVelocity: Six dimension joint velocity vector.

Definition at line 599 of file vpVirtuose.cpp.

References vpException::dimensionError, vpException::fatalError, init(), m_virtContext, and vpArray2D< Type >::size().

◆ setBaseFrame()

void vpVirtuose::setBaseFrame ( const vpPoseVector position)

Move the base frame with respect to the observation reference frame. It can be called at any time.

Parameters
position: Position of the base frame.
See also
getBaseFrame(), setObservationFrame()

Definition at line 627 of file vpVirtuose.cpp.

References vpPoseVector::extract(), vpException::fatalError, init(), and m_virtContext.

◆ setCommandType()

void vpVirtuose::setCommandType ( const VirtCommandType &  type)

Set the command type.

Parameters
type: Possible values:
  • COMMAND_TYPE_NONE : No possible movement.
  • COMMAND_TYPE_IMPEDANCE : Force/position control.
  • COMMAND_TYPE_VIRTMECH : Position/force control with virtual mechanism.
  • COMMAND_TYPE_ARTICULAR : Joint control.
  • COMMAND_TYPE_ARTICULAR_IMPEDANCE : Force/Position control in the joint space.
Examples:
testVirtuoseAfma6.cpp, and testVirtuoseJointLimits.cpp.

Definition at line 659 of file vpVirtuose.cpp.

References vpException::fatalError, init(), m_typeCommand, and m_virtContext.

◆ setForce()

void vpVirtuose::setForce ( const vpColVector force)

Set the force to be applied by the Virtuose. setForce() only works in COMMAND_TYPE_IMPEDANCE mode, to be set with setCommandType().

Parameters
force: Force vector that represents a dynamic tensor with 6 components.
Examples:
testVirtuoseAfma6.cpp, and testVirtuoseHapticBox.cpp.

Definition at line 679 of file vpVirtuose.cpp.

References vpException::dimensionError, vpException::fatalError, init(), m_virtContext, and vpArray2D< Type >::size().

◆ setForceFactor()

void vpVirtuose::setForceFactor ( const float &  forceFactor)

Set the force scale factor.

Parameters
forceFactor: Force scale factor applied to the force torque tensor set by setForce().

Definition at line 705 of file vpVirtuose.cpp.

References vpException::fatalError, init(), and m_virtContext.

◆ setIndexingMode()

void vpVirtuose::setIndexingMode ( const VirtIndexingType &  type)

Set indexing (offset) mode.

Parameters
type: Possible choices are:
  • INDEXING_ALL : authorize indexing on all movements.
  • INDEXING_TRANS : authorize indexing on translation, i.e., the orientation of the object is always identical to the orientation of the device end-effector.
  • INDEXING_NONE : forbids indexing on all movements.
  • The following values are also implemented: INDEXING_ALL_FORCE_FEEDBACK_INHIBITION, INDEXING_TRANS_FORCE_FEEDBACK_INHIBITION. These values correspond to the same modes listed before, but the force feedback is inhibited during indexing.

Definition at line 729 of file vpVirtuose.cpp.

References vpException::fatalError, init(), m_indexType, and m_virtContext.

◆ setIpAddress()

void vpVirtuose::setIpAddress ( const std::string &  ip)
inline

Set haptic device ip address and port. Default value is "localhost#5000".

Examples:
testVirtuoseHapticBox.cpp, and testVirtuoseJointLimits.cpp.

Definition at line 180 of file vpVirtuose.h.

◆ setObservationFrame()

void vpVirtuose::setObservationFrame ( const vpPoseVector position)

Move the observation frame with respect to the environment reference frame. It can be called at any time.

Parameters
position: Position of the observation frame.
See also
getObservationFrame(), setBaseFrame()

Definition at line 750 of file vpVirtuose.cpp.

References vpPoseVector::extract(), vpException::fatalError, init(), and m_virtContext.

◆ setPeriodicFunction()

void vpVirtuose::setPeriodicFunction ( VirtPeriodicFunction  CallBackVirt)

Register the periodic function. setPeriodicFunction() defines a callback function to be called at a fixed period of time, as timing for the simulation. The callback function is synchronized with the Virtuose controller (messages arrive at very constant time intervals from it) and generates hardware interrupts to be taken into account by the operating system. In practice, this function is much more efficient for timing the simulation than common software timers. This function is started using startPeriodicFunction() and stopped using stopPeriodicFunction().

Parameters
CallBackVirt: Callback function.

Example of the use of the periodic function:

#include <visp3/robot/vpVirtuose.h>
void CallBackVirtuose(VirtContext VC, void* ptr)
{
(void) VC;
vpVirtuose* p_virtuose=(vpVirtuose*)ptr;
vpPoseVector position = p_virtuose->getPosition();
return;
}
int main()
{
vpVirtuose virtuose;
float period = 0.001;
virtuose.setTimeStep(period);
virtuose.setPeriodicFunction(CallBackVirtuose, period, virtuose);
}
See also
startPeriodicFunction(), stopPeriodicFunction()
Examples:
testVirtuoseHapticBox.cpp, testVirtuoseJointLimits.cpp, and testVirtuosePeriodicFunction.cpp.

Definition at line 811 of file vpVirtuose.cpp.

References vpException::fatalError, init(), m_period, and m_virtContext.

◆ setPosition()

void vpVirtuose::setPosition ( vpPoseVector position)

Modify the current value of the control position and send it to the Virtuose.

Parameters
position: Position of the end-effector (or the attached object, if any).

Definition at line 826 of file vpVirtuose.cpp.

References vpPoseVector::extract(), vpException::fatalError, init(), and m_virtContext.

◆ setPowerOff()

void vpVirtuose::setPowerOff ( )

Turn the motor power OFF.

Examples:
testVirtuoseAfma6.cpp, testVirtuoseHapticBox.cpp, and testVirtuoseJointLimits.cpp.

Definition at line 851 of file vpVirtuose.cpp.

References vpException::fatalError, init(), and m_virtContext.

◆ setPowerOn()

void vpVirtuose::setPowerOn ( )

Turn the motor power ON.

Examples:
testVirtuoseAfma6.cpp, testVirtuoseHapticBox.cpp, and testVirtuoseJointLimits.cpp.

Definition at line 864 of file vpVirtuose.cpp.

References vpException::fatalError, init(), and m_virtContext.

◆ setSaturation()

void vpVirtuose::setSaturation ( const float &  forceLimit,
const float &  torqueLimit 
)

Set saturation values of the force feedback

Parameters
forceLimit: Value expressed in N.
torqueLimit: Value expressed in Nm.

Definition at line 879 of file vpVirtuose.cpp.

References vpException::fatalError, init(), and m_virtContext.

◆ setTimeStep()

void vpVirtuose::setTimeStep ( const float &  timeStep)

Set the the simulation time step. The function must be called before the selection of the type of control mode.

Parameters
timeStep: Simulation time step (seconds).
Examples:
testVirtuoseJointLimits.cpp.

Definition at line 894 of file vpVirtuose.cpp.

References vpException::fatalError, init(), m_period, and m_virtContext.

◆ setVelocity()

void vpVirtuose::setVelocity ( vpColVector velocity)

Modify the current value of the control velocity and send it to the Virtuose.

Parameters
velocity: Velocity twist vector, where translations velocities are expressed in m/s and rotation velocities in rad/s.

Definition at line 913 of file vpVirtuose.cpp.

References vpException::dimensionError, vpException::fatalError, init(), m_virtContext, and vpArray2D< Type >::size().

◆ setVelocityFactor()

void vpVirtuose::setVelocityFactor ( const float &  velocityFactor)

Set the speed factor.

Parameters
velocityFactor: Scale factor applied to the velocities set using setVelocity().

Definition at line 937 of file vpVirtuose.cpp.

References vpException::fatalError, init(), and m_virtContext.

◆ setVerbose()

void vpVirtuose::setVerbose ( bool  mode)
inline

Enable/disable verbose mode.

Parameters
mode: true to enable, false to disable verbose.
Examples:
testVirtuoseAfma6.cpp, testVirtuoseHapticBox.cpp, testVirtuoseJointLimits.cpp, and testVirtuosePeriodicFunction.cpp.

Definition at line 194 of file vpVirtuose.h.

◆ startPeriodicFunction()

void vpVirtuose::startPeriodicFunction ( )

◆ stopPeriodicFunction()

void vpVirtuose::stopPeriodicFunction ( )

Member Data Documentation

◆ m_apiMajorVersion

int vpVirtuose::m_apiMajorVersion
protected

Definition at line 203 of file vpVirtuose.h.

Referenced by vpVirtuose().

◆ m_apiMinorVersion

int vpVirtuose::m_apiMinorVersion
protected

Definition at line 204 of file vpVirtuose.h.

Referenced by vpVirtuose().

◆ m_ctrlMajorVersion

int vpVirtuose::m_ctrlMajorVersion
protected

Definition at line 205 of file vpVirtuose.h.

Referenced by init().

◆ m_ctrlMinorVersion

int vpVirtuose::m_ctrlMinorVersion
protected

Definition at line 206 of file vpVirtuose.h.

Referenced by init().

◆ m_indexType

VirtIndexingType vpVirtuose::m_indexType
protected

Definition at line 208 of file vpVirtuose.h.

Referenced by setIndexingMode().

◆ m_ip

std::string vpVirtuose::m_ip
protected

Definition at line 201 of file vpVirtuose.h.

Referenced by init().

◆ m_is_init

◆ m_period

float vpVirtuose::m_period
protected

Definition at line 210 of file vpVirtuose.h.

Referenced by init(), setPeriodicFunction(), and setTimeStep().

◆ m_typeCommand

VirtCommandType vpVirtuose::m_typeCommand
protected

Definition at line 207 of file vpVirtuose.h.

Referenced by init(), and setCommandType().

◆ m_verbose

bool vpVirtuose::m_verbose
protected

Definition at line 202 of file vpVirtuose.h.

Referenced by init().

◆ m_virtContext