test_observability.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"
31 
32 class TestObservability : public testing::Test
33 {
34  protected:
35  // You can do set-up work for each test here.
37  // You can do clean-up work that doesn't throw exceptions here.
38  virtual ~TestObservability() {}
39  // If the constructor and destructor are not enough for setting up
40  // and cleaning up each test, you can define the following methods:
41 
42  // Code here will be called immediately after the constructor (right
43  // before each test).
44  // virtual void SetUp() {}
45  // Code here will be called immediately after each test (right
46  // before the destructor).
47  // virtual void TearDown();
48 };
49 
50 TEST_F(TestObservability, observable_lti_system)
51 {
52  Eigen::Matrix2d A;
53  A << 1, 1, 4, -2;
54 
55  Eigen::Matrix2d C;
56  C << 1, 0, 0, 1;
57 
58  EXPECT_TRUE(Observability::checkLinearTimeInvariantSystem(A, C));
59 }
60 
61 TEST_F(TestObservability, observable_lti_system2)
62 {
63  Eigen::Matrix2d A;
64  A << 1, 2, 3, 4;
65 
66  Eigen::RowVector2d C;
67  C << 1, 2;
68 
69  EXPECT_TRUE(Observability::checkLinearTimeInvariantSystem(A, C));
70 }
71 
72 TEST_F(TestObservability, unobservable_lti_system)
73 {
74  Eigen::Matrix2d A;
75  A << 1, -2, -3, -4;
76 
77  Eigen::RowVector2d C;
78  C << 1, 2;
79 
80  int obs_rank = 100;
81  EXPECT_FALSE(Observability::checkLinearTimeInvariantSystem(A, C, &obs_rank));
82  EXPECT_EQ(obs_rank, 1);
83 }
84 
85 TEST_F(TestObservability, unobservable_lti_system2)
86 {
87  Eigen::Matrix4d A;
88  A.setZero();
89  A(0, 1) = 1;
90  A(2, 3) = 1;
91 
92  Eigen::RowVector4d C;
93  C << 0, 1, 0, -1;
94 
95  int obs_rank = 100;
96  EXPECT_FALSE(Observability::checkLinearTimeInvariantSystem(A, C, &obs_rank));
97  EXPECT_EQ(obs_rank, 1);
98 }
TestObservability::TestObservability
TestObservability()
Definition: test_observability.cpp:36
macros.h
TestObservability::~TestObservability
virtual ~TestObservability()
Definition: test_observability.cpp:38
corbo::Observability
Methods for checking observability of dynamic systems.
Definition: observability.h:66
TestObservability
Definition: test_observability.cpp:32
TEST_F
TEST_F(TestObservability, observable_lti_system)
Definition: test_observability.cpp:50
A
MatrixType A(a, *n, *n, *lda)
observability.h


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