$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 
24 #include <fable/json.hpp> // for to_json
25 
26 namespace cloe {
27 
28 struct Wheel {
30  double rotation{0.0};
31 
33  double velocity{0.0};
34 
36  double spring_compression{0.0};
37 
38  friend void to_json(fable::Json& j, const Wheel& w) {
39  j = fable::Json{
40  {"rotation", w.rotation},
41  {"velocity", w.velocity},
42  {"spring_compression", w.spring_compression},
43  };
44  }
45 };
46 
47 } // namespace cloe
nlohmann::json Json
Definition: fable_fwd.hpp:35
Definition: wheel.hpp:28
double spring_compression
Compression of the spring in [m].
Definition: wheel.hpp:36
double rotation
Rotational angle of wheel around y-axis in [rad].
Definition: wheel.hpp:30
double velocity
Translative velocity of the wheel in [m/s].
Definition: wheel.hpp:33