diff options
Diffstat (limited to '3523/CH3/EX3.7.14/Ex3_14.sce')
-rw-r--r-- | 3523/CH3/EX3.7.14/Ex3_14.sce | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/3523/CH3/EX3.7.14/Ex3_14.sce b/3523/CH3/EX3.7.14/Ex3_14.sce new file mode 100644 index 000000000..5e6198019 --- /dev/null +++ b/3523/CH3/EX3.7.14/Ex3_14.sce @@ -0,0 +1,16 @@ +//Example 14// Ch 3
+clc;
+clear;
+close;
+// given data
+p=1.01*10^5/760;// 1 torr in N/m2
+k=1.38*10^-23;
+T=273; //in Kelvin
+n=85*10^2;//no of collisions per meter
+N=p/(k*T);
+printf("no of gas molecules %e atoms/m^3",N)
+r_a=sqrt(n/(%pi*N*1));
+printf("diameter of argon atom %e m",r_a)
+
+
+
|