Introduction To Capacitive MEMS Accelerometers and A Case Study On An Elevator

For many, acceleration is a concept that is taught in elementary physics but rarely matures past a discussion of gravity: think of a ball being thrown in the air, a pendulum swinging, or a cart rolling down an incline. In engineering, however, acceleration describes many of the complex phenomena at work in the aerospace, automotive, architectural, and seismological fields - just to name a few. A measurement or approximation of acceleration relates to the forces acting on a system, which can prevent disasters or loss of resources.

Mass-Spring Analogue

Consider the mass-spring system shown in Figure 1. Its differential equation is commonly written as:

mass_spring_diff_eqn.png

where k is the spring constant, m is the mass of the object, and x is displacement. We can say that the second time derivative of the displacement is the acceleration, and we end up with the following:

accel_kx_m.png
Figure 1: Mass-spring system.

Figure 1: Mass-spring system.

Figure 2: Double-walled mass spring system in a moving inertial reference frame. The walls are the primary while the ball moves in opposition to the

Figure 2: Double-walled mass spring system in a moving inertial reference frame. The walls are the primary while the ball moves in opposition to the

Now, imagine the double-walled mass-spring system shown in Figure 2. The only difference between the double-walled case and the simple mass-spring system above is a factor of two, assuming the springs are identical. It is also important to realize that the entire system moves, resulting in opposition of motion from the mass according to Newton's 2nd law, F = ma. Consequently, with prescribed mass and springs, the displacement of the mass is proportional to the accelerations experienced by the system. This problem is the first fundamental step toward creating what is called a capacitive accelerometer.


Capacitive MEMS Accelerometer

A micro-electromechanical system (MEMS) is a classification that describes microscopic devices made of both electrical and mechanical parts. A MEMS accelerometer is a device that measures acceleration by utilizing the techniques described above, but on a micro scale. The mass-spring system is the mechanical side of the MEMS device, and capacitance is the electrical portion. The capacitance of a parallel-plate capacitor is:

capacitor_parallel_plate.png

where C is capacitance, Q is charge, V is voltage, A is the area of the plate, ε is called the permitivity (constant), and d is the distance between the plates. Capcitance plays a key role in calculating the acceleration from the mass-spring system by measuring a change in voltage as the distance between two capacitive plates is changed.

Figure 3: Basic diagram of a parallel plate capacitor.

Figure 3: Basic diagram of a parallel plate capacitor.


Imagine now a mass-spring system with the adjustments shown in the following image:

Figure 4: Simplified MEMS accelerometer in equilibrium.

Figure 4: Simplified MEMS accelerometer in equilibrium.

The figure above shows the complete analogy for a MEMS accelerometer. There are two voltages, one applied, V0, and one measured, Vx. In this diagram, the applied voltages create two capacitors each with a separation distance, d. It is pertinent also to remember the motion of the entire system, where the walls and plates of the capacitors with applied voltages move as a whole, and the mass (with its appending arm) is free to move in opposition to the motion. This results in a change in capacitance through change of separation distance between plates.

One method for balancing the system above is to break down the electrical contributions using conservation of charge:

Furthermore, when the system is set into motion, the capacitances change and the setup can be explicitly modeled as follows:

Figure 5: Fully labeled diagram of a simplified MEMS accelerometer.

Figure 5: Fully labeled diagram of a simplified MEMS accelerometer.

In Figure 5, the conservation of charge can be written as:

Again, the variable of interest is the displacement between the capacitors - this distance acts as the indicator of force applied to the mass, which will ultimately bestow information about the acceleration of the system. Utilizing the equations for capacitance, we have:

And finally, we can solve the above algebraic equation for the displacement of the mass:

At this point, it is easy to see how we can relate the knowns in the system to find acceleration:

final_mems_accel_eqn.png

This simple result endows us with immense power. The above equation states that with prescribed values of spring constants, movable mass, capacitor equilibrium separation distance, and an applied voltage, we can determine the acceleration of the system just by reading a voltage. This is an impressive conclusion despite the complex nature of the problem. It is a basis for understanding the capacitive MEMS accelerometers that are used and still built today, and it is also the foundation for the sensor used in the experiment below, which utilizes a capacitive MEMS accelerometer to measure forces and distance traveled in a commercial elevator.

 

[For more in-depth analysis and investigation of MEMS accelerometers see here, here, and here].


Accelerometer on an Elevator

