-
Hello, How is the G-Force calculated ? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Hi |
Beta Was this translation helpful? Give feedback.
-
Hi @cherbin , |
Beta Was this translation helpful? Give feedback.
Hi @cherbin ,
with the LSM6DSL library you can calculate the acceleration and the angular rate. The acceleration and the angular rate are both vector quantities, so you have the measurements on three coordinates (x, y, z). The acceleration is expressed in "milli-g" where g is the gravity acceleration (9,81 m/s^2). So, typically, if the board of the accelerometer is still on a table with the z axis perpendicular to the table, you will get a measurement using the "Get_X_Axes" API like (~+/-0, ~+/-0, ~+/-1000) because the only force that acts on the device is the gravity force and so the acceleration on the 3 axes is ~(0, 0, 9,81m/s^2) = (0, 0, 1g) = (0, 0, 1000 milli-g). Actually, this is t…