diff options
Diffstat (limited to '2015/CH9/EX9.10/9_10.sce')
-rwxr-xr-x | 2015/CH9/EX9.10/9_10.sce | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/2015/CH9/EX9.10/9_10.sce b/2015/CH9/EX9.10/9_10.sce new file mode 100755 index 000000000..a31bb3c41 --- /dev/null +++ b/2015/CH9/EX9.10/9_10.sce @@ -0,0 +1,12 @@ +clc
+//initialisation of variables
+sp=200 //mean speed m/s
+//CALCULATIONS
+d=(21/(0.7773*1.18*200))^0.5
+l=1.5*d
+s=200/(3*d)
+//RESULTS
+disp('volumetric efficiency is 0.7773')
+printf('\ndiameter is %2fm',d)
+printf('\nstroke is %2fm',l)
+printf('\nspeed of compressor is %2frev/min',s)
|