test_controllability.cpp
Go to the documentation of this file.
1 /*********************************************************************
2  *
3  * Software License Agreement
4  *
5  * Copyright (c) 2020,
6  * TU Dortmund - Institute of Control Theory and Systems Engineering.
7  * All rights reserved.
8  *
9  * This program is free software: you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation, either version 3 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program. If not, see <https://www.gnu.org/licenses/>.
21  *
22  * Authors: Christoph Rösmann
23  *********************************************************************/
24 
26 
27 #include <corbo-core/macros.h>
28 
29 #include "gtest/gtest.h"
30 
32 
33 class TestControllability : public testing::Test
34 {
35  protected:
36  // You can do set-up work for each test here.
38  // You can do clean-up work that doesn't throw exceptions here.
39  virtual ~TestControllability() {}
40  // If the constructor and destructor are not enough for setting up
41  // and cleaning up each test, you can define the following methods:
42 
43  // Code here will be called immediately after the constructor (right
44  // before each test).
45  // virtual void SetUp() {}
46  // Code here will be called immediately after each test (right
47  // before the destructor).
48  // virtual void TearDown();
49 };
50 
51 TEST_F(TestControllability, controllable_lti_system)
52 {
53  Eigen::Matrix2d A;
54  A << 0, 1, 0, 0;
55 
56  Eigen::Vector2d B;
57  B << 0, 1;
58 
59  EXPECT_TRUE(Controllability::checkLinearTimeInvariantSystem(A, B));
60 }
61 
62 TEST_F(TestControllability, uncontrollable_lti_system)
63 {
64  Eigen::Matrix4d A;
65  A.setZero();
66  A(0, 1) = 1;
67  A(2, 3) = 1;
68 
69  Eigen::Vector4d B;
70  B << 0, 1, 0, -1;
71 
72  int ctrl_rank = 1000;
73  EXPECT_FALSE(Controllability::checkLinearTimeInvariantSystem(A, B, &ctrl_rank));
74  EXPECT_EQ(ctrl_rank, 2);
75 }
76 
77 TEST_F(TestControllability, uncontrollable_lti_system2)
78 {
79  Eigen::Matrix2d A;
80  A << 1, 1, 4, -2;
81 
82  Eigen::Matrix2d B;
83  B << 1, -1, 1, -1;
84 
85  EXPECT_FALSE(Controllability::checkLinearTimeInvariantSystem(A, B));
86 }
macros.h
TEST_F
TEST_F(TestControllability, controllable_lti_system)
Definition: test_controllability.cpp:51
B
MatrixType B(b, *n, *nrhs, *ldb)
TestControllability
Definition: test_controllability.cpp:33
corbo::Controllability
Methods for checking controllability of dynamic systems.
Definition: controllability.h:68
controllability.h
TestControllability::TestControllability
TestControllability()
Definition: test_controllability.cpp:37
TestControllability::~TestControllability
virtual ~TestControllability()
Definition: test_controllability.cpp:39
A
MatrixType A(a, *n, *n, *lda)


control_box_rst
Author(s): Christoph Rösmann
autogenerated on Wed Mar 2 2022 00:07:06