summaryrefslogtreecommitdiff
path: root/1172/CH3/EX3.2/Example3_2.sce
diff options
context:
space:
mode:
Diffstat (limited to '1172/CH3/EX3.2/Example3_2.sce')
-rwxr-xr-x1172/CH3/EX3.2/Example3_2.sce11
1 files changed, 11 insertions, 0 deletions
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)