About
This Java Applet simulates a MEMS switch using non-linear dynamic models adapted from "Numerical Simulations and Novel Constant-Charge Biasing Method for Capacitive RF MEMS Switch" by JB Lee and Charles L GoldSmith and "Nonlinear Electro-Mechanical Modeling of MEMS Switches" by Jeremy Muldavin and Gabrial Rebeiz.
1.0 Summary
2.0 Variables and Constants
2.1 User Inputs
g, Height of the bridge over the electrode (µm)
w, Width of the bridge (µm)
W, Length of the electrode (µm)
E, Young's Modulus (GPa)
t, Thickness of the bridge (µm)
l, Length of bridge (µm)
v, Poisson Ratio (unitless)
V, Applied Voltage (V)
m, Mass of the membrane (kg)
2.2 Constants
µair = 1.8E10-5 kg/m3
ε0 = 8.85 E-12 F/m
2.3 Calculated Values
k, Spring contant (N/kg)
k = 32Ew(t3)/(l3) * (27/49)
F, Force (N)
F = ε0*w*W*(V2) / 2(g2)
Vp, Pull-down voltage
Vp = Sqrt( 8k*(g3) / 27ε0*W*w )
b, Damping coefficient
b = Sqrt(2)*µair*l*(w / g0-z)3
3.) Switch motion equation
m(d2z/dt2) + b(dz/dt) + kz = F
Where z(t) is the displacement of the bridge over the electrode.
Force (F) is in Newtons, and time (t) is in seconds
4.) Solving the differential equation
The differential equation is solved as follows:
4.1 Finding the roots
Initial conditions: z(0)=0, dz(0)/dt=0, since the bridge is initially not in motion
Divide each side by m: (d2z/dt)+(b/m)(dz/dt)+(k/m)z = F/m
Find the roots using a quadratic -(b/m) ± sqrt( (b/m)2 - 4(k/m) ) / 2
4.2 Homogenous and Particular Solutions
Homogenous Equation: zh(t) = C1 ea1*t + C2 ea1*t
Particular Solution: zp(t) = A, where A is a constant
Thus, z(t) = C1 ea1*t + C2 ea1*t + A
Take derivatives to produce the following three equations:
1.) z(0) = C1+C2+A=0
2.) z'(0) = a1*C1 + a2*C2 = 0
3.) z"(0) = a1*a1*C1 + a2*a2*C2 = F/m (because z"(0)+(b/m)z'(0)+(k/m)z(0)=F/m)
4.3 Equations for Constants
After some algebra:
C2 = (F/m) / (a2*a2-a1*a2)
C1 = (-a2/a1)*C2
A = -C1 - C2
4.4 Final Solution
z(t) = ((-a2/a1)*((F/m) / (a2*a2-a1*a2)))*ea1*t + ((F/m) / (a2*a2-a1*a2))*ea1*t -((-a2/a1)*(F/m) / (a2*a2-a1*a2)) - ((F/m) / (a2*a2-a1*a2))
© The University of Texas at Dallas, 2005 Written by Katie Roberts-Hoffman and Justin Marcus