On an elevator, weight fluctuates based on the acceleration of the vessel. If an elevator is accelerating upward, then a mass's weight will increase, and the opposite is true for a descending elevator. With all of this in mind, along with the knowledge of how a MEMS accelerometer works, I decided to verify Newton's 2nd law and the theory of gravitation (on earth's surface, at least). I used an ADXL345 (datasheet here, get one here), and interfaced with an Arduino and an iPhone using the HM-10 module and Bluetooth. That way, I was able to telemeter the acceleration data at roughly 17 samples/second in real time. The ADXL345 is capable of 100 samples/sec, so there was no worry of accuracy in time. However, the accuracy of the sensor itself proved to be less than ideal, along with positioning inaccuracies, as well as other shortcomings. These, however, will be discussed during the analysis section. The goal for this project was to analyze the maximum accelerations of a specific elevator (located in the Marshak Science Building on the campus of the City College of New York, see Figure 7), and examine the accuracy of numerical integration of a MEMS accelerometer to approximate distance traveled. 

Figure 6: An elevator moving upward will increase a person's weight, while the opposite is true for a downward moving elevator.

Figure 6: An elevator moving upward will increase a person's weight, while the opposite is true for a downward moving elevator.

Products from our shop useful for replicating this experiment:

Raspberry Pi 4 Model B Computer
sold out
Quick View
Raspberry Pi 4 Model B Computer
$55.00
Add To Cart
Maker Portal Arduino Uno Rev3 Board
sold out
Quick View
 

 

Methodology

The procedure for this experiment is simple: 

  1. Take continuous measurements of acceleration on an elevator

  2. Ensure that multiple distances are measured - this means taking multiple rides in the elevator to different floors

  3. Normalize the accelerometer data to account for gravity

  4. Integrate the acceleration data over time to approximate instantaneous velocity

  5. Integrate velocity data and sum to approximate displacement

  6. Find maximum acceleration to investigate maximum forces

An example acceleration plot after application of a simple running mean filter is shown in Figure 8.

Figure 7: Marshak Science building where the acceleration measurements were made on several of the elevators. Image courtesy of www.rsdeng.com

Figure 7: Marshak Science building where the acceleration measurements were made on several of the elevators. Image courtesy of www.rsdeng.com

6_to_11

figure 8: Plot of Acceleration for one instance where 5 floors were traversed by an elevator. It is important to realize that the elevator accelerates in one direction to move upward or downward, and decelerates to stop and let people disembark. The above data was smoothed to eliminate erroneous data points. The accelerometer data was also normalized by gravity to account for only the acceleration of the body in its own frame of reference.

After acquiring the acceleration data and smoothing it with a simple high frequency filter, the effects of gravity need to be eliminated to ensure we only integrate the moving acceleration of the body (elevator). After approximating the influence of gravity from the steady-state of the sensor, I numerically integrated the discrete data using the following trapezoidal method:

trapz_rule.png

After carrying out the above integration, we now have instantaneous velocity data and with instantaneous velocity, displacement can easily be calculated. At this point, the velocity can be integrated via the same procedure, or the displacement can be obtained from the sum of the velocities multiplied by the time spacing between them - either one should be a good approximation for this particular case.

displacement_from_vel.png

Finally, we arrive at a displacement. I carried out several of these calculations of displacement for multiple traverses between building floors in the Marshak Science Building (Figure 7), and I arrived at a plot of floors traversed vs. distance calculated, as shown in Figure 9. 

Figure 9: Plot of number of floors traversed vs. distance calculated. This plot contains the raw approximations with the linear fit. It can be seen that the approximate height of each floor is about 11 ft. This makes perfect sense considering the he…

Figure 9: Plot of number of floors traversed vs. distance calculated. This plot contains the raw approximations with the linear fit. It can be seen that the approximate height of each floor is about 11 ft. This makes perfect sense considering the height of the building (166 ft). There are 13 regular floors, plug roughly two others to get to the roof. Therefore, if the building is approximated to be 15 stories, then 10.91 x 15 = 163.7 ft. This appears to be a decent approximation, considering the level of accuracy of the sensor.

The fit shown in Figure 9 concludes that the height of each floor is approximately 10.9 ft. This appears to be a fairly accurate prediction of the height of this particular building, due to the prior knowledge of its height (166 ft). There are 13 stories in the building accessible by elevator, and 2 additional floors to arrive at the roof. Therefore, the approximate building height from these calculations heeds 163.7 ft, which is within 2% of the actual building height.

Additionally, I was interested in the forces exerted during a trip on the elevator. The observed maximum acceleration was on average 1.1 m/s2 higher than gravity, and ocassionally approached 2.6 m/s2 above gravity. This indicates that on any given elevator ride (in this particular elevator), a person's weight can shift by 10%, and can ocassionally flutuate by 25%! As an example, an 175 lbs person who steps on one of the elevators will weigh 194 lbs on the way up, and 159 lbs on the way down. If it is unclear why, I included the simple weight balance with the added acceleration below:

Where a' is the fluctuating acceleration after gravity is subtracted. The negative sign states that if the fluctuating acceleration is greater than zero, then the body is traveling in the same direction as gravity, resulting in a net loss of weight; and for a negative fluctuating acceleration, the body is traveling against gravity, resulting in a net gain of weight. This is a fascinating study, and one that I'm sure manufacturers have to account for in fabrication of elevators and other transportation machinery. The experiments using an Arduino board, Bluetooth communication, Python for post-processing, and some elementary physics proved to be highly accurate and elucidatory for a classic physics and engineering problem that many of us take for granted.


Python Code

POLYFIT FOR FLOOR HEIGHT LINEAR REGRESSION

# polyfitting for floor height
#
#
import matplotlib as mpl
mpl.use('tkagg')
import numpy as np
import matplotlib.pyplot as plt
##plt.style.use('ggplot')
plt.style.use('ggplot')




bldg_floors = [2,5,6,8,9,11,13]
bldg_heights = [23,53,69,80,104,116,145]

poly_fit = np.polyfit(bldg_floors,bldg_heights,1)
poly_map = np.poly1d(poly_fit)


plt1,ax = plt.subplots(1,figsize=(9,6),dpi=100)

#plt.figure(figsize=(9,6),dpi=100)

ax.plot(bldg_floors,bldg_heights,label='Data')
plt.plot(bldg_floors,poly_map(bldg_floors),label='Fit')
plt.title('Fitting Distance Calculated by Accelerometer With Floor Height',fontsize=18)
plt.xlabel('Number of Floors Traveled',fontsize=18)
plt.ylabel('Distance Calculated [ft]',fontsize=18)
plt.legend()


txtstr_fit = 'Fit Params: \n$m = %0.2f$\n$y_0 = %0.2f$'%(poly_fit[0],poly_fit[1])
props = dict(boxstyle = 'round',facecolor='wheat',alpha=0.5,ec='k')
plt.text(0.35,0.8,txtstr_fit,transform=ax.transAxes,fontsize=12,\
         verticalalignment='top',bbox=props)

plt.show()
plt.savefig('bldg_fitting.png',transparent=True,dpi=400)

IMPORTING, FILTERING, AND PLOTTING CSV ACCELEROMETER DATA

import plotly.plotly as py
import plotly.graph_objs as go
import csv
import numpy as np
from scipy import integrate
from datetime import datetime

dat_val = np.array([])
time_vec = np.array([])
file_name = 'G_to_13th_fl'
with open(file_name+'.csv') as csvfile:
    reader = csv.DictReader(csvfile)
    for row in reader:
        (t_hr,t_min) = (row['Date']).split('+')
        t_sec = datetime.strptime(t_hr,'%Y-%m-%d %H:%M:%S ')
        time_vec = np.append(time_vec,t_sec)
        dat_val = np.append(dat_val,float(row['Data Reading']))
##        time_mon.append(int(row['Interval_End_Time'][0]))
##        time_vec.append(int(t_hr))

n_start =0
n_end = 404#len(dat_val)
interv_to_int = (np.linspace(n_start,n_end,n_end-n_start+1,dtype=int))
interv_to_int = interv_to_int[0:len(interv_to_int)-2]

dat_val = dat_val[interv_to_int]-np.mean(dat_val[0:15])

conv_size = 10

dat_val = np.convolve(dat_val,np.ones(conv_size),'same')/conv_size


##dat_val = dat_val+9.95
time_vec = time_vec[interv_to_int]
delta_x = np.mean(np.diff(time_vec))
dx = delta_x.total_seconds()
vel = integrate.cumtrapz(dat_val)*dx
dist_approx = np.trapz(vel)*dx
print("Approximate Distance Traveled: "+str(dist_approx*3.28084))

##time_vec = datetime.strptime(time_vec,'%Y-%m-%d %H:%M:%S')
time_vec = np.linspace(0,len(time_vec),len(time_vec)+1)
time_vec = time_vec[0:len(time_vec)-1]
trace = go.Scatter(
    x = time_vec,
    y = dat_val,
    name = 'Plot of Ground to 13th Floor Acceleration in y-direction',
    mode='lines+markers'
    )

layout = go.Layout(
    paper_bgcolor = 'rgb(255,255,255)',
    plot_bgcolor='rgb(229,229,229)',
    width = 800,
    title = 'Plot of Ground to 13th Floor Acceleration in y-direction',
    titlefont = dict(
        size=24
        ),
    xaxis = dict(
        title='Time',
        titlefont=dict(
            size = 18,
            color='rgb(0.1,0.1,0.1)'
            ),
        gridcolor='rgb(255,255,255)',
        zeroline = False,
##        range=[min(dat_val),max(dat_val)]
        ),
    yaxis = dict(
        title='Acceleration [m/s^2]',
        titlefont=dict(
            size = 18,
            color='rgb(0.1,0.1,0.1)'
            ),
        tickfont = dict(
            color = 'rgb(0.1,0.1,0.1)'
            ),
        gridcolor='rgb(255,255,255)',
        zeroline = False
        )
    )


fig = go.Figure(data=[trace],layout=layout)
plot_url = py.plot(fig,filename=file_name,auto_open=False)
Citation for This Page:

See More in Raspberry Pi and Inertial Measurement Units:


Related Products:

Raspberry Pi 4 Model B Computer
sold out
Quick View
Raspberry Pi 4 Model B Computer
$55.00
Add To Cart