diff options
Diffstat (limited to '3689/CH14/EX14.11/14_11.sce')
-rw-r--r-- | 3689/CH14/EX14.11/14_11.sce | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/3689/CH14/EX14.11/14_11.sce b/3689/CH14/EX14.11/14_11.sce new file mode 100644 index 000000000..00f2b72b4 --- /dev/null +++ b/3689/CH14/EX14.11/14_11.sce @@ -0,0 +1,18 @@ +////
+//Variable Declarations
+h = 6.626e-34 //Planks constant, J.s
+k = 1.38e-23 //Boltzman constant, J/K
+c = 3.0e8 //speed of light, m/s
+T = 1000 //Temeprature, K
+nubar = [1388, 667.4,667.4,2349] //Vibrational mode frequencies for CO2, 1/cm
+
+//Calculations
+Qv = 1
+for i = [1388, 667.4,667.4,2349]
+ qv = 1/(1.-exp(-h*c*100*i/(k*T)))
+ printf("\nAt %4.0f 1/cm the q = %4.3f",i,qv)
+ Qv = Qv*qv
+//Results
+end
+printf("\n Total Vibrational partition function for OClO at %4.1f K is %4.3f",T, Qv)
+
|