robotoc
robotoc - efficient ROBOT Optimal Control solvers
Loading...
Searching...
No Matches
terminal_state_equation.hpp
Go to the documentation of this file.
1#ifndef ROBOTOC_TERMINAL_STATE_EQUATION_HPP_
2#define ROBOTOC_TERMINAL_STATE_EQUATION_HPP_
3
4#include "Eigen/Core"
5
14
15
16namespace robotoc {
17
28 const Eigen::VectorXd& q_prev,
29 const SplitSolution& s,
31 SplitKKTMatrix& kkt_matrix,
32 SplitKKTResidual& kkt_residual);
33
41 SplitKKTMatrix& kkt_matrix);
42
43} // namespace robotoc
44
45#endif // ROBOTOC_TERMINAL_STATE_EQUATION_HPP_
Dynamics and kinematics model of robots. Wraps pinocchio::Model and pinocchio::Data....
Definition: robot.hpp:32
The KKT matrix split into a time stage.
Definition: split_kkt_matrix.hpp:18
KKT residual split into each time stage.
Definition: split_kkt_residual.hpp:18
Solution to the optimal control problem split into a time stage.
Definition: split_solution.hpp:20
Data for the state equations.
Definition: state_equation_data.hpp:16
Definition: constraint_component_base.hpp:17
void linearizeTerminalStateEquation(const Robot &robot, const Eigen::VectorXd &q_prev, const SplitSolution &s, StateEquationData &data, SplitKKTMatrix &kkt_matrix, SplitKKTResidual &kkt_residual)
Linearizes the state equation at the teminal stage.
void correctLinearizeTerminalStateEquation(StateEquationData &data, SplitKKTMatrix &kkt_matrix)
Corrects the linearized state equation using the Jacobian of the Lie group.