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/CH19/EX19.12 | |
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/CH19/EX19.12')
-rwxr-xr-x | 2021/CH19/EX19.12/EX19_12.pdf | bin | 0 -> 22588 bytes | |||
-rwxr-xr-x | 2021/CH19/EX19.12/EX19_12.sce | 16 |
2 files changed, 16 insertions, 0 deletions
diff --git a/2021/CH19/EX19.12/EX19_12.pdf b/2021/CH19/EX19.12/EX19_12.pdf Binary files differnew file mode 100755 index 000000000..41c4241be --- /dev/null +++ b/2021/CH19/EX19.12/EX19_12.pdf diff --git a/2021/CH19/EX19.12/EX19_12.sce b/2021/CH19/EX19.12/EX19_12.sce new file mode 100755 index 000000000..9828feb2b --- /dev/null +++ b/2021/CH19/EX19.12/EX19_12.sce @@ -0,0 +1,16 @@ +//Finding of Head Discharge , Ratio of Power
+//Given
+Q1=0.035;
+H1=25;
+D1=0.5;
+N1=1200;
+D2=0.3;
+N2=2000;
+//To Find
+H=(D2*N2*sqrt(H1))/(D1*N1);
+H2=H^2;
+Q=(Q1*D2^3*N2)/(D1^3*N1);
+Pr=(D1/D2)^5*(N1/N2)^3;
+disp("Head ="+string(H2)+" meter");
+disp("Discharge ="+string(Q)+" m^3/sec");
+disp("Power Ratio ="+string(Pr)+" No Units");
|