summaryrefslogtreecommitdiff
path: root/3636/CH1/EX1.6/Ex1_6.sce
diff options
context:
space:
mode:
Diffstat (limited to '3636/CH1/EX1.6/Ex1_6.sce')
-rw-r--r--3636/CH1/EX1.6/Ex1_6.sce11
1 files changed, 11 insertions, 0 deletions
diff --git a/3636/CH1/EX1.6/Ex1_6.sce b/3636/CH1/EX1.6/Ex1_6.sce
new file mode 100644
index 000000000..f6e8b8571
--- /dev/null
+++ b/3636/CH1/EX1.6/Ex1_6.sce
@@ -0,0 +1,11 @@
+clc;
+clear;
+V=2000 //potential in V
+e=1.602*10^-19 //electronic charge in eV
+m=9.1*10^-31 //mass of electron in kg
+
+//Calculation
+u=sqrt((2*V*e)/m)
+
+mprintf("velocity with which electron beam will travel= %.2e m/s",u)
+