summaryrefslogtreecommitdiff
path: root/3636/CH3/EX3.1/Ex3_1.sce
diff options
context:
space:
mode:
Diffstat (limited to '3636/CH3/EX3.1/Ex3_1.sce')
-rw-r--r--3636/CH3/EX3.1/Ex3_1.sce12
1 files changed, 12 insertions, 0 deletions
diff --git a/3636/CH3/EX3.1/Ex3_1.sce b/3636/CH3/EX3.1/Ex3_1.sce
new file mode 100644
index 000000000..a04467ab4
--- /dev/null
+++ b/3636/CH3/EX3.1/Ex3_1.sce
@@ -0,0 +1,12 @@
+clear;
+clc;
+v=5*10^5 //velocity of electron in cm/s
+m=9.11*10^-31 //mass of electron in kg
+const=1.6*10^-19 //in eV
+
+//Calculation
+delv=0.02 //change in speed in cm/s
+delE=(m*v*delv)/const
+
+mprintf("Increase in kinetic energy of electron= %1.1e eV",delE)
+