Main Page
Related Pages
Modules
Namespaces
Namespace List
Namespace Members
All
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
z
Variables
a
b
c
d
e
f
g
h
i
l
m
n
o
p
q
r
s
t
u
x
y
Typedefs
a
b
c
d
f
h
i
n
o
p
q
r
s
t
u
Enumerations
a
c
d
e
f
i
m
n
p
q
r
s
t
u
Enumerator
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
w
x
z
Classes
Class List
Class Hierarchy
Class Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
Enumerations
a
b
c
d
e
f
g
i
l
m
n
p
r
s
t
u
w
Enumerator
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
x
y
Related Functions
c
e
h
i
m
o
p
q
s
t
v
Files
File List
File Members
All
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions
a
b
c
d
e
f
g
h
i
l
m
n
o
p
q
r
s
t
u
v
x
z
Variables
a
b
c
e
g
i
l
m
n
p
r
s
t
v
x
y
Typedefs
a
b
c
d
e
f
h
i
l
m
n
p
q
r
s
t
u
Enumerator
Macros
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Examples
src
controllers
test
test_pid_controller.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
25
#include <
corbo-controllers/pid_controller.h
>
26
#include <
corbo-systems/output_function_interface.h
>
27
28
#include <
corbo-core/console.h
>
29
#include <thread>
30
31
#include "gtest/gtest.h"
32
33
// The fixture for testing class Foo.
34
class
PidControllerTest
:
public
testing::Test
35
{
36
protected
:
37
// You can do set-up work for each test here.
38
PidControllerTest
() {}
39
// You can do clean-up work that doesn't throw exceptions here.
40
virtual
~PidControllerTest
() {}
41
// If the constructor and destructor are not enough for setting up
42
// and cleaning up each test, you can define the following methods:
43
44
// Code here will be called immediately after the constructor (right
45
// before each test).
46
virtual
void
SetUp
() {
_controller
.
reset
(); }
47
// Code here will be called immediately after each test (right
48
// before the destructor).
49
// virtual void TearDown();
50
51
corbo::PidController
_controller
;
52
};
53
54
// class MockSystemOutput : public corbo::SystemOutputInterface
55
//{
56
// public:
57
// MOCK_METHOD2(output, void(const Eigen::Ref<const StateVector>& x, Eigen::Ref<OutputVector> y));
58
//};
59
// we expect the input values to be x and an output vector of size 1
60
// EXPECT_CALL(*sys_out, output(Eq(x), Property(&Eigen::Ref<OutputVector>::size, Eq(1)))).WillRepeatedly(SetArgReferee<1>(x));
61
62
TEST_F
(
PidControllerTest
, zero_error)
63
{
64
// StateVector x(1);
65
// x[0] = 1;
66
// OutputVector yref(1);
67
// yref[0] = 1;
68
// corbo::StaticReference ref(yref);
69
70
// // setup system output
71
// std::shared_ptr<corbo::FullStateSystemOutput> sys_out = std::make_shared<corbo::FullStateSystemOutput>();
72
// _controller.initialize(1, 1, sys_out);
73
74
// ControlVector u(1);
75
// u[0] = std::numeric_limits<double>::max();
76
// _controller.step(x, ref, corbo::Duration(0), corbo::TimePoint(), u);
77
78
// EXPECT_EQ(u.size(), 1);
79
// EXPECT_NEAR(u[0], 0, 1e-3);
80
}
81
82
int
main
(
int
argc,
char
** argv)
83
{
84
testing::InitGoogleTest(&argc, argv);
85
int
ret
= RUN_ALL_TESTS();
86
87
// std::this_thread::sleep_for(std::chrono::seconds(1));
88
89
//
90
// double test = time.toSec();
91
92
// PRINT_INFO("current time:" << test);
93
94
corbo::PidController::Ptr
pid =
corbo::ControllerFactory::instance
().
create
(
"PidController"
);
95
if
(pid)
96
{
97
PRINT_INFO
(
"yeees"
);
98
}
99
else
100
{
101
PRINT_ERROR
(
"ooooh noooo"
);
102
}
103
104
return
ret
;
105
// return 1;
106
}
107
108
// int main()
109
//{
110
// std::cout << "Hello World!" << std::endl;
111
// return 0;
112
//}
PidControllerTest::PidControllerTest
PidControllerTest()
Definition:
test_pid_controller.cpp:60
output_function_interface.h
PidControllerTest
Definition:
test_pid_controller.cpp:34
TEST_F
TEST_F(PidControllerTest, zero_error)
Definition:
test_pid_controller.cpp:62
console.h
ret
DenseIndex ret
Definition:
level1_impl.h:59
PidControllerTest::~PidControllerTest
virtual ~PidControllerTest()
Definition:
test_pid_controller.cpp:62
corbo::Factory::instance
static Factory & instance()
< Retrieve static instance of the factory
Definition:
factory.h:116
PidControllerTest::SetUp
virtual void SetUp()
Definition:
test_pid_controller.cpp:68
main
int main(int argc, char **argv)
Definition:
test_pid_controller.cpp:82
corbo::ControllerInterface::Ptr
std::shared_ptr< ControllerInterface > Ptr
Definition:
controller_interface.h:105
corbo::PidController::reset
void reset() override
Reset internal controller state and caches.
Definition:
pid_controller.cpp:120
PidControllerTest::_controller
corbo::PidController _controller
Definition:
test_pid_controller.cpp:73
corbo::Factory::create
std::shared_ptr< Derived > create(const std::string &name, bool print_error=true) const
Create a shared instance of the desired object.
Definition:
factory.h:137
pid_controller.h
corbo::PidController
PID controller.
Definition:
pid_controller.h:68
PRINT_INFO
#define PRINT_INFO(msg)
Print msg-stream.
Definition:
console.h:117
PRINT_ERROR
#define PRINT_ERROR(msg)
Print msg-stream as error msg.
Definition:
console.h:173
control_box_rst
Author(s): Christoph Rösmann
autogenerated on Wed Mar 2 2022 00:07:06