summaryrefslogtreecommitdiff
path: root/2534/CH3/EX3.13/Ex3_13.sce
blob: cbf60b857377a2e86cdd9e9ae7c5e988ead74786 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
//Ex3_13
clc
e = -1.6*10^-19
m = 9.1*10^-31
Va = 400
v = (abs(2*e*Va/m))^.5
disp("e = "+string(e)+"C")//electron charge
disp("m = "+string(m)+"Kg")//mass of electron
disp("Va = "+string(Va)+"V")//anode voltage
disp("v = (2*e*Va/m)^.5 = "+string(v)+"m/s")//formula used to calculate velocity of electrons
//as electron traces a circular path, radius of circular path
H = 47.75
micro_not = 4*%pi*10^-7
B = H*micro_not
disp("B = "+string(B)+"Wb/m-sq")
r = (v/(e/m)/B)
disp("r = (v/(e/m))/B = "+string(r)+"m")

//  NOTE : Question is incompletely solved in the textbook