diff options
Diffstat (limited to '1172/CH3/EX3.19.2')
-rwxr-xr-x | 1172/CH3/EX3.19.2/3_19b.txt | 5 | ||||
-rwxr-xr-x | 1172/CH3/EX3.19.2/Example3_19b.sce | 11 |
2 files changed, 16 insertions, 0 deletions
diff --git a/1172/CH3/EX3.19.2/3_19b.txt b/1172/CH3/EX3.19.2/3_19b.txt new file mode 100755 index 000000000..77aa036a6 --- /dev/null +++ b/1172/CH3/EX3.19.2/3_19b.txt @@ -0,0 +1,5 @@ + # Problem 19b #
+
+ Standard formula Used
+ E= h *(nu1 – nu2)
+ Kinetic energy imparted to recoiling electron is 294 eV.
diff --git a/1172/CH3/EX3.19.2/Example3_19b.sce b/1172/CH3/EX3.19.2/Example3_19b.sce new file mode 100755 index 000000000..4a5ce27ba --- /dev/null +++ b/1172/CH3/EX3.19.2/Example3_19b.sce @@ -0,0 +1,11 @@ +clc
+//Given that
+lambda1 = 1 // wavelength in Angstrom
+lambda2 = 1.0243 // wavelength in Angstrom
+c = 3e8 // speed of light in m/s
+h = 6.63e-34 // plank's constant
+//Sample Problem 19b page No. 144
+printf("\n\n\n # Problem 19b # \n")
+printf("\n Standard formula Used \n E= h *(nu1 – nu2)")
+K = h * c * (( lambda2 - lambda1 )/ (lambda1 * lambda2 )) *(10e9 / 1.6e-19) //calculation of Kinetic energy imparted to recoiling
+printf ("\n Kinetic energy imparted to recoiling electron is %d eV.", K)
|