diff options
Diffstat (limited to '3689/CH17/EX17.6/17_6.sce')
-rw-r--r-- | 3689/CH17/EX17.6/17_6.sce | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/3689/CH17/EX17.6/17_6.sce b/3689/CH17/EX17.6/17_6.sce new file mode 100644 index 000000000..ecd183c53 --- /dev/null +++ b/3689/CH17/EX17.6/17_6.sce @@ -0,0 +1,21 @@ +////
+//Variable Declaration
+eta = 227. //Viscosity of Ar, muP
+P = 101325 //Pressure, Pa
+kt = 0.0177 //Thermal conductivity, J/(K.m.s)
+T = 300.0 //Temperature, K
+k = 1.3806488e-23 //Boltzmanconstant,J K^-1
+R = 8.314 //Molar Gas constant, mol^-1 K^-1
+NA = 6.02214129e+23 //mol^-1
+M = 39.9 //Molecualar wt of Argon and Neon, kg/mol
+
+//Calculations
+nuavg = sqrt(8*R*T/(%pi*M*1e-3))
+N = NA*P/(R*T)
+m = M*1e-3/NA
+labda = 3.*eta*1e-7/(nuavg*N*m) //viscosity in kg m s units
+sigm = 1./(sqrt(2)*N*labda)
+
+//Results
+printf("\n Collisional cross section %4.2e m2",sigm)
+
|