Franky 0.12.0
A High-Level Motion API for Franka
Loading...
Searching...
No Matches
Public Member Functions | Public Attributes | Friends | List of all members
franky::DynamicsLimit< LimitType > Class Template Reference

A template class representing a dynamics limit with a maximum value. More...

#include <dynamics_limit.hpp>

Public Member Functions

 DynamicsLimit (const std::string &desc, const LimitType &max_val, const LimitType &default_val, const std::shared_ptr< std::mutex > &write_mutex, const std::function< bool()> &can_write_condition)
 Constructor for DynamicsLimit.
 
template<typename AlternativeType >
void setFrom (const AlternativeType &value)
 Set a new value for the limit with a different type.
 
void set (const LimitType &value)
 Set a new value for the limit.
 
LimitType get () const
 Get the current value of the limit.
 
void setFrom (const Array< 7 > &value)
 

Public Attributes

const LimitType max
 The maximum value this limit can take as defined by Franka.
 
const std::string desc
 Description of this limit.
 

Friends

template<typename LimitTypeStream >
std::ostream & operator<< (std::ostream &os, const DynamicsLimit< LimitTypeStream > &dynamics_limit)
 

Detailed Description

template<typename LimitType>
class franky::DynamicsLimit< LimitType >

A template class representing a dynamics limit with a maximum value.

This class provides functionality to store and manage a dynamic limit, including setting and getting the value of the limit while ensuring that it cannot be written while the robot is in control.

Template Parameters
LimitTypeThe type of the limit value (e.g., double, int).

Constructor & Destructor Documentation

◆ DynamicsLimit()

template<typename LimitType >
franky::DynamicsLimit< LimitType >::DynamicsLimit ( const std::string &  desc,
const LimitType max_val,
const LimitType default_val,
const std::shared_ptr< std::mutex > &  write_mutex,
const std::function< bool()> &  can_write_condition 
)
inline

Constructor for DynamicsLimit.

Initializes a new instance of the DynamicsLimit class with the provided values.

Parameters
descA string description of the limit (e.g., "joint velocity").
max_valThe maximum allowable value for this limit.
default_valThe default value for this limit.
write_mutexA shared pointer to the mutex used for synchronizing writes to the limit.
can_write_conditionA function that returns true if the limit can be written to.

Member Function Documentation

◆ get()

template<typename LimitType >
LimitType franky::DynamicsLimit< LimitType >::get ( ) const
inline

Get the current value of the limit.

Retrieves the current value stored in this limit.

Returns
The current value of the limit.

◆ set()

template<typename LimitType >
void franky::DynamicsLimit< LimitType >::set ( const LimitType value)
inline

Set a new value for the limit.

Sets the value of the limit, but only if the robot is not in control. Throws a runtime_error if the condition for writing to the limit is not met.

Parameters
valueThe new value to set for the limit.
Exceptions
std::runtime_errorif the limit cannot be set due to the robot being in control.

◆ setFrom() [1/2]

Set a new value for the limit with a different type.

This version of set allows setting the value with a different type, with appropriate type conversions.

Template Parameters
AlternativeTypeThe type of the alternative value to set.
Parameters
valueThe new value to set for the limit.

◆ setFrom() [2/2]

void franky::DynamicsLimit< Vector7d >::setFrom< Array< 7 > > ( const Array< 7 > &  value)

Friends And Related Symbol Documentation

◆ operator<<

template<typename LimitType >
std::ostream & operator<< ( std::ostream &  os,
const DynamicsLimit< LimitTypeStream > &  dynamics_limit 
)
friend

Member Data Documentation

◆ desc

template<typename LimitType >
const std::string franky::DynamicsLimit< LimitType >::desc

Description of this limit.

This string provides a human-readable description of the limit, such as "joint velocity" or "maximum load".

◆ max

The maximum value this limit can take as defined by Franka.

This value represents the maximum boundary for the limit, beyond which the value cannot be set.


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