summaryrefslogtreecommitdiff
path: root/3689/CH14/EX14.10/14_10.sce
blob: 2671d3ed7d22c9bdc133ca2d7a59f5811c9a2e80 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
////
//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 = 298            //Temeprature, K
nubar = 917        //Vibrational mode frequencies for F2, 1/cm

//Calculations
ThetaV = h*c*100*nubar/k
Th = 10*ThetaV
qv = 1/(1.-exp(-ThetaV/Th))

//Results
printf("\n Vibrational partition function for F2 at %4.1f K is %4.3f",T, qv)