summaryrefslogtreecommitdiff
path: root/656/CH1/EX1.8/example1_8.sce
diff options
context:
space:
mode:
Diffstat (limited to '656/CH1/EX1.8/example1_8.sce')
-rw-r--r--656/CH1/EX1.8/example1_8.sce70
1 files changed, 70 insertions, 0 deletions
diff --git a/656/CH1/EX1.8/example1_8.sce b/656/CH1/EX1.8/example1_8.sce
new file mode 100644
index 000000000..92e2c4be5
--- /dev/null
+++ b/656/CH1/EX1.8/example1_8.sce
@@ -0,0 +1,70 @@
+// e be the charge of an electron e=-1.6*10^-19c
+
+// q be the charge, q=n*e where n is the no. of electrons
+
+// t is the time in seconds
+
+//i=q/t
+
+//i=(n*e)/t
+
+e=-1.6*10^-19;
+
+disp("e=")
+disp(e)
+// in coulombs C
+disp("C")
+
+n=10^15;
+
+disp(n)
+
+
+t=1;
+
+disp("t=")
+disp(t)
+// in seconds
+disp("sec")
+
+i=(n*e)/t;
+
+disp("i=")
+disp(i)
+// in amperes A
+disp("A")
+
+
+
+// i current is -0.00016A
+
+// power in watts P=V*I
+
+p=4;
+
+disp("p=")
+disp(p)
+// in watts W
+disp("W")
+
+
+
+v=p/i;
+
+disp("v=")
+disp(v)
+// in Volts V
+disp("V")
+
+
+// voltage needed to accelerate electron beam to 4w is 25000V
+
+V/1000;
+
+disp("V=")
+disp(V/1000)
+disp("KV")
+
+
+// V is 25Kv
+