summaryrefslogtreecommitdiff
path: root/3689/CH14/EX14.11/14_11.sce
blob: 00f2b72b42ec89429f7863959f407366cd227f40 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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)