iCub-main
|
Class for inverting chain's kinematics based on IpOpt lib. More...
#include <iKinIpOpt.h>
Public Member Functions | |
iKinIpOptMin (iKinChain &c, const unsigned int _ctrlPose, const double tol, const double constr_tol, const int max_iter=IKINCTRL_DISABLED, const unsigned int verbose=0, bool useHessian=true) | |
Constructor. More... | |
void | set_ctrlPose (const unsigned int _ctrlPose) |
Sets the state of Pose control settings. More... | |
unsigned int | get_ctrlPose () const |
Returns the state of Pose control settings. More... | |
bool | set_posePriority (const std::string &priority) |
Sets the Pose priority for weighting more either position or orientation while reaching in full pose. More... | |
std::string | get_posePriority () const |
Returns the Pose priority settings. More... | |
void | attachLIC (iKinLinIneqConstr &lic) |
Attach a iKinLinIneqConstr object in order to impose constraints of the form lB <= C*q <= uB. More... | |
iKinLinIneqConstr & | getLIC () |
Returns a reference to the attached Linear Inequality Constraints object. More... | |
void | specify2ndTaskEndEff (const unsigned int n) |
Selects the End-Effector of the 2nd task by giving the ordinal number n of last joint pointing at it. More... | |
iKinChain & | get2ndTaskChain () |
Retrieves the 2nd task's chain. More... | |
void | setMaxIter (const int max_iter) |
Sets Maximum Iteration. More... | |
int | getMaxIter () const |
Retrieves the current value of Maximum Iteration. More... | |
void | setMaxCpuTime (const double max_cpu_time) |
Sets Maximum CPU seconds. More... | |
double | getMaxCpuTime () const |
Retrieves the current value of Maximum CPU seconds. More... | |
void | setTol (const double tol) |
Sets cost function tolerance. More... | |
double | getTol () const |
Retrieves cost function tolerance. More... | |
void | setConstrTol (const double constr_tol) |
Sets constraints tolerance. More... | |
double | getConstrTol () const |
Retrieves constraints tolerance. More... | |
void | setVerbosity (const unsigned int verbose) |
Sets Verbosity. More... | |
void | setHessianOpt (const bool useHessian) |
Selects whether to rely on exact Hessian computation or enable Quasi-Newton approximation (Hessian is enabled at start-up by default). More... | |
void | setUserScaling (const bool useUserScaling, const double _obj_scaling, const double _x_scaling, const double _g_scaling) |
Enables/disables user scaling factors. More... | |
void | setDerivativeTest (const bool enableTest, const bool enable2ndDer=false) |
Enable\disable derivative test at each call to solve method (disabled at start-up by default). More... | |
void | getBoundsInf (double &lower, double &upper) |
Returns the lower and upper bounds to represent -inf and +inf. More... | |
void | setBoundsInf (const double lower, const double upper) |
Sets the lower and upper bounds to represent -inf and +inf. More... | |
virtual yarp::sig::Vector | solve (const yarp::sig::Vector &q0, yarp::sig::Vector &xd, double weight2ndTask, yarp::sig::Vector &xd_2nd, yarp::sig::Vector &w_2nd, double weight3rdTask, yarp::sig::Vector &qd_3rd, yarp::sig::Vector &w_3rd, int *exit_code=NULL, bool *exhalt=NULL, iKinIterateCallback *iterate=NULL) |
Executes the IpOpt algorithm trying to converge on target. More... | |
virtual yarp::sig::Vector | solve (const yarp::sig::Vector &q0, yarp::sig::Vector &xd, double weight2ndTask, yarp::sig::Vector &xd_2nd, yarp::sig::Vector &w_2nd) |
Executes the IpOpt algorithm trying to converge on target. More... | |
virtual yarp::sig::Vector | solve (const yarp::sig::Vector &q0, yarp::sig::Vector &xd) |
Executes the IpOpt algorithm trying to converge on target. More... | |
virtual | ~iKinIpOptMin () |
Default destructor. More... | |
Protected Attributes | |
void * | App |
iKinChain & | chain |
iKinChain | chain2ndTask |
iKinLinIneqConstr | noLIC |
iKinLinIneqConstr * | pLIC |
unsigned int | ctrlPose |
double | obj_scaling |
double | x_scaling |
double | g_scaling |
double | lowerBoundInf |
double | upperBoundInf |
std::string | posePriority |
Class for inverting chain's kinematics based on IpOpt lib.
Definition at line 197 of file iKinIpOpt.h.
iKinIpOptMin::iKinIpOptMin | ( | iKinChain & | c, |
const unsigned int | _ctrlPose, | ||
const double | tol, | ||
const double | constr_tol, | ||
const int | max_iter = IKINCTRL_DISABLED , |
||
const unsigned int | verbose = 0 , |
||
bool | useHessian = true |
||
) |
Constructor.
c | is the Chain object on which the control operates. Do not change Chain DOF from this point onwards!! |
_ctrlPose | one of the following: IKINCTRL_POSE_FULL => complete pose control. IKINCTRL_POSE_XYZ => translational part of pose controlled. IKINCTRL_POSE_ANG => rotational part of pose controlled. |
tol | cost function tolerance. |
constr_tol | constraints tolerance. |
max_iter | exits if iter>=max_iter (max_iter<0 disables this check, IKINCTRL_DISABLED(==-1) by default). |
verbose | integer which progressively enables different levels of warning messages or status dump. The larger this value the more detailed is the output (0=>off by default). |
useHessian | relies on exact Hessian computation or enable Quasi-Newton approximation (true by default). |
Definition at line 796 of file iKinIpOpt.cpp.
|
virtual |
Default destructor.
Definition at line 1074 of file iKinIpOpt.cpp.
|
inline |
Attach a iKinLinIneqConstr object in order to impose constraints of the form lB <= C*q <= uB.
lic | is the iKinLinIneqConstr object to attach. |
Definition at line 287 of file iKinIpOpt.h.
iKinChain & iKinIpOptMin::get2ndTaskChain | ( | ) |
Retrieves the 2nd task's chain.
Definition at line 873 of file iKinIpOpt.cpp.
|
inline |
Returns the state of Pose control settings.
Definition at line 265 of file iKinIpOpt.h.
|
inline |
Returns the Pose priority settings.
Definition at line 279 of file iKinIpOpt.h.
void iKinIpOptMin::getBoundsInf | ( | double & | lower, |
double & | upper | ||
) |
Returns the lower and upper bounds to represent -inf and +inf.
lower | is a reference to return the lower bound. |
upper | is a reference to return the upper bound. |
Definition at line 1011 of file iKinIpOpt.cpp.
double iKinIpOptMin::getConstrTol | ( | ) | const |
|
inline |
Returns a reference to the attached Linear Inequality Constraints object.
Definition at line 295 of file iKinIpOpt.h.
double iKinIpOptMin::getMaxCpuTime | ( | ) | const |
Retrieves the current value of Maximum CPU seconds.
Definition at line 909 of file iKinIpOpt.cpp.
int iKinIpOptMin::getMaxIter | ( | ) | const |
Retrieves the current value of Maximum Iteration.
Definition at line 892 of file iKinIpOpt.cpp.
double iKinIpOptMin::getTol | ( | ) | const |
void iKinIpOptMin::set_ctrlPose | ( | const unsigned int | _ctrlPose | ) |
Sets the state of Pose control settings.
_ctrlPose | one of the following: IKINCTRL_POSE_FULL => complete pose control. IKINCTRL_POSE_XYZ => translational part of pose controlled. IKINCTRL_POSE_ANG => rotational part of pose controlled. |
Definition at line 833 of file iKinIpOpt.cpp.
bool iKinIpOptMin::set_posePriority | ( | const std::string & | priority | ) |
Sets the Pose priority for weighting more either position or orientation while reaching in full pose.
priority | can be "position" or "orientation". |
Definition at line 843 of file iKinIpOpt.cpp.
void iKinIpOptMin::setBoundsInf | ( | const double | lower, |
const double | upper | ||
) |
Sets the lower and upper bounds to represent -inf and +inf.
lower | is the new lower bound. |
upper | is the new upper bound. |
Definition at line 1019 of file iKinIpOpt.cpp.
void iKinIpOptMin::setConstrTol | ( | const double | constr_tol | ) |
void iKinIpOptMin::setDerivativeTest | ( | const bool | enableTest, |
const bool | enable2ndDer = false |
||
) |
Enable\disable derivative test at each call to solve method (disabled at start-up by default).
Useful to check the derivatives implementation of NLP.
enableTest | true if derivative test shall be enabled. |
enable2ndDer | true to enable second derivative test as well (false by default). |
Definition at line 992 of file iKinIpOpt.cpp.
void iKinIpOptMin::setHessianOpt | ( | const bool | useHessian | ) |
Selects whether to rely on exact Hessian computation or enable Quasi-Newton approximation (Hessian is enabled at start-up by default).
useHessian | true if Hessian computation is enabled. |
Definition at line 961 of file iKinIpOpt.cpp.
void iKinIpOptMin::setMaxCpuTime | ( | const double | max_cpu_time | ) |
Sets Maximum CPU seconds.
max_cpu_time | exits if cpu_time>=max_cpu_time given in seconds. |
Definition at line 901 of file iKinIpOpt.cpp.
void iKinIpOptMin::setMaxIter | ( | const int | max_iter | ) |
Sets Maximum Iteration.
max_iter | exits if iter>=max_iter (max_iter<0 (IKINCTRL_DISABLED) disables this check). |
Definition at line 880 of file iKinIpOpt.cpp.
void iKinIpOptMin::setTol | ( | const double | tol | ) |
Sets cost function tolerance.
tol | tolerance. |
Definition at line 918 of file iKinIpOpt.cpp.
void iKinIpOptMin::setUserScaling | ( | const bool | useUserScaling, |
const double | _obj_scaling, | ||
const double | _x_scaling, | ||
const double | _g_scaling | ||
) |
Enables/disables user scaling factors.
useUserScaling | true if user scaling is enabled. |
obj_scaling | user scaling factor for the objective function. |
x_scaling | user scaling factor for variables. |
g_scaling | user scaling factor for constraints. |
Definition at line 973 of file iKinIpOpt.cpp.
void iKinIpOptMin::setVerbosity | ( | const unsigned int | verbose | ) |
Sets Verbosity.
verbose | is a integer number which progressively enables different levels of warning messages or status dump. The larger this value the more detailed is the output. |
Definition at line 952 of file iKinIpOpt.cpp.
|
virtual |
Executes the IpOpt algorithm trying to converge on target.
q0 | is the vector of initial joint angles values. |
xd | is the End-Effector target Pose to be attained. |
Definition at line 1066 of file iKinIpOpt.cpp.
|
virtual |
Executes the IpOpt algorithm trying to converge on target.
q0 | is the vector of initial joint angles values. |
xd | is the End-Effector target Pose to be attained. |
weight2ndTask | weights the second task (disabled if 0.0). |
xd_2nd | is the second target task traslational Pose to be attained (typically a particular elbow xyz position). |
w_2nd | weights each components of the distance vector xd_2nd-x_2nd. Hence, the follows holds as second task: min 1/2*norm2(((xd_i-x_i)*w_i)_i) |
Definition at line 1056 of file iKinIpOpt.cpp.
|
virtual |
Executes the IpOpt algorithm trying to converge on target.
q0 | is the vector of initial joint angles values. |
xd | is the End-Effector target Pose to be attained. |
weight2ndTask | weights the second task (disabled if 0.0). |
xd_2nd | is the second target task traslational Pose to be attained (typically a particular elbow xyz position). |
w_2nd | weights each components of the distance vector xd_2nd-x_2nd. Hence, the follows holds as second task: min 1/2*norm2(((xd_i-x_i)*w_i)_i) |
weight3rdTask | weights the third task (disabled if 0.0). |
qd_3rd | is the third task joint angles target positions to be attained. |
w_3rd | weights each components of the distance vector qd-q. Hence, the follows holds as third task: min 1/2*norm2(((qd_i-q_i)*w_i)_i) |
exit_code | stores the exit code (NULL by default). Test for one of this: SUCCESS MAXITER_EXCEEDED STOP_AT_TINY_STEP STOP_AT_ACCEPTABLE_POINT LOCAL_INFEASIBILITY USER_REQUESTED_STOP FEASIBLE_POINT_FOUND DIVERGING_ITERATES RESTORATION_FAILURE ERROR_IN_STEP_COMPUTATION INVALID_NUMBER_DETECTED TOO_FEW_DEGREES_OF_FREEDOM INTERNAL_ERROR |
exhalt | checks for an external request to exit (NULL by default). |
iterate | pointer to a callback object (NULL by default). |
Definition at line 1030 of file iKinIpOpt.cpp.
void iKinIpOptMin::specify2ndTaskEndEff | ( | const unsigned int | n | ) |
Selects the End-Effector of the 2nd task by giving the ordinal number n of last joint pointing at it.
n | is the ordinal number of last joint pointing at the 2nd End-Effector. |
Definition at line 856 of file iKinIpOpt.cpp.
|
protected |
Definition at line 208 of file iKinIpOpt.h.
|
protected |
Definition at line 210 of file iKinIpOpt.h.
|
protected |
Definition at line 211 of file iKinIpOpt.h.
|
protected |
Definition at line 216 of file iKinIpOpt.h.
|
protected |
Definition at line 220 of file iKinIpOpt.h.
|
protected |
Definition at line 221 of file iKinIpOpt.h.
|
protected |
Definition at line 213 of file iKinIpOpt.h.
|
protected |
Definition at line 218 of file iKinIpOpt.h.
|
protected |
Definition at line 214 of file iKinIpOpt.h.
|
protected |
Definition at line 223 of file iKinIpOpt.h.
|
protected |
Definition at line 222 of file iKinIpOpt.h.
|
protected |
Definition at line 219 of file iKinIpOpt.h.