3#include "state_representation/space/joint/JointState.hpp"
4#include "state_representation/space/joint/JointPositions.hpp"
5#include "state_representation/space/joint/JointVelocities.hpp"
6#include "state_representation/space/joint/JointTorques.hpp"
20 const Eigen::VectorXd& get_positions()
const =
delete;
21 double get_position(
unsigned int joint_index)
const =
delete;
22 double get_position(
const std::string& joint_name)
const =
delete;
23 void set_positions(
const Eigen::VectorXd& positions) =
delete;
24 void set_positions(
const std::vector<double>& positions) =
delete;
25 void set_position(
double position,
unsigned int joint_index)
const =
delete;
26 void set_position(
double position,
const std::string& joint_name)
const =
delete;
27 const Eigen::VectorXd& get_velocities()
const =
delete;
28 double get_velocity(
unsigned int joint_index)
const =
delete;
29 double get_velocity(
const std::string& joint_name)
const =
delete;
30 void set_velocities(
const Eigen::VectorXd& accelerations) =
delete;
31 void set_velocities(
const std::vector<double>& accelerations) =
delete;
32 void set_velocity(
double velocity,
unsigned int joint_index)
const =
delete;
33 void set_velocity(
double velocity,
const std::string& joint_name)
const =
delete;
34 const Eigen::VectorXd& get_torques()
const =
delete;
35 double get_torque(
unsigned int joint_index)
const =
delete;
36 double get_torque(
const std::string& joint_name)
const =
delete;
37 void set_torques(
const Eigen::VectorXd& torques) =
delete;
38 void set_torques(
const std::vector<double>& torques) =
delete;
39 void set_torque(
double torque,
unsigned int joint_index)
const =
delete;
40 void set_torque(
double torque,
const std::string& joint_name)
const =
delete;
64 explicit JointAccelerations(
const std::string& robot_name,
unsigned int nb_joints = 0);
71 explicit JointAccelerations(
const std::string& robot_name,
const std::vector<std::string>& joint_names);
78 explicit JointAccelerations(
const std::string& robot_name,
const Eigen::VectorXd& accelerations);
87 const std::string& robot_name,
const std::vector<std::string>& joint_names,
const Eigen::VectorXd& accelerations
120 static JointAccelerations Zero(
const std::string& robot_name,
const std::vector<std::string>& joint_names);
149 Eigen::VectorXd
data()
const override;
155 virtual void set_data(
const Eigen::VectorXd&
data)
override;
161 virtual void set_data(
const std::vector<double>&
data)
override;
169 void clamp(
double max_absolute_value,
double noise_ratio = 0.);
177 void clamp(
const Eigen::ArrayXd& max_absolute_value_array,
const Eigen::ArrayXd& noise_ratio_array);
196 const Eigen::ArrayXd& max_absolute_value_array,
const Eigen::ArrayXd& noise_ratio_array
Class to define accelerations of the joints.
JointAccelerations copy() const
Return a copy of the joint accelerations.
JointAccelerations()
Empty constructor.
Eigen::VectorXd data() const override
Returns the accelerations data as an Eigen vector.
JointAccelerations clamped(double max_absolute_value, double noise_ratio=0.) const
Return the acceleration clamped to the values in argument.
JointAccelerations & operator/=(double lambda)
Scale inplace by a scalar.
friend JointAccelerations operator*(double lambda, const JointAccelerations &accelerations)
Scale joint accelerations by a scalar.
virtual void set_data(const Eigen::VectorXd &data) override
Set the accelerations data from an Eigen vector.
static JointAccelerations Zero(const std::string &robot_name, unsigned int nb_joints)
Constructor for zero joint accelerations.
void clamp(double max_absolute_value, double noise_ratio=0.)
Clamp inplace the magnitude of the acceleration to the values in argument.
JointAccelerations operator-() const
Negate joint accelerations.
JointAccelerations operator/(double lambda) const
Scale joint accelerations by a scalar.
JointAccelerations & operator*=(double lambda)
Scale inplace by a scalar.
JointAccelerations & operator=(const JointAccelerations &accelerations)=default
Copy assignment operator that has to be defined to the custom assignment operator.
friend std::ostream & operator<<(std::ostream &os, const JointAccelerations &accelerations)
Overload the ostream operator for printing.
static JointAccelerations Random(const std::string &robot_name, unsigned int nb_joints)
Constructor for random joint accelerations.
Class to define positions of the joints.
Class to define a state in joint space.
void clamp_state_variable(double max_absolute_value, const JointStateVariable &state_variable_type, double noise_ratio=0)
Clamp inplace the magnitude of the a specific joint state variable.
Class to define torques of the joints.
Class to define velocities of the joints.
Core state variables and objects.