blob: bb4fded9f17e9f077e88155b193e9926a8a5128d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
//Example 3.11.
clc
q=1.6*10^-19
m=9.1*10^-31
Va=800
l=2
d=0.5
L=20
D=1
format(9)
v=sqrt(2*q*Va/m)
disp(v,"(i) The velocity of the beam, v(m/s)= sqrt(2qVa / m) =")
Vd=(D*2*d*Va)/(l*L)
disp("(ii) The deflection of the beam, D = lLVd / 2dVa")
disp(Vd,"Therefore, the voltage that must be applied to the plates, Vd(V) =")
|