diff options
author | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
commit | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch) | |
tree | dbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3720/CH6/EX6.9/Ex6_9.sce | |
parent | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff) | |
download | Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2 Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip |
initial commit / add all books
Diffstat (limited to '3720/CH6/EX6.9/Ex6_9.sce')
-rw-r--r-- | 3720/CH6/EX6.9/Ex6_9.sce | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/3720/CH6/EX6.9/Ex6_9.sce b/3720/CH6/EX6.9/Ex6_9.sce new file mode 100644 index 000000000..bcff837b5 --- /dev/null +++ b/3720/CH6/EX6.9/Ex6_9.sce @@ -0,0 +1,20 @@ +//Example 6_9
+clc;clear;
+// Given values
+rho=1;//The density of water in kg/L
+n=300;//rpm
+D=0.01;// Diameter of each jet in m
+V_t=20;// L/s
+V_n=V_t/4;// L/s
+r=0.6;//m
+
+// Calculation
+A_j=(%pi*D^2)/4;//Area of jet in m^2
+V_j=(V_n)/(A_j*1000);//Average jet exit velocity in m/s
+w=(2*(%pi)*n)/60;// The angular momentum of the nozzle in rad/s
+v_n=r*w;//The tangential velocities of the nozzle in m/s
+v_r=V_j-v_n;//The average velocity of the water jet relative to the control volume in m/s
+m_t=rho*V_t;// Mass flow rate in kg/s
+T_shaft=r*m_t*v_r;// The torque transmitted through the shaft in Nm
+W=(w*T_shaft)/1000;
+printf("The electric power generated=%0.1f kW\n",W);
|