$darkmode
wheel.hpp
Go to the documentation of this file.
1 /*
2  * Copyright 2022 Robert Bosch GmbH
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  *
16  * SPDX-License-Identifier: Apache-2.0
17  */
22 #pragma once
23 #ifndef CLOE_COMPONENT_WHEEL_HPP_
24 #define CLOE_COMPONENT_WHEEL_HPP_
25 
26 #include <fable/json.hpp> // for to_json
27 
28 namespace cloe {
29 
30 struct Wheel {
32  double rotation{0.0};
33 
35  double velocity{0.0};
36 
38  double spring_compression{0.0};
39 
40  friend void to_json(Json& j, const Wheel& w) {
41  j = Json{
42  {"rotation", w.rotation},
43  {"velocity", w.velocity},
44  {"spring_compression", w.spring_compression},
45  };
46  }
47 };
48 
49 } // namespace cloe
50 
51 #endif // CLOE_COMPONENT_WHEEL_HPP_
double spring_compression
Compression of the spring in [m].
Definition: wheel.hpp:38
double rotation
Rotational angle of wheel around y-axis in [rad].
Definition: wheel.hpp:32
Definition: coordinator.hpp:36
Definition: wheel.hpp:30
double velocity
Translative velocity of the wheel in [m/s].
Definition: wheel.hpp:35