summaryrefslogtreecommitdiff
path: root/2534/CH3/EX3.3
diff options
context:
space:
mode:
Diffstat (limited to '2534/CH3/EX3.3')
-rwxr-xr-x2534/CH3/EX3.3/Ex3_3.sce12
1 files changed, 12 insertions, 0 deletions
diff --git a/2534/CH3/EX3.3/Ex3_3.sce b/2534/CH3/EX3.3/Ex3_3.sce
new file mode 100755
index 000000000..067064cf4
--- /dev/null
+++ b/2534/CH3/EX3.3/Ex3_3.sce
@@ -0,0 +1,12 @@
+//Ex3_3
+clc
+v = 5*10^6
+e = -1.6*10^-19
+B = 20*10^-6
+F = e*v*B
+disp("v = "+string(v)+"m/s")//velocity of electron
+disp("e = "+string(e)+"C")//charge of electron
+disp("B = "+string(B)+"Wb/m-sq")//magnetic field
+disp("F = e(VxB) = e*v*B = "+string(F)+"N")//force on the electron due to field
+
+