diff options
Diffstat (limited to '273/CH4/EX4.2/ex4_2.sce')
-rwxr-xr-x | 273/CH4/EX4.2/ex4_2.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/273/CH4/EX4.2/ex4_2.sce b/273/CH4/EX4.2/ex4_2.sce new file mode 100755 index 000000000..322577ac2 --- /dev/null +++ b/273/CH4/EX4.2/ex4_2.sce @@ -0,0 +1,14 @@ +clc;clear;
+//Example 4.2
+//electrostatic deflection
+//given values
+V1=2000;//in volts,potential difference through which electron beam is accelerated
+l=.04;//length of rectangular plates
+d=.015;//distance between plates
+V=50;//potential difference between plates
+//calculations
+alpha=atan(l*V/(2*d*V1))*(180/%pi);//in degrees
+disp(alpha,'angle of deflection of electron beam is:');
+v=5.93*10^5*sqrt(V1);//horizontal velocity in m/s
+t=l/v;//in s
+disp(t,'transit time through electric field is:')
\ No newline at end of file |