IMU Sensor (Acceleration & Gyroscope Values) in NED vs ENU Frames
27 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Ravindra
le 17 Fév 2021
Réponse apportée : Ryan Salvo
le 18 Fév 2021
in Matlab R2020b Sensor Fusion Tracking Toolbox. Considering "Creating an Arc Trajectory" example. NED trajectory and ENU trajectory were created. Additionally imu sensor object was created in NED, ENU frames respectively. The following example is for NED frame
rng('default')
trajectory = waypointTrajectory(constraints(:,2:4),'TimeOfArrival',constraints(:,1), ...
'Orientation',quaternion(constraints(:,5:7),'eulerd','ZYX','frame'),...
'ReferenceFrame','NED');
imu = imuSensor('SampleRate', sampleRate, 'ReferenceFrame', 'NED');
Considering the axis-orientation for NED and ENU Frames (
,
,
)![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/522667/image.png)
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/522652/image.png)
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/522657/image.png)
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/522662/image.png)
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/522667/image.png)
I compared the outputed Accelerometer in NED vs ENU frames respectively and found that only Z-axis matches the above convention. Whereas the X-axis & Y-axis are extacly identical.
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/522672/image.png)
The Gyroscope values in NED vs ENU frame are exactly identical.
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/522677/image.png)
What could be the possible explaination for these outputs?
How can I generate the correct data w.r.t to NED and ENU frames? or It is possible to generate the data into one of the frames and then transform it to the other one?
0 commentaires
Réponse acceptée
Ryan Salvo
le 18 Fév 2021
Hi Ravindra,
If you change the ReferenceFrame property for both the waypointTrajectory and imuSensor, the specified waypoints are also converted. This leads to the same output for the IMU, with only the gravity direction changed. That is why you are seeing the same x and y data for the accelerometer, but a change in the z data, and why the gyroscope has the same x, y, and z data.
As a simple example, if you set two waypoints [0 0 0] and [10 0 0] with ReferenceFrame set to NED, this will generate a trajectory moving North 10 meters. If only the ReferenceFrame property is changed to ENU, then the trajectory generated will be moving East 10 meters.
Thanks,
Ryan
0 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Automated Driving Toolbox dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!