Skip to content

Commit aac0760

Browse files
author
vkotaru
committed
Add common QP Eigen interface
1 parent fcacaed commit aac0760

15 files changed

+411
-197
lines changed

.gitmodules

+3
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,6 @@
44
[submodule "third_party/matplotlib-cpp"]
55
path = third_party/matplotlib-cpp
66
url = [email protected]:lava/matplotlib-cpp.git
7+
[submodule "third_party/qpSWIFT"]
8+
path = third_party/qpSWIFT
9+
url = [email protected]:vkotaru/qpSWIFT.git

CMakeLists.txt

+7-2
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,10 @@ set(INCLUDE_DIRS
2525
third_party/matplotlib-cpp # TODO learn why this is working and not include_directories
2626
)
2727

28+
set(QUADPROG_SRCS
29+
src/quadprog/quadprog.cpp
30+
src/quadprog/qpswift_eigen.cpp)
31+
2832
set(CONTROL_SRCS
2933
src/base_control.cpp
3034
src/geometric_control.cpp
@@ -36,12 +40,13 @@ set(CONTROL_SRCS
3640
src/SO3_vblmpc.cpp
3741
src/SE3_vblmpc.cpp
3842
src/SO3_clf.cpp
43+
src/tracking_lmpc.cpp
3944
)
4045

4146
add_subdirectory(third_party)
4247

43-
add_library(nonlinear_controls ${CONTROL_SRCS})
44-
target_link_libraries(nonlinear_controls qpOASES_cpp ${PYTHON_LIBRARIES})
48+
add_library(nonlinear_controls ${CONTROL_SRCS} ${QUADPROG_SRCS})
49+
target_link_libraries(nonlinear_controls qpOASES_cpp qpswift ${PYTHON_LIBRARIES})
4550
target_include_directories(nonlinear_controls PUBLIC . ${INCLUDE_DIRS} ${CMAKE_CURRENT_SOURCE_DIR}/include)
4651

4752
add_executable(test_main tests/test_nlc.cpp)

include/common/qp_interface.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
namespace nonlinear_controls {
77

8-
struct QuadProg {
8+
struct QuadProgData {
99
Eigen::Matrix<double, Eigen::Dynamic, Eigen::Dynamic> H, A, Aeq;
1010
Eigen::Matrix<double, Eigen::Dynamic, 1> f, b, beq;
1111
Eigen::Matrix<double, Eigen::Dynamic, 1> xlb, xub;
@@ -18,7 +18,7 @@ class QPInterface {
1818
public:
1919
QPInterface(/* args */);
2020
~QPInterface();
21-
QuadProg problem_;
21+
QuadProgData problem_;
2222

2323
virtual void setup();
2424
virtual void solve();

include/controls/tracking_lmpc.h

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
//
2+
// Created by kotaru on 5/26/21.
3+
//
4+
5+
#ifndef NONLINEAR_CONTROLS_TRACKING_LMPC_H
6+
#define NONLINEAR_CONTROLS_TRACKING_LMPC_H
7+
8+
#include "deque"
9+
#include "quadprog/qpswift_eigen.h"
10+
#include "vector"
11+
12+
namespace nonlinear_controls {
13+
14+
class TrackingLinearMPC {
15+
protected:
16+
public:
17+
TrackingLinearMPC();
18+
~TrackingLinearMPC();
19+
};
20+
21+
} // namespace nonlinear_controls
22+
23+
#endif // NONLINEAR_CONTROLS_TRACKING_LMPC_H

include/quadprog/qpswift_eigen.h

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
//
2+
// Created by kotaru on 5/26/21.
3+
//
4+
5+
#ifndef NONLINEAR_CONTROLS_QPSWIFT_EIGEN_H
6+
#define NONLINEAR_CONTROLS_QPSWIFT_EIGEN_H
7+
#include "Prime.h"
8+
#include "quadprog/quadprog.h"
9+
#include <iostream>
10+
11+
namespace nonlinear_controls {
12+
13+
class QPSwiftEigen : public QuadProg{
14+
protected:
15+
public:
16+
QPSwiftEigen(const int &n, const int &m, const int &p);
17+
~QPSwiftEigen() = default;
18+
19+
int solve() override;
20+
};
21+
22+
} // namespace nonlinear_controls
23+
24+
#endif // NONLINEAR_CONTROLS_QPSWIFT_EIGEN_H

include/quadprog/quadprog.h

+46
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
//
2+
// Created by kotaru on 5/26/21.
3+
//
4+
5+
#ifndef NONLINEAR_CONTROLS_QUADPROG_H
6+
#define NONLINEAR_CONTROLS_QUADPROG_H
7+
8+
#include <eigen3/Eigen/Dense>
9+
10+
namespace nonlinear_controls {
11+
12+
class QuadProg {
13+
protected:
14+
/// \brief Equality tolerance value
15+
double equality_tol{1e-6};
16+
17+
/// \brief Number of decision variables
18+
int nv;
19+
/// \brief Number of inequality constraints
20+
int ni;
21+
/// \brief Number of equality constraints
22+
int ne;
23+
24+
public:
25+
EIGEN_MAKE_ALIGNED_OPERATOR_NEW
26+
QuadProg(const int &n, const int &m, const int &p);
27+
~QuadProg();
28+
29+
Eigen::Matrix<double, Eigen::Dynamic, Eigen::Dynamic> H;
30+
Eigen::Matrix<double, Eigen::Dynamic, 1> f;
31+
double c{};
32+
Eigen::Matrix<double, Eigen::Dynamic, Eigen::Dynamic> A;
33+
Eigen::Matrix<double, Eigen::Dynamic, 1> b;
34+
Eigen::Matrix<double, Eigen::Dynamic, Eigen::Dynamic> Aeq;
35+
Eigen::Matrix<double, Eigen::Dynamic, 1> beq;
36+
Eigen::Matrix<double, Eigen::Dynamic, 1> lb;
37+
Eigen::Matrix<double, Eigen::Dynamic, 1> ub;
38+
Eigen::Matrix<double, Eigen::Dynamic, 1> x0;
39+
Eigen::Matrix<double, Eigen::Dynamic, 1> xOpt;
40+
41+
virtual int solve();
42+
};
43+
44+
} // namespace nonlinear_controls
45+
46+
#endif // NONLINEAR_CONTROLS_QUADPROG_H

src/qp_interface.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ QPInterface::~QPInterface() {
1111
}
1212

1313
void QPInterface::setup() {
14-
14+
1515
}
1616

1717
void QPInterface::solve() {
18-
18+
1919
}
2020

2121

src/quadprog/qpswift_eigen.cpp

+53
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
//
2+
// Created by kotaru on 5/26/21.
3+
//
4+
#include "quadprog/qpswift_eigen.h"
5+
6+
namespace nonlinear_controls {
7+
8+
QPSwiftEigen::QPSwiftEigen(const int &n, const int &m, const int &p)
9+
: QuadProg(n, m, p) {}
10+
11+
int QPSwiftEigen::solve() {
12+
QP *myQP;
13+
14+
// Setup Function //
15+
myQP = QP_SETUP_dense(this->nv, this->ni, this->ne, this->H.data(),
16+
this->Aeq.data(), this->A.data(), this->f.data(),
17+
this->b.data(), this->beq.data(), NULL);
18+
19+
/****************************************
20+
* After this, you can change the solver settings like this
21+
* myQP->options->maxit = 30 (to change the maximum number of
22+
iterations *to 30; default is 100)
23+
*
24+
* myQP->options->reltol = 1e-3 (to change the Relative tolerance to 1e-3;
25+
*default is 1e-6)
26+
*
27+
* myQP->options->abstol = 1e-3 (to change the Absolute
28+
*tolerance to 1e-3; default is 1e-6)
29+
*
30+
* myQP->options->SIGMA = 50 (to change the SIGMA to 50; default is 100;
31+
*recommended not to change this)
32+
*
33+
*myQP->options->VERBOSE = 0 (displays no output when set to 0; default
34+
is *1 which corresponds to complete verbose mode)
35+
******************************************/
36+
37+
/* The Solution can be found as real pointer in myQP->x;It is an array of
38+
* Dimension n */
39+
40+
qp_int ExitCode = QP_SOLVE(myQP);
41+
42+
std::cout << "Solution" << std::endl;
43+
44+
for (int i = 0; i < 3; ++i) {
45+
this->xOpt(i) = myQP->x[i];
46+
}
47+
std::cout << "xOpt: " << this->xOpt.transpose() << std::endl;
48+
49+
QP_CLEANUP_dense(myQP);
50+
return 1;
51+
}
52+
53+
} // namespace nonlinear_controls

src/quadprog/quadprog.cpp

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
//
2+
// Created by kotaru on 5/26/21.
3+
//
4+
#include "quadprog/quadprog.h"
5+
6+
namespace nonlinear_controls {
7+
8+
QuadProg::QuadProg(const int &n, const int &m, const int &p)
9+
: nv(n), ni(m), ne(p) {
10+
H.resize(nv, nv);
11+
f.resize(nv);
12+
A.resize(ni, nv);
13+
b.resize(ni);
14+
Aeq.resize(ne, nv);
15+
beq.resize(ne);
16+
lb.resize(nv);
17+
ub.resize(nv);
18+
x0.resize(nv);
19+
xOpt.resize(nv);
20+
}
21+
22+
QuadProg::~QuadProg() = default;
23+
24+
int QuadProg::solve() {
25+
throw std::string("Quadprog::Solve is not implemented yet.");
26+
}
27+
28+
} // namespace nonlinear_controls

src/tracking_lmpc.cpp

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
//
2+
// Created by kotaru on 5/26/21.
3+
//
4+
#include "controls/tracking_lmpc.h"
5+
6+
namespace nonlinear_controls {
7+
8+
TrackingLinearMPC::TrackingLinearMPC() {}
9+
10+
TrackingLinearMPC::~TrackingLinearMPC() = default;
11+
12+
} // namespace nonlinear_controls

0 commit comments

Comments
 (0)