|
void | guiConfig () override |
| ImGui config window which is shown on double click.
|
|
| ImuSimulator () |
| Default constructor.
|
|
| ImuSimulator (const ImuSimulator &)=delete |
| Copy constructor.
|
|
| ImuSimulator (ImuSimulator &&)=delete |
| Move constructor.
|
|
ImuSimulator & | operator= (const ImuSimulator &)=delete |
| Copy assignment operator.
|
|
ImuSimulator & | operator= (ImuSimulator &&)=delete |
| Move assignment operator.
|
|
bool | resetNode () override |
| Resets the node. Moves the read cursor to the start.
|
|
void | restore (const json &j) override |
| Restores the node from a json object.
|
|
json | save () const override |
| Saves the node into a json object.
|
|
std::string | type () const override |
| String representation of the Class Type.
|
|
| ~ImuSimulator () override |
| Destructor.
|
|
| Imu (const Imu &)=delete |
| Copy constructor.
|
|
| Imu (Imu &&)=delete |
| Move constructor.
|
|
const ImuPos & | imuPosition () const |
| Position and rotation information for conversion from platform to body frame.
|
|
Imu & | operator= (const Imu &)=delete |
| Copy assignment operator.
|
|
Imu & | operator= (Imu &&)=delete |
| Move assignment operator.
|
|
| ~Imu () override=default |
| Destructor.
|
|
virtual void | afterCreateLink (OutputPin &startPin, InputPin &endPin) |
| Called when a new link was established.
|
|
virtual void | afterDeleteLink (OutputPin &startPin, InputPin &endPin) |
| Called when a link was deleted.
|
|
bool | doDeinitialize (bool wait=false) |
| Asks the node worker to deinitialize the node.
|
|
bool | doDisable (bool wait=false) |
| Asks the node worker to disable the node.
|
|
bool | doEnable () |
| Enable the node.
|
|
bool | doInitialize (bool wait=false) |
| Asks the node worker to initialize the node.
|
|
bool | doReinitialize (bool wait=false) |
| Asks the node worker to reinitialize the node.
|
|
virtual void | flush () |
| Function called by the flow executer after finishing to flush out remaining data.
|
|
template<typename T > |
std::optional< InputPin::IncomingLink::ValueWrapper< T > > | getInputValue (size_t portIndex) const |
| Get Input Value connected on the pin. Only const data types.
|
|
Mode | getMode () const |
| Get the current mode of the node.
|
|
const ImVec2 & | getSize () const |
| Get the size of the node.
|
|
State | getState () const |
| Get the current state of the node.
|
|
InputPin & | inputPinFromId (ax::NodeEditor::PinId pinId) |
| Returns the pin with the given id.
|
|
size_t | inputPinIndexFromId (ax::NodeEditor::PinId pinId) const |
| Returns the index of the pin.
|
|
void | invokeCallbacks (size_t portIndex, const std::shared_ptr< const NodeData > &data) |
| Calls all registered callbacks on the specified output port.
|
|
bool | isDisabled () const |
| Checks if the node is disabled.
|
|
bool | isInitialized () const |
| Checks if the node is initialized.
|
|
bool | isOnlyRealtime () const |
| Checks if the node is only working in real time (sensors, network interfaces, ...)
|
|
bool | isTransient () const |
| Checks if the node is changing its state currently.
|
|
std::string | nameId () const |
| Node name and id.
|
|
| Node (const Node &)=delete |
| Copy constructor.
|
|
| Node (Node &&)=delete |
| Move constructor.
|
|
| Node (std::string name) |
| Constructor.
|
|
void | notifyOutputValueChanged (size_t pinIdx, const InsTime &insTime, const std::scoped_lock< std::mutex > &guard) |
| Notifies connected nodes about the change.
|
|
virtual bool | onCreateLink (OutputPin &startPin, InputPin &endPin) |
| Called when a new link is to be established.
|
|
virtual void | onDeleteLink (OutputPin &startPin, InputPin &endPin) |
| Called when a link is to be deleted.
|
|
Node & | operator= (const Node &)=delete |
| Copy assignment operator.
|
|
Node & | operator= (Node &&)=delete |
| Move assignment operator.
|
|
OutputPin & | outputPinFromId (ax::NodeEditor::PinId pinId) |
| Returns the pin with the given id.
|
|
size_t | outputPinIndexFromId (ax::NodeEditor::PinId pinId) const |
| Returns the index of the pin.
|
|
void | releaseInputValue (size_t portIndex) |
| Unblocks the connected node. Has to be called when the input value should be released and getInputValue was not called.
|
|
std::scoped_lock< std::mutex > | requestOutputValueLock (size_t pinIdx) |
| Blocks the thread till the output values was read by all connected nodes.
|
|
virtual void | restoreAtferLink (const json &j) |
| Restores link related properties of the node from a json object.
|
|
void | wakeWorker () |
| Wakes the worker thread.
|
|
virtual | ~Node () |
| Destructor.
|
|
|
std::array< double, 3 > | calcFlightAngles (double time) const |
| Calculates the flight angles (roll, pitch, yaw)
|
|
bool | checkStopCondition (double time, const Eigen::Vector3d &lla_position) |
| Checks the selected stop condition.
|
|
void | deinitialize () override |
| Deinitialize the node.
|
|
Eigen::Vector3d | e_getPositionFromCsvLine (const CsvData::CsvLine &line, const std::vector< std::string > &description) const |
| Get the Position from a CSV line.
|
|
InsTime | getTimeFromCsvLine (const CsvData::CsvLine &line, const std::vector< std::string > &description) const |
| Get the Time from a CSV line.
|
|
bool | initialize () override |
| Initialize the node.
|
|
bool | initializeSplines () |
| Initializes the spline values.
|
|
Eigen::Vector3d | lla_calcPosition (double time) const |
| Calculates the position in latLonAlt at the given time depending on the trajectoryType.
|
|
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 coordinates.
|
|
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 trajectoryType.
|
|
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 trajectoryType.
|
|
std::shared_ptr< const NodeData > | pollImuObs (size_t pinIdx, bool peek) |
| Polls the next simulated data.
|
|
std::shared_ptr< const NodeData > | pollPosVelAtt (size_t pinIdx, bool peek) |
| Polls the next simulated data.
|
|
|
bool | _angularRateEarthRotationEnabled |
| Apply the Earth rotation rate to the measured angular rates.
|
|
bool | _angularRateTransportRateEnabled |
| Apply the transport rate to the measured angular rates.
|
|
bool | _centrifgalAccelerationEnabled |
| Apply the centrifugal acceleration to the measured accelerations.
|
|
double | _circularHarmonicAmplitudeFactor |
| Harmonic Oscillation Amplitude Factor of the circle radius [-].
|
|
int | _circularHarmonicFrequency |
| Harmonic Oscillation Frequency on the circular trajectory [cycles/revolution].
|
|
double | _circularTrajectoryCircleCountForStop |
| Amount of circles to simulate before stopping.
|
|
bool | _coriolisAccelerationEnabled |
| Apply the coriolis acceleration to the measured accelerations.
|
|
double | _csvDuration |
| Duration from the CSV file in [s].
|
|
Eigen::Vector3d | _fixedTrajectoryStartOrientation |
| Orientation of the vehicle [roll, pitch, yaw] [rad].
|
|
double | _gnssFrequency |
| Frequency to sample the position with in [Hz].
|
|
double | _gnssLastUpdateTime |
| Last time the GNSS message was calculated in [s].
|
|
uint64_t | _gnssUpdateCnt |
| Counter to calculate the GNSS update time.
|
|
GravitationModel | _gravitationModel |
| Gravitation model selected in the GUI.
|
|
double | _imuFrequency |
| Frequency to sample the IMU with in [Hz].
|
|
double | _imuInternalFrequency |
| Frequency to calculate the delta IMU values in [Hz].
|
|
uint64_t | _imuInternalUpdateCnt |
| Counter to calculate the internal IMU update time.
|
|
double | _imuLastUpdateTime |
| Last time the IMU message was calculated in [s].
|
|
uint64_t | _imuUpdateCnt |
| Counter to calculate the IMU update time.
|
|
double | _linearTrajectoryDistanceForStop |
| Distance in [m] to the start position to stop the simulation.
|
|
Eigen::Vector3d | _lla_gnssLastLinearPosition |
| Last calculated position for the GNSS in linear mode for iterative calculations as latitude, longitude, altitude [rad, rad, m].
|
|
Eigen::Vector3d | _lla_imuLastLinearPosition |
| Last calculated position for the IMU in linear mode for iterative calculations as latitude, longitude, altitude [rad, rad, m].
|
|
Eigen::Vector3d | _n_linearTrajectoryStartVelocity |
| Start Velocity of the vehicle in local-navigation frame cooridnates in [m/s].
|
|
Eigen::Vector3d | _p_lastImuAccelerationMeas |
| Last calculated acceleration measurement in platform coordinates [m/s²].
|
|
Eigen::Vector3d | _p_lastImuAngularRateMeas |
| Last calculated angular rate measurement in platform coordinates [rad/s].
|
|
int | _rosePetDenom |
| In the GUI selected denominator of petals (2*k for even k, k for uneven k) of the rose figure.
|
|
int | _rosePetNum |
| In the GUI selected numerator of petals (2*k for even k, k for uneven k) of the rose figure.
|
|
double | _roseSimDuration |
| Simulation duration needed for the rose figure.
|
|
double | _roseStepLengthMax |
| Maxmimum step length for the spline points for the rose figure [m]. Points will be spaced between [L/3 L].
|
|
double | _roseTrajectoryCountForStop |
| Amount of rose figures to simulate before stopping.
|
|
double | _simulationDuration |
| Duration to simulate in [s].
|
|
StopCondition | _simulationStopCondition |
| Condition which has to be met to stop the simulation.
|
|
struct { | |
|
CubicSpline< long double > pitch | |
| Pitch angle [rad].
|
|
CubicSpline< long double > roll | |
| Roll angle [rad].
|
|
double sampleInterval | |
| Spline sample interval.
|
|
CubicSpline< long double > x | |
| ECEF X Position [m].
|
|
CubicSpline< long double > y | |
| ECEF Y Position [m].
|
|
CubicSpline< long double > yaw | |
| Yaw angle [rad].
|
|
CubicSpline< long double > z | |
| ECEF Z Position [m].
|
|
} | _splines | |
| Assign a variable that holds the Spline information.
|
|
gui::widgets::PositionWithFrame | _startPosition |
|
InsTime | _startTime |
| Global starttime.
|
|
gui::widgets::TimeEditFormat | _startTimeEditFormat |
| Time Format to input the start time with.
|
|
StartTimeSource | _startTimeSource |
| Source for the start time, selected in the GUI.
|
|
Direction | _trajectoryDirection |
| In the GUI selected direction of the circular trajectory (used by circular and rose figure)
|
|
double | _trajectoryHorizontalSpeed |
| Horizontal speed of the vehicle in the tangential plane in [m/s] (used by circular and rose figure)
|
|
double | _trajectoryRadius |
| In the GUI selected radius of the circular trajectory (used by circular and rose figure)
|
|
double | _trajectoryRotationAngle |
| In the GUI selected origin angle of the circular trajectory in [rad].
|
|
TrajectoryType | _trajectoryType |
| Selected trajectory type in the GUI.
|
|
double | _trajectoryVerticalSpeed |
| Vertical speed of the vehicle in the tangential plane in [m/s] (used by circular and rose figure)
|
|
Imu Observation Simulator.