summaryrefslogtreecommitdiff
path: root/3875/CH10/EX10.13
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:27:19 +0530
committerprashantsinalkar2017-10-10 12:27:19 +0530
commit7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch)
treedbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3875/CH10/EX10.13
parentb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff)
downloadScilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip
initial commit / add all books
Diffstat (limited to '3875/CH10/EX10.13')
-rw-r--r--3875/CH10/EX10.13/10_13.sce26
-rw-r--r--3875/CH10/EX10.13/10_13.txt4
2 files changed, 30 insertions, 0 deletions
diff --git a/3875/CH10/EX10.13/10_13.sce b/3875/CH10/EX10.13/10_13.sce
new file mode 100644
index 000000000..366e8ace0
--- /dev/null
+++ b/3875/CH10/EX10.13/10_13.sce
@@ -0,0 +1,26 @@
+clc;
+clear;
+h=6.63*10^-34 //Plancks constant in J-s
+v=3*10^8 // frequency of light in Hz
+e=1.6*10^-19 //charge in C
+lambda=200*10^-9 //wavelength in m
+W=4.2 //work function in Joule
+c=3*10^8 //velocity of light in m/s
+
+//calculation
+E=(h*v)/(lambda)//energy in J
+E_v=E/e //energy in eV
+
+//case (1)
+E_k=E_v-W
+mprintf("\nThe kinetic energy of the fastest electrons is = %d eV\n",E_k)
+
+//case(2)
+mprintf("\nThe kinetic energy of slowest electrons is zero.As the emitted electrons have all possible energies from 0 to certain maximun value is E_k\n")
+
+//case(3)
+mprintf("If V_s is the stopping potential then E_k=e*V_s.Since the electrons have a maximum kinetoc energy of 2eV,the stopping potential is 2V.\n")
+
+//case(4)
+lambda_0=(h*c)/(W*e)
+mprintf("The cut off wavelength for aluminium is %1.2e m",lambda_0) //The answer provided in the textbook is wrong.
diff --git a/3875/CH10/EX10.13/10_13.txt b/3875/CH10/EX10.13/10_13.txt
new file mode 100644
index 000000000..03b02fccb
--- /dev/null
+++ b/3875/CH10/EX10.13/10_13.txt
@@ -0,0 +1,4 @@
+The kinetic energy of the fastest electrons is = 2 eV
+The kinetic energy of slowest electrons is zero.As the emitted electrons have all possible energies from 0 to certain maximun value is E_k
+If V_s is the stopping potential then E_k=e*V_s.Since the electrons have a maximum kinetoc energy of 2eV,the stopping potential is 2V.
+The cut off wavelength for aluminium is 2.96e-07 m \ No newline at end of file