summaryrefslogtreecommitdiff
path: root/3689/CH16/EX16.4/16_4.sce
diff options
context:
space:
mode:
Diffstat (limited to '3689/CH16/EX16.4/16_4.sce')
-rw-r--r--3689/CH16/EX16.4/16_4.sce15
1 files changed, 15 insertions, 0 deletions
diff --git a/3689/CH16/EX16.4/16_4.sce b/3689/CH16/EX16.4/16_4.sce
new file mode 100644
index 000000000..a4ad51f85
--- /dev/null
+++ b/3689/CH16/EX16.4/16_4.sce
@@ -0,0 +1,15 @@
+////
+//Variable Declaration
+R = 8.314 //Ideal Gas Constant, J/(mol.K)
+T = 298 //Temperature of Gas, K
+M = 0.040 //Molecular wt of Ar, kg/mol
+P = 101325 //Pressure, N/m2
+NA = 6.022e23 //Number of particles per mol
+V = 1.0 //Volume of Container, L
+
+//Calculations
+Zc = P*NA/sqrt(2*%pi*R*T*M)
+Nc = Zc
+//Results
+printf("\n Number of Collisions %4.2e per s",Nc)
+