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 /3717/CH6/EX6.6/Ex6_6.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 '3717/CH6/EX6.6/Ex6_6.sce')
-rw-r--r-- | 3717/CH6/EX6.6/Ex6_6.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/3717/CH6/EX6.6/Ex6_6.sce b/3717/CH6/EX6.6/Ex6_6.sce new file mode 100644 index 000000000..3b83db910 --- /dev/null +++ b/3717/CH6/EX6.6/Ex6_6.sce @@ -0,0 +1,14 @@ +// Ex6_6 Page:104 (2014)
+clc;clear;
+e = 1.6e-019; // Energy conversion factor, J/eV
+h_cross = 1.054e-034; // reduced Planck's constant, Js
+r = 1.131e-010; // Intermolecular separation of CO molecule, m
+m_Carbon = 19.9217e-027; // Mass of carbon atom, kg
+m_Oxygen = 26.5614e-027; // Mass of oxygen atom, kg
+mu = m_Carbon*m_Oxygen/(m_Carbon+m_Oxygen); // Reduced mass of CO molecule, kg
+I = mu*r^2; // Moment of inertia of CO molecule, kg-Sq.m
+delta_E = h_cross^2/(I*e); // Energy difference between the first two rotational energy levels of CO molecule, eV
+printf("\nThe energy difference between the first two rotational energy levels of CO molecule = %4.2e eV", delta_E);
+
+// Result
+// The energy difference between the first two rotational energy levels of CO molecule = 4.77e-004 eV
\ No newline at end of file |