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/CH14/EX14.13 | |
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/CH14/EX14.13')
-rwxr-xr-x | 2021/CH14/EX14.13/EX14_13.pdf | bin | 0 -> 17719 bytes | |||
-rwxr-xr-x | 2021/CH14/EX14.13/EX14_13.sce | 15 |
2 files changed, 15 insertions, 0 deletions
diff --git a/2021/CH14/EX14.13/EX14_13.pdf b/2021/CH14/EX14.13/EX14_13.pdf Binary files differnew file mode 100755 index 000000000..ce1c754e2 --- /dev/null +++ b/2021/CH14/EX14.13/EX14_13.pdf diff --git a/2021/CH14/EX14.13/EX14_13.sce b/2021/CH14/EX14.13/EX14_13.sce new file mode 100755 index 000000000..75db6e6ba --- /dev/null +++ b/2021/CH14/EX14.13/EX14_13.sce @@ -0,0 +1,15 @@ +//Finding of Qm,Lm,Hm
+//Given
+Lp=16;
+Lm=1;
+Hp=4;
+L1=150;
+H1=7.2;
+H2=16;
+//To Find
+Hm=H1*(Lm/Lp);
+lm=L1*(Lm/Lp);
+Qm=(Lp/Lm)^2*(Hp/H2)^(1/2);
+disp("Lm ="+string(lm)+" meter");
+disp("Hm ="+string(Hm)+" meter");
+disp("Qm ="+string(Qm)+" m^3/sec");
|