diff options
author | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
commit | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch) | |
tree | dbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3845/CH29/EX29.3/Ex29_3.sce | |
parent | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff) | |
download | Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2 Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip |
initial commit / add all books
Diffstat (limited to '3845/CH29/EX29.3/Ex29_3.sce')
-rw-r--r-- | 3845/CH29/EX29.3/Ex29_3.sce | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/3845/CH29/EX29.3/Ex29_3.sce b/3845/CH29/EX29.3/Ex29_3.sce new file mode 100644 index 000000000..e5a7fbe6f --- /dev/null +++ b/3845/CH29/EX29.3/Ex29_3.sce @@ -0,0 +1,23 @@ +//Example 29.3
+h=4.14*10^-15;//Planck's constant (eV.s)
+c=3*10^8*10^9;//Speed of light (nm/s)
+lambda=100;//Wavelength (nm)
+E=h*c/lambda;//Photon energy (eV)
+//The value h*c=1240eV.nm may also be used directly
+printf('Vacuum UV photon energy = %0.1f eV',E)
+//Discussion
+E1=10;//Energy to ionize atom or molecule (lowest in the possible range 10eV to 1000eV) (eV), See Table 29.1
+E2=10;//Binding energy of a tightly bound molecule (eV), See Table 29.1
+E3=1;//Binding energy of a weakly bound molecule (eV), See Table 29.1
+printf('\nDiscussion:')
+if E>E1
+ printf('\nThe photon energy might be sufficient to ionize an atom or molecule')
+end
+if E>E2
+ printf('\nThe photon energy is sufficient to break apart %0.0f tightly bound molecule(s)',E/E2)
+end
+if E>E3
+ printf('\nThe photon energy is sufficient to break apart %0.0f weakly bound molecule(s)',E/E3 )
+end
+//Openstax - College Physics
+//Download for free at http://cnx.org/content/col11406/latest
|