diff options
Diffstat (limited to '1280/CH11/EX11.8/11_8.sce')
-rwxr-xr-x | 1280/CH11/EX11.8/11_8.sce | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/1280/CH11/EX11.8/11_8.sce b/1280/CH11/EX11.8/11_8.sce new file mode 100755 index 000000000..08ff68a56 --- /dev/null +++ b/1280/CH11/EX11.8/11_8.sce @@ -0,0 +1,10 @@ +clc
+//initialisation of variables
+t= 5 //min
+Qr= 10 //cfm
+P1= 125 //psi
+P2= 100 //psi
+//CALCULATIONS
+Vr= Qr*t*14.7/(P1-P2)
+//RESULTS
+printf ('Size of reservoir = %.1f ft^3',Vr)
|