cancel
Showing results for 
Search instead for 
Did you mean: 

orientation and movement values in LIS2DW12 accelerometer

Msaga.1
Associate II

Hello We are working with accelerometer LIS2DW12.

we did tests on the different movements of the accelerometer and the graphs we see (the graphs were made with the x_physical y_physical z_physical values). However we see graphs that are not as we expected;

when we look at a 'free fall' movement we expect to see all axis intersect in value 0, however it is not the case.

For example:

  1. 0693W00000BbSy9QAF.jpgin this image we see free fall when the orientation bit raised on zh (meaning the fall was on zl), but I do not see intersection of all axis ( Z is not even close) and I do not see intersection on 0 - x&y intersect on ~300 . Please explain this.
  2. 0693W00000BbT1GQAV.jpghere we do see intersection , however it is around value ~360 and not 0. Please explain why we see it.

More images :

0693W00000BbT2OQAV.jpghere we see that the intersection is ~200

0693W00000BbT2iQAF.jpghere we see that the intersection is ~250 (at 31)

0693W00000BbT2nQAF.jpghere we don't see intersection and the values are not as expected from free fall.

Please help me understand our results.

25 REPLIES 25
Eleon BORLINI
ST Employee

Hi @Msaga.1​ ,

it could be that the accelerometer has a residual offset, and I'm referring to the plots where you are seeing the intersection among the axes.

I suggest you to first check this residual in a steady condition, i.e. with the device is flat on the ground, with z axis pointing to the sky. In particular, you can tune the X_OFS_USR (3Ch), Y_OFS_USR and (3Dh), Z_OFS_USR (3Eh) registers (see datasheet p. 55) to minimize the offset value.

By the way, is the device in free fall condition during all the plotted acquisition, of just in a small timeframe? Which is the time scale along x axis (if seconds, it's difficult to capture a (fast) free fall in rms value)?

I suggest you in any case alto to check the C example for the free fall app on Github --> lis2dw12_free_fall.c, especially for a double check of the device initialization:

 /* Configure power mode */
  lis2dw12_power_mode_set(&dev_ctx, LIS2DW12_HIGH_PERFORMANCE_LOW_NOISE);
  /* Set Output Data Rate */
  lis2dw12_data_rate_set(&dev_ctx, LIS2DW12_XL_ODR_200Hz);
  /* Set full scale to 2 g */
  lis2dw12_full_scale_set(&dev_ctx, LIS2DW12_2g);
  /* Configure Free Fall duration and samples count */
  lis2dw12_ff_dur_set(&dev_ctx, 0x06);
  lis2dw12_ff_threshold_set(&dev_ctx, LIS2DW12_FF_TSH_10LSb_FS2g);
  /* Enable free fall interrupt */
  lis2dw12_pin_int1_route_get(&dev_ctx, &int_route.ctrl4_int1_pad_ctrl);
  int_route.ctrl4_int1_pad_ctrl.int1_ff = PROPERTY_ENABLE;
  lis2dw12_pin_int1_route_set(&dev_ctx, &int_route.ctrl4_int1_pad_ctrl);
  /* Set latched interrupt */
  lis2dw12_int_notification_set(&dev_ctx, LIS2DW12_INT_LATCHED);

-Eleon

Msaga.1
Associate II

Hi @Eleon BORLINI​ , thank you for your answer,

About checking  this residual in a steady condition I am attaching the graphs for the steady condition:

0693W00000BbdNvQAJ.pngthis is an example on one orientation bit, on all orientation we get the same graph +-g on the appropriate axis. (dont pay any attention to the right graph)

The device in free fall condition during a small timeframe, we want to see the movement graph if we 'drop it'.

What is the example you said will do? what do I expect to see?

thank you

Hi @Msaga.1​ ,

since the free fall event is very fast, in order to see the movement graph you have to acquire -for example- at 200Hz as shown in the C example above.

Which data rate speed are you using so far?

By the way, in the stationary graph I see there is a residual offset especially on Y axis, that you can compensate writing the average value in the Y_OFS_USR and (3Dh) register.

The example above shows you how to configure the embedded free fall detection feature in the device, showing you especially how to characterize the free fall event in terms of duration (06h value = 6 * 1/ODR) and threshold (3h = 10LSB), in the FREE_FALL (36h) register.

Are you exploiting this feature?

-Eleon

Msaga.1
Associate II

Hi @Eleon BORLINI​ ,

The free fall even takes less than 1 sec. so how can I get the values from the fall to be more accurate?

(I am not *yet* exploring the feature you suggested, but will it work if the fall is less then 1 sec?)

Regarding the tuning the registers -

If I will tune them on one surface , will it be accurate on other surface as well? (on the same position)

@Eleon BORLINI​ 

another question - if I tune the registers while it is on zh orientation ( so the values should show 0,0,1g)

what will happen if I will put the device on xl orientation , will I see -1g,0,0 ?

The question is will tuning on one orientation , effect the values we get the different orientation?

Eleon BORLINI
ST Employee

HI @Msaga.1​ ,

>> so how can I get the values from the fall to be more accurate?

You can set the duration in the FREE_FALL (36h) register (plus FF_DUR5 bit in WAKE_UP_DUR (35h) register) so that it is below 1s and, to increase the accuracy, you should increase ODR.

>> If I will tune them on one surface , will it be accurate on other surface as well?

You have first to be sure that your reference surface is flat, so that it is orthogonal to the Earth center. In this way, you will have an absolute reference in your device.

>> what will happen if I will put the device on xl orientation , will I see -1g,0,0?

if you also tuned the x and y axis towards 0g when you were in z position, yes, you will see -1g, 0g, 0g.

-Eleon

Hi @Eleon BORLINI​ ,

>>if you also tuned the x and y axis towards 0g when you were in z position, yes, you will see -1g, 0g, 0g.

so just to double check - if I am on zh orientation, and I tune the values towards x=0g y=0g z=1g, I wil still be able to get 0g on z-axis if I were to be on xl orientation?

HI @Msaga.1​ ,

yes, you will,

-Eleon

Msaga.1
Associate II

Thank you @Eleon BORLINI​ ,

A few more questions:

1) Regarding the free fall initialization , I read page 6 , and the init for LIS2DW12 said " write_reg(0x36, 0x1B); /* FREE_FALL(36h): Set Free-fall duration and threshold */"

I wonder why? the device should recognize any movement regardless of threshold.

I made a graph were I caught free fall movement without this threshold.

0693W00000Bc9K0QAJ.png aside from the offset, that can be fixed, why the file above specifies to write to FREE_FALL?

2) >>You can set the duration in the FREE_FALL (36h) register (plus FF_DUR5 bit in WAKE_UP_DUR (35h) register) so that it is below 1s and, to increase the accuracy, you should increase ODR.

I want to keep the ODR = 12.5 Hz and get the same graph for 0.5 m fall (according to my calculations I should see at least 3 points of (0,0,0),

However I do not see it.

So I am activating the low noise filter (LIS2DW12_CTRL6, 0x00) on 100 HZ , should it be the same value on 12.5 Hz? or perhaps 0x04?

(on ODR = 12.4 Hz I am using (LIS2DW12_CTRL6, 0x04) for activate low noise filtet I am wondering if it is correct or should it be 0x00)

3) Why do I see an offset in the first place? I understand that nothing is perfect but as you can see from the image, offset of 150-200 is large (in my opinion).