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 /2021/CH20/EX20.4/EX20_4.sce | |
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 '2021/CH20/EX20.4/EX20_4.sce')
-rwxr-xr-x | 2021/CH20/EX20.4/EX20_4.sce | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/2021/CH20/EX20.4/EX20_4.sce b/2021/CH20/EX20.4/EX20_4.sce new file mode 100755 index 000000000..375819144 --- /dev/null +++ b/2021/CH20/EX20.4/EX20_4.sce @@ -0,0 +1,24 @@ +//Finding of Qth ,Pth ,ha
+//Given
+D=0.15;
+L=0.3;
+N=50;
+H=25;
+ld=22;
+dd=0.1;
+Qac=0.0042;
+rho=1000;
+g=9.81;
+//To Find
+A=(%pi/4)*D^2;
+a=(%pi/4)*(dd)^2;
+Z=(2*%pi*N)/60;
+r=L/2;
+Qth=(A*L*N)/60;
+Pth=(rho*g*Qth*H)/1000;
+S1=((Qth-Qac)/Qth)*100;
+ha=(ld/g)*(A/a)*r*Z^2;
+disp("Qth ="+string(Qth)+" m^3/sec");
+disp("Pth ="+string(Pth)+" Kilo Watts");
+disp("ha ="+string(ha)+" meter");
+
|