summaryrefslogtreecommitdiff
path: root/991/CH3/EX3.10/Example3_10.sce
blob: afa4d9b94853b02c0b280a96a5ce5a0cc0d5b3a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
//Example 3.10
clc
Va=600
l=3.5
d=0.8
L=20
Vd=20
format(9)
q=1.6*10^-19
m=9.1*10^-31
v=sqrt(2*q*Va/m)
disp(v,"(i) The velocity of the electron, v(m/s)= ")
format(10)
a=(q/m)*(Vd/d)
a1=a*10^2
disp("(ii) ma = qE")
disp(a1,"Thus, acceleration, a(m/s)= qE / m = (q/m)(Vd/d) =")
format(5)
D=(l*L*Vd)/(2*Va*d)
disp(D,"(iii) The deflection on the screen, D(cm)= ILVd / 2Vad =")
format(7)
Ds=D/Vd
disp(Ds, "(iv) Deflection sensitivity(cm/V)= D / Vd =")