diff options
Diffstat (limited to '1466/CH13/EX13.3/13_3.sce')
-rwxr-xr-x | 1466/CH13/EX13.3/13_3.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/1466/CH13/EX13.3/13_3.sce b/1466/CH13/EX13.3/13_3.sce new file mode 100755 index 000000000..6053daee3 --- /dev/null +++ b/1466/CH13/EX13.3/13_3.sce @@ -0,0 +1,14 @@ +
+clc
+//initialisation of variables
+g1=1.41
+g=32.2//ft/sec^2
+T=273//c
+R=96
+p=14.7//lb/in^2
+//CALCULATIONS
+w=p*144/(R*T)
+po=w/g
+v=sqrt(g1*p*144*g/w)
+//RESULTS
+printf (' velocity of sound in air= %.f ft/sec',v)
|