From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 1172/CH3/EX3.2/3_2.txt | 5 +++++ 1172/CH3/EX3.2/Example3_2.sce | 11 +++++++++++ 2 files changed, 16 insertions(+) create mode 100755 1172/CH3/EX3.2/3_2.txt create mode 100755 1172/CH3/EX3.2/Example3_2.sce (limited to '1172/CH3/EX3.2') diff --git a/1172/CH3/EX3.2/3_2.txt b/1172/CH3/EX3.2/3_2.txt new file mode 100755 index 000000000..fff0eefec --- /dev/null +++ b/1172/CH3/EX3.2/3_2.txt @@ -0,0 +1,5 @@ + # Problem 2 # + + Standard formula Used + E = h * (nu1 – nu2) + Energy of photoelectrons emitted is 1.031250 eV diff --git a/1172/CH3/EX3.2/Example3_2.sce b/1172/CH3/EX3.2/Example3_2.sce new file mode 100755 index 000000000..66e00d4e6 --- /dev/null +++ b/1172/CH3/EX3.2/Example3_2.sce @@ -0,0 +1,11 @@ +clc +//Given that +h = 6.6e-34 // plank's constant +lambda_threshold = 2.4e-7 // threshold wavelength in cm +lambda = 2e-7 // wavelength of irradicated light in photo emmission +c = 3e8 +//Sample Problem 2 Page No. 135 +printf("\n # Problem 2 # \n") +printf("\n Standard formula Used \n E = h * (nu1 – nu2)") +E = h * c * ((lambda_threshold - lambda)/(lambda *lambda_threshold))/1.6e-19 // calculation of nergy of photoelectrons +printf("\n Energy of photoelectrons emitted is %f eV", E) -- cgit