summaryrefslogtreecommitdiff
path: root/3689/CH16/EX16.6/16_6.sce
blob: 28839b33d67ecca2dcef25413a37b6190463cfb9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
////
//Variable Declaration
R = 8.314         //Ideal Gas Constant, J/(mol.K)
T = 298           //Temperature of Gas, K
M = 0.044         //Molecular wt of CO2, kg/mol
P  = 101325       //Pressure, N/m2
NA = 6.022e23     //Number of particles per mol
sigm = 5.2e-19    //m2

//Calculations
zCO2 = (P*NA/(R*T))*sigm*sqrt(2)*sqrt(8*R*T/(%pi*M)) 
//Results
printf("\n Single particle collisional frequency is %4.1e per s",zCO2)