diff options
Diffstat (limited to '3014/CH1/EX1.19/Ex1_19.sce')
-rwxr-xr-x | 3014/CH1/EX1.19/Ex1_19.sce | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/3014/CH1/EX1.19/Ex1_19.sce b/3014/CH1/EX1.19/Ex1_19.sce new file mode 100755 index 000000000..410928a4e --- /dev/null +++ b/3014/CH1/EX1.19/Ex1_19.sce @@ -0,0 +1,11 @@ +
+clc
+//Given that
+lambda = 0.5// wavelength of electron in angstrom
+m = 9.1e-31 // Mass of electron in Kg
+h = 6.62e-34 // Plank constant
+q = 1.6e-19 // charge on electron in coulomb
+printf("Example 1.19")
+V = h^2/(2*m*q*(lambda*1e-10)^2) // Calculation of velocity of moving electron
+printf("\n Applied voltage on electron is %f V.\n\n\n",V)
+// Answer in book is 601.6 Volt
|