diff options
Diffstat (limited to '1286/CH6/EX6.7')
-rwxr-xr-x | 1286/CH6/EX6.7/6_7.sce | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/1286/CH6/EX6.7/6_7.sce b/1286/CH6/EX6.7/6_7.sce new file mode 100755 index 000000000..f6a7c8308 --- /dev/null +++ b/1286/CH6/EX6.7/6_7.sce @@ -0,0 +1,15 @@ +clc
+//initialisation
+p=1.013*10^5//newton/m2
+d=0.09//kg/m3
+t1=27//c
+T=273
+T1=t1+T//k
+//CALCULATIONS
+c1=sqrt(3*p/d)
+c2=c1*sqrt(T1/T)
+cb=c2*8/(3*%pi)
+cm=c2*sqrt(2/3)
+//results
+printf(' avg velocity= % 1f m/sec',cb)
+printf(' \nmost probable velocity= % 1f m/sec',cm)
|