diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /3136/CH1/EX1.6 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '3136/CH1/EX1.6')
-rwxr-xr-x | 3136/CH1/EX1.6/Ex1_6.sce | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/3136/CH1/EX1.6/Ex1_6.sce b/3136/CH1/EX1.6/Ex1_6.sce new file mode 100755 index 000000000..449a5675f --- /dev/null +++ b/3136/CH1/EX1.6/Ex1_6.sce @@ -0,0 +1,18 @@ +clear all; clc;
+//This numerical is Ex 1_3S,page 12.
+H=90
+Q=4.2//water flow rate(in m^3/s)
+n=1800
+E=0.87//efficiency
+rho=998
+g=9.81
+omega=(n*2*%pi)/60
+dp=rho*g*H
+printf('The pressure is %g N/m^2',dp)
+Ps=E*Q*dp
+printf('\n Output power is equal to %0.3f N-m/s',Ps)
+disp("After rounding off the value of output power is 3220 kW.")
+Psr=3220000//rounded off value of Ps
+Torque=Psr/omega
+printf(' The output torque is %g N-m.',Torque)
+disp("After rounding off the output torque comes out to be 17.1*10^3 N-m.")
|