summaryrefslogtreecommitdiff
path: root/3717/CH6/EX6.2/Ex6_2.sce
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:27:19 +0530
committerprashantsinalkar2017-10-10 12:27:19 +0530
commit7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch)
treedbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3717/CH6/EX6.2/Ex6_2.sce
parentb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff)
downloadScilab-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.2/Ex6_2.sce')
-rw-r--r--3717/CH6/EX6.2/Ex6_2.sce14
1 files changed, 14 insertions, 0 deletions
diff --git a/3717/CH6/EX6.2/Ex6_2.sce b/3717/CH6/EX6.2/Ex6_2.sce
new file mode 100644
index 000000000..61513d8d9
--- /dev/null
+++ b/3717/CH6/EX6.2/Ex6_2.sce
@@ -0,0 +1,14 @@
+// Ex6_2 Page:96 (2014)
+clc;clear;
+v0 = 6.43e+013; // The vibrational frequecy of CO molecule, Hz
+e = 1.6e-019; // Energy conversion factor, J/eV
+mu = 1.1385e-026; // The reduced mass of CO molecule, kg
+h = 6.626e-034; // Planck's constant, Js
+E0 = 1/(2*e)*h*v0; // Zero point energy, eV
+k = 4*(22/7*v0)^2*mu; // Force constant of the CO bond, N/m
+printf("\nThe zero point energy of the CO bond = %5.3f eV", E0);
+printf("\nThe force constant of the CO bond = %4d N/m", k);
+
+// Result
+// The zero point energy of the CO bond = 0.133 eV
+// The force constant of the CO bond = 1859 N/m \ No newline at end of file