Struct arci::JointVelocityLimiter
source · pub struct JointVelocityLimiter<C>where
C: JointTrajectoryClient,{ /* private fields */ }
Expand description
JointVelocityLimiter limits the duration to make all joints velocities lower than the given velocities limits at each TrajectoryPoint.
It does not change TrajectoryPoint velocities. The duration for a TrajectoryPoint[i] is set to
duration[i] = max(limited_duration_i[j=0], ..., limited_duration_i[j=J-1], input_duration[i])
where
j : joint_index (0 <= j < J),
limited_duration_i[j] =
abs(TrajectoryPoint[i].positions[j] - TrajectoryPoint[i-1].positions[j]) / velocity_limits[j]
Implementations§
source§impl<C> JointVelocityLimiter<C>where
C: JointTrajectoryClient,
impl<C> JointVelocityLimiter<C>where
C: JointTrajectoryClient,
Trait Implementations§
source§impl<C> Debug for JointVelocityLimiter<C>where
C: JointTrajectoryClient + Debug,
impl<C> Debug for JointVelocityLimiter<C>where
C: JointTrajectoryClient + Debug,
source§impl<C> JointTrajectoryClient for JointVelocityLimiter<C>where
C: JointTrajectoryClient,
impl<C> JointTrajectoryClient for JointVelocityLimiter<C>where
C: JointTrajectoryClient,
source§fn joint_names(&self) -> Vec<String>
fn joint_names(&self) -> Vec<String>
Returns names of joints that this client handles.
source§fn current_joint_positions(&self) -> Result<Vec<f64>, Error>
fn current_joint_positions(&self) -> Result<Vec<f64>, Error>
Returns the current joint positions.
source§fn send_joint_positions(
&self,
positions: Vec<f64>,
duration: Duration,
) -> Result<WaitFuture, Error>
fn send_joint_positions( &self, positions: Vec<f64>, duration: Duration, ) -> Result<WaitFuture, Error>
Send the specified joint positions and returns a future that waits until
complete the move joints. Read more
source§fn send_joint_trajectory(
&self,
trajectory: Vec<TrajectoryPoint>,
) -> Result<WaitFuture, Error>
fn send_joint_trajectory( &self, trajectory: Vec<TrajectoryPoint>, ) -> Result<WaitFuture, Error>
Send the specified joint trajectory and returns a future that waits until
complete the move joints. Read more
Auto Trait Implementations§
impl<C> Freeze for JointVelocityLimiter<C>where
C: Freeze,
impl<C> RefUnwindSafe for JointVelocityLimiter<C>where
C: RefUnwindSafe,
impl<C> Send for JointVelocityLimiter<C>
impl<C> Sync for JointVelocityLimiter<C>
impl<C> Unpin for JointVelocityLimiter<C>where
C: Unpin,
impl<C> UnwindSafe for JointVelocityLimiter<C>where
C: UnwindSafe,
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
source§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self
from the equivalent element of its
superset. Read moresource§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
self
is actually part of its subset T
(and can be converted to it).source§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
Use with care! Same as
self.to_subset
but without any property checks. Always succeeds.source§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self
to the equivalent element of its superset.