53 [[nodiscard]] std::string
type()
const override;
87 [[nodiscard]] std::shared_ptr<const NodeData>
pollImuObs(
size_t pinIdx,
bool peek);
93 [[nodiscard]] std::shared_ptr<const NodeData>
pollPosVelAtt(
size_t pinIdx,
bool peek);
321 [[nodiscard]] Eigen::Vector3d
n_calcVelocity(
double time,
const Eigen::Quaterniond& n_Quat_e)
const;
330 const Eigen::Vector3d& lla_position,
const Eigen::Vector3d& n_velocity)
const;
337 [[nodiscard]] Eigen::Vector3d
n_calcOmega_nb(
double time,
const Eigen::Vector3d& rollPitchYaw,
const Eigen::Quaterniond& n_Quat_b)
const;
nlohmann::json json
json namespace
Definition FlowManager.hpp:21
Different Gravity Models.
GravitationModel
Available Gravitation Models.
Definition Gravity.hpp:31
The class is responsible for all time-related tasks.
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
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