0.3.0
Loading...
Searching...
No Matches
ImuSimulator.hpp
Go to the documentation of this file.
1// This file is part of INSTINCT, the INS Toolkit for Integrated
2// Navigation Concepts and Training by the Institute of Navigation of
3// the University of Stuttgart, Germany.
4//
5// This Source Code Form is subject to the terms of the Mozilla Public
6// License, v. 2.0. If a copy of the MPL was not distributed with this
7// file, You can obtain one at https://mozilla.org/MPL/2.0/.
8
14
15#pragma once
16
18
19#include "util/Eigen.hpp"
25
27
28#include <array>
29
30namespace NAV
31{
33class ImuSimulator : public Imu
34{
35 public:
39 ~ImuSimulator() override;
41 ImuSimulator(const ImuSimulator&) = delete;
48
50 [[nodiscard]] static std::string typeStatic();
51
53 [[nodiscard]] std::string type() const override;
54
56 [[nodiscard]] static std::string category();
57
60 void guiConfig() override;
61
63 [[nodiscard]] json save() const override;
64
67 void restore(const json& j) override;
68
70 bool resetNode() override;
71
72 private:
73 constexpr static size_t INPUT_PORT_INDEX_CSV = 0;
74 constexpr static size_t OUTPUT_PORT_INDEX_IMU_OBS = 0;
75 constexpr static size_t OUTPUT_PORT_INDEX_POS_VEL_ATT = 1;
76
78 bool initialize() override;
79
81 void deinitialize() override;
82
87 [[nodiscard]] std::shared_ptr<const NodeData> pollImuObs(size_t pinIdx, bool peek);
88
93 [[nodiscard]] std::shared_ptr<const NodeData> pollPosVelAtt(size_t pinIdx, bool peek);
94
99 bool checkStopCondition(double time, const Eigen::Vector3d& lla_position);
100
101 // ###########################################################################################################
102
104 enum class StartTimeSource : uint8_t
105 {
106 CustomTime,
108 };
109
112
115
117 InsTime _startTime{ 2000, 1, 1, 0, 0, 0 };
118
119 // ###########################################################################################################
120
124 double _imuFrequency = 100;
126 double _gnssFrequency = 5;
127
128 // ###########################################################################################################
129
131 enum class TrajectoryType : uint8_t
132 {
133 Fixed,
134 Linear,
135 Circular,
136 Csv,
137 RoseFigure,
138 COUNT,
139 };
143 static const char* to_string(TrajectoryType value);
144
147
153
155 Eigen::Vector3d _fixedTrajectoryStartOrientation = Eigen::Vector3d::Zero();
156
158 Eigen::Vector3d _n_linearTrajectoryStartVelocity = Eigen::Vector3d{ 1, 0, 0 };
159
162
165
167 enum class Direction : uint8_t
168 {
169 CW,
170 CCW,
171 COUNT,
172 };
176 static const char* to_string(Direction value);
177
180
183
186
189
191 double _trajectoryRadius = 50.0;
192
194 int _rosePetNum = 2;
195
198
200 double _roseStepLengthMax = 0.1;
201
203 double _roseSimDuration = 0.0;
204
205 // ###########################################################################################################
206
213
216
218 double _simulationDuration = 5 * 60;
219
221 double _csvDuration = 0;
222
225
228
231 // ###########################################################################################################
232
234 GravitationModel _gravitationModel = GravitationModel::EGM96;
235
238
241
244
247
248 // ###########################################################################################################
249
254 [[nodiscard]] InsTime getTimeFromCsvLine(const CsvData::CsvLine& line, const std::vector<std::string>& description) const;
255
260 [[nodiscard]] Eigen::Vector3d e_getPositionFromCsvLine(const CsvData::CsvLine& line, const std::vector<std::string>& description) const;
261
266 static Eigen::Quaterniond n_getAttitudeQuaternionFromCsvLine_b(const CsvData::CsvLine& line, const std::vector<std::string>& description);
267
269 struct
270 {
271 double sampleInterval = 0.03;
279
283
285 uint64_t _imuInternalUpdateCnt = 0.0;
287 uint64_t _imuUpdateCnt = 0.0;
289 uint64_t _gnssUpdateCnt = 0.0;
290
292 static constexpr double INTERNAL_LINEAR_UPDATE_FREQUENCY = 1000;
293
295 double _imuLastUpdateTime = 0.0;
299 Eigen::Vector3d _lla_imuLastLinearPosition = Eigen::Vector3d::Zero();
301 Eigen::Vector3d _lla_gnssLastLinearPosition = Eigen::Vector3d::Zero();
303 Eigen::Vector3d _p_lastImuAccelerationMeas = Eigen::Vector3d::Ones() * std::nan("");
305 Eigen::Vector3d _p_lastImuAngularRateMeas = Eigen::Vector3d::Ones() * std::nan("");
306
310 [[nodiscard]] std::array<double, 3> calcFlightAngles(double time) const;
311
315 [[nodiscard]] Eigen::Vector3d lla_calcPosition(double time) const;
316
321 [[nodiscard]] Eigen::Vector3d n_calcVelocity(double time, const Eigen::Quaterniond& n_Quat_e) const;
322
329 [[nodiscard]] Eigen::Vector3d n_calcTrajectoryAccel(double time, const Eigen::Quaterniond& n_Quat_e,
330 const Eigen::Vector3d& lla_position, const Eigen::Vector3d& n_velocity) const;
331
337 [[nodiscard]] Eigen::Vector3d n_calcOmega_nb(double time, const Eigen::Vector3d& rollPitchYaw, const Eigen::Quaterniond& n_Quat_b) const;
338};
339
340} // namespace NAV
CSV Data container.
Cubic Spline class.
Vector space operations.
nlohmann::json json
json namespace
Definition FlowManager.hpp:21
Different Gravity Models.
GravitationModel
Available Gravitation Models.
Definition Gravity.hpp:31
Abstract IMU Class.
The class is responsible for all time-related tasks.
Position Input GUI widgets.
Widget to modify time point values.
std::vector< CsvElement > CsvLine
CSV Line with splitted entries.
Definition CsvData.hpp:34
Cubic Spline class.
Definition CubicSpline.hpp:35
Imu Observation Simulator.
Definition ImuSimulator.hpp:34
gui::widgets::PositionWithFrame _startPosition
Definition ImuSimulator.hpp:152
double _roseSimDuration
Simulation duration needed for the rose figure.
Definition ImuSimulator.hpp:203
CubicSpline< long double > pitch
Pitch angle [rad].
Definition ImuSimulator.hpp:276
void restore(const json &j) override
Restores the node from a json object.
ImuSimulator()
Default constructor.
void deinitialize() override
Deinitialize the node.
double sampleInterval
Spline sample interval.
Definition ImuSimulator.hpp:271
TrajectoryType
Types of Trajectories available for simulation.
Definition ImuSimulator.hpp:132
@ Linear
Linear movement with constant velocity.
@ Fixed
Static position without movement.
@ COUNT
Amount of items in the enum.
@ Csv
Get the input from the CsvData pin.
@ RoseFigure
Movement along a mathmatical rose figure.
static std::string typeStatic()
String representation of the Class Type.
uint64_t _imuInternalUpdateCnt
Counter to calculate the internal IMU update time.
Definition ImuSimulator.hpp:285
ImuSimulator(ImuSimulator &&)=delete
Move constructor.
double _trajectoryRotationAngle
In the GUI selected origin angle of the circular trajectory in [rad].
Definition ImuSimulator.hpp:182
CubicSpline< long double > yaw
Yaw angle [rad].
Definition ImuSimulator.hpp:277
CubicSpline< long double > roll
Roll angle [rad].
Definition ImuSimulator.hpp:275
static Eigen::Quaterniond n_getAttitudeQuaternionFromCsvLine_b(const CsvData::CsvLine &line, const std::vector< std::string > &description)
Get the Attitude quaternion n_quat_b from a CSV line.
StartTimeSource
Types where the start time should be pulled from.
Definition ImuSimulator.hpp:105
@ CurrentComputerTime
Gets the current computer time as start time.
@ CustomTime
Custom time selected by the user.
Eigen::Vector3d _lla_imuLastLinearPosition
Last calculated position for the IMU in linear mode for iterative calculations as latitude,...
Definition ImuSimulator.hpp:299
double _circularHarmonicAmplitudeFactor
Harmonic Oscillation Amplitude Factor of the circle radius [-].
Definition ImuSimulator.hpp:164
Eigen::Vector3d e_getPositionFromCsvLine(const CsvData::CsvLine &line, const std::vector< std::string > &description) const
Get the Position from a CSV line.
struct NAV::ImuSimulator::@3 _splines
Assign a variable that holds the Spline information.
static constexpr size_t OUTPUT_PORT_INDEX_POS_VEL_ATT
Flow (PosVelAtt)
Definition ImuSimulator.hpp:75
Direction _trajectoryDirection
In the GUI selected direction of the circular trajectory (used by circular and rose figure)
Definition ImuSimulator.hpp:179
CubicSpline< long double > z
ECEF Z Position [m].
Definition ImuSimulator.hpp:274
double _imuInternalFrequency
Frequency to calculate the delta IMU values in [Hz].
Definition ImuSimulator.hpp:122
double _csvDuration
Duration from the CSV file in [s].
Definition ImuSimulator.hpp:221
double _gnssLastUpdateTime
Last time the GNSS message was calculated in [s].
Definition ImuSimulator.hpp:297
static const char * to_string(TrajectoryType value)
Converts the enum to a string.
json save() const override
Saves the node into a json object.
~ImuSimulator() override
Destructor.
static const char * to_string(Direction value)
Converts the enum to a string.
int _circularHarmonicFrequency
Harmonic Oscillation Frequency on the circular trajectory [cycles/revolution].
Definition ImuSimulator.hpp:161
int _rosePetNum
In the GUI selected numerator of petals (2*k for even k, k for uneven k) of the rose figure.
Definition ImuSimulator.hpp:194
static constexpr size_t OUTPUT_PORT_INDEX_IMU_OBS
Flow (ImuObs)
Definition ImuSimulator.hpp:74
ImuSimulator(const ImuSimulator &)=delete
Copy constructor.
gui::widgets::TimeEditFormat _startTimeEditFormat
Time Format to input the start time with.
Definition ImuSimulator.hpp:114
InsTime _startTime
Global starttime.
Definition ImuSimulator.hpp:117
double _linearTrajectoryDistanceForStop
Distance in [m] to the start position to stop the simulation.
Definition ImuSimulator.hpp:224
Eigen::Vector3d n_calcVelocity(double time, const Eigen::Quaterniond &n_Quat_e) const
Calculates the velocity in local-navigation frame coordinates at the given time depending on the traj...
bool _angularRateEarthRotationEnabled
Apply the Earth rotation rate to the measured angular rates.
Definition ImuSimulator.hpp:243
static std::string category()
String representation of the Class Category.
double _imuLastUpdateTime
Last time the IMU message was calculated in [s].
Definition ImuSimulator.hpp:295
double _trajectoryVerticalSpeed
Vertical speed of the vehicle in the tangential plane in [m/s] (used by circular and rose figure)
Definition ImuSimulator.hpp:188
int _rosePetDenom
In the GUI selected denominator of petals (2*k for even k, k for uneven k) of the rose figure.
Definition ImuSimulator.hpp:197
static constexpr size_t INPUT_PORT_INDEX_CSV
Object (CsvData)
Definition ImuSimulator.hpp:73
std::shared_ptr< const NodeData > pollImuObs(size_t pinIdx, bool peek)
Polls the next simulated data.
TrajectoryType _trajectoryType
Selected trajectory type in the GUI.
Definition ImuSimulator.hpp:146
Direction
Possible directions for the circular trajectory.
Definition ImuSimulator.hpp:168
@ CCW
Counterclockwise.
double _roseTrajectoryCountForStop
Amount of rose figures to simulate before stopping.
Definition ImuSimulator.hpp:230
double _roseStepLengthMax
Maxmimum step length for the spline points for the rose figure [m]. Points will be spaced between [L/...
Definition ImuSimulator.hpp:200
void guiConfig() override
ImGui config window which is shown on double click.
CubicSpline< long double > y
ECEF Y Position [m].
Definition ImuSimulator.hpp:273
bool _centrifgalAccelerationEnabled
Apply the centrifugal acceleration to the measured accelerations.
Definition ImuSimulator.hpp:240
double _simulationDuration
Duration to simulate in [s].
Definition ImuSimulator.hpp:218
bool resetNode() override
Resets the node. Moves the read cursor to the start.
StopCondition
Possible stop conditions for the simulation.
Definition ImuSimulator.hpp:209
@ DistanceOrCirclesOrRoses
Distance for Linear trajectory / Circle count for Circular / Count for rose figure trajectory.
Definition ImuSimulator.hpp:211
@ Duration
Time Duration.
Definition ImuSimulator.hpp:210
std::array< double, 3 > calcFlightAngles(double time) const
Calculates the flight angles (roll, pitch, yaw)
bool initializeSplines()
Initializes the spline values.
double _circularTrajectoryCircleCountForStop
Amount of circles to simulate before stopping.
Definition ImuSimulator.hpp:227
Eigen::Vector3d _n_linearTrajectoryStartVelocity
Start Velocity of the vehicle in local-navigation frame cooridnates in [m/s].
Definition ImuSimulator.hpp:158
uint64_t _imuUpdateCnt
Counter to calculate the IMU update time.
Definition ImuSimulator.hpp:287
std::shared_ptr< const NodeData > pollPosVelAtt(size_t pinIdx, bool peek)
Polls the next simulated data.
Eigen::Vector3d n_calcOmega_nb(double time, const Eigen::Vector3d &rollPitchYaw, const Eigen::Quaterniond &n_Quat_b) const
Calculates ω_nb_n, the turn rate of the body with respect to the navigation system expressed in NED c...
Eigen::Vector3d lla_calcPosition(double time) const
Calculates the position in latLonAlt at the given time depending on the trajectoryType.
bool _angularRateTransportRateEnabled
Apply the transport rate to the measured angular rates.
Definition ImuSimulator.hpp:246
std::string type() const override
String representation of the Class Type.
GravitationModel _gravitationModel
Gravitation model selected in the GUI.
Definition ImuSimulator.hpp:234
ImuSimulator & operator=(const ImuSimulator &)=delete
Copy assignment operator.
bool checkStopCondition(double time, const Eigen::Vector3d &lla_position)
Checks the selected stop condition.
uint64_t _gnssUpdateCnt
Counter to calculate the GNSS update time.
Definition ImuSimulator.hpp:289
static constexpr double INTERNAL_LINEAR_UPDATE_FREQUENCY
Update rate for the internal solution of linear movement in [Hz].
Definition ImuSimulator.hpp:292
Eigen::Vector3d _lla_gnssLastLinearPosition
Last calculated position for the GNSS in linear mode for iterative calculations as latitude,...
Definition ImuSimulator.hpp:301
StopCondition _simulationStopCondition
Condition which has to be met to stop the simulation.
Definition ImuSimulator.hpp:215
ImuSimulator & operator=(ImuSimulator &&)=delete
Move assignment operator.
double _trajectoryRadius
In the GUI selected radius of the circular trajectory (used by circular and rose figure)
Definition ImuSimulator.hpp:191
StartTimeSource _startTimeSource
Source for the start time, selected in the GUI.
Definition ImuSimulator.hpp:111
InsTime getTimeFromCsvLine(const CsvData::CsvLine &line, const std::vector< std::string > &description) const
Get the Time from a CSV line.
Eigen::Vector3d _p_lastImuAccelerationMeas
Last calculated acceleration measurement in platform coordinates [m/s²].
Definition ImuSimulator.hpp:303
double _trajectoryHorizontalSpeed
Horizontal speed of the vehicle in the tangential plane in [m/s] (used by circular and rose figure)
Definition ImuSimulator.hpp:185
bool _coriolisAccelerationEnabled
Apply the coriolis acceleration to the measured accelerations.
Definition ImuSimulator.hpp:237
Eigen::Vector3d _p_lastImuAngularRateMeas
Last calculated angular rate measurement in platform coordinates [rad/s].
Definition ImuSimulator.hpp:305
Eigen::Vector3d n_calcTrajectoryAccel(double time, const Eigen::Quaterniond &n_Quat_e, const Eigen::Vector3d &lla_position, const Eigen::Vector3d &n_velocity) const
Calculates the acceleration in local-navigation frame coordinates at the given time depending on the ...
bool initialize() override
Initialize the node.
CubicSpline< long double > x
ECEF X Position [m].
Definition ImuSimulator.hpp:272
double _gnssFrequency
Frequency to sample the position with in [Hz].
Definition ImuSimulator.hpp:126
double _imuFrequency
Frequency to sample the IMU with in [Hz].
Definition ImuSimulator.hpp:124
Eigen::Vector3d _fixedTrajectoryStartOrientation
Orientation of the vehicle [roll, pitch, yaw] [rad].
Definition ImuSimulator.hpp:155
Abstract IMU Class.
Definition Imu.hpp:24
The class is responsible for all time-related tasks.
Definition InsTime.hpp:668
Position with Reference frame, used for GUI input.
Definition PositionInput.hpp:31
Time Edit format and system.
Definition TimeEdit.hpp:29