summaryrefslogtreecommitdiff
path: root/2021/CH14
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /2021/CH14
downloadScilab-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')
-rwxr-xr-x2021/CH14/EX14.10/EX14_10.pdfbin0 -> 18280 bytes
-rwxr-xr-x2021/CH14/EX14.10/EX14_10.sce9
-rwxr-xr-x2021/CH14/EX14.11/EX14_11.pdfbin0 -> 17411 bytes
-rwxr-xr-x2021/CH14/EX14.11/EX14_11.sce12
-rwxr-xr-x2021/CH14/EX14.12/EX14_12.pdfbin0 -> 18423 bytes
-rwxr-xr-x2021/CH14/EX14.12/EX14_12.sce10
-rwxr-xr-x2021/CH14/EX14.13/EX14_13.pdfbin0 -> 17719 bytes
-rwxr-xr-x2021/CH14/EX14.13/EX14_13.sce15
-rwxr-xr-x2021/CH14/EX14.6/EX14_6.pdfbin0 -> 20430 bytes
-rwxr-xr-x2021/CH14/EX14.6/EX14_6.sce11
-rwxr-xr-x2021/CH14/EX14.7/EX14_7.pdfbin0 -> 21283 bytes
-rwxr-xr-x2021/CH14/EX14.7/EX14_7.sce15
-rwxr-xr-x2021/CH14/EX14.8/EX14_8.pdfbin0 -> 21716 bytes
-rwxr-xr-x2021/CH14/EX14.8/EX14_8.sce14
-rwxr-xr-x2021/CH14/EX14.9/EX14_9.pdfbin0 -> 19987 bytes
-rwxr-xr-x2021/CH14/EX14.9/EX14_9.sce11
16 files changed, 97 insertions, 0 deletions
diff --git a/2021/CH14/EX14.10/EX14_10.pdf b/2021/CH14/EX14.10/EX14_10.pdf
new file mode 100755
index 000000000..b6324dbd2
--- /dev/null
+++ b/2021/CH14/EX14.10/EX14_10.pdf
Binary files differ
diff --git a/2021/CH14/EX14.10/EX14_10.sce b/2021/CH14/EX14.10/EX14_10.sce
new file mode 100755
index 000000000..64baba6b6
--- /dev/null
+++ b/2021/CH14/EX14.10/EX14_10.sce
@@ -0,0 +1,9 @@
+//Finding of "n" of the Model
+//Given
+Lm=1;
+Lp=64;
+Np=0.02;
+//To Find
+A=sqrt(Lp/Lm);
+Nm=A*(Lm/Lp)^(2/3)*Np;
+disp("Manning n of the model ="+string(Nm)+" No units");
diff --git a/2021/CH14/EX14.11/EX14_11.pdf b/2021/CH14/EX14.11/EX14_11.pdf
new file mode 100755
index 000000000..852745124
--- /dev/null
+++ b/2021/CH14/EX14.11/EX14_11.pdf
Binary files differ
diff --git a/2021/CH14/EX14.11/EX14_11.sce b/2021/CH14/EX14.11/EX14_11.sce
new file mode 100755
index 000000000..3ad8a717a
--- /dev/null
+++ b/2021/CH14/EX14.11/EX14_11.sce
@@ -0,0 +1,12 @@
+//Finding of Qm.Nm
+//Given
+Qp=3000;
+Np=0.025;
+L1=1000;
+L2=100;
+//To Find
+B=sqrt(L2);
+Qm=Qp/(L1*L2*B);
+Nm=(Qp/Qm)*1/(((L1*L2*(L2)^(2/3))/Np)*B*sqrt(1/L1));
+disp(" Qm ="+string(Qm)+" m^3/sec");
+disp(" Nm ="+string(Nm)+" No units");
diff --git a/2021/CH14/EX14.12/EX14_12.pdf b/2021/CH14/EX14.12/EX14_12.pdf
new file mode 100755
index 000000000..72f276baf
--- /dev/null
+++ b/2021/CH14/EX14.12/EX14_12.pdf
Binary files differ
diff --git a/2021/CH14/EX14.12/EX14_12.sce b/2021/CH14/EX14.12/EX14_12.sce
new file mode 100755
index 000000000..994e49caa
--- /dev/null
+++ b/2021/CH14/EX14.12/EX14_12.sce
@@ -0,0 +1,10 @@
+//Finding of (Vm/Vp) and (Np/Nm)
+//Given
+L1=1/5000;
+L2=1/256;
+Qr=1/(2*10^7);
+//To Find
+Vr=(1/L1)*(1/L2)*Qr;
+Nr=Vr*((L2)^-(2/3)*(L2)^-(1/2)*(1/L1)^-(1/2));
+disp("Vm/Vp ="+string(Vr)+" m/sec");
+disp("Np/Nm ="+string(Nr)+" No units");
diff --git a/2021/CH14/EX14.13/EX14_13.pdf b/2021/CH14/EX14.13/EX14_13.pdf
new file mode 100755
index 000000000..ce1c754e2
--- /dev/null
+++ b/2021/CH14/EX14.13/EX14_13.pdf
Binary files differ
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");
diff --git a/2021/CH14/EX14.6/EX14_6.pdf b/2021/CH14/EX14.6/EX14_6.pdf
new file mode 100755
index 000000000..fb2d5e155
--- /dev/null
+++ b/2021/CH14/EX14.6/EX14_6.pdf
Binary files differ
diff --git a/2021/CH14/EX14.6/EX14_6.sce b/2021/CH14/EX14.6/EX14_6.sce
new file mode 100755
index 000000000..3a32b0c3d
--- /dev/null
+++ b/2021/CH14/EX14.6/EX14_6.sce
@@ -0,0 +1,11 @@
+//Finding of velocity , discharge of prototype
+//Given
+qm=2;
+vm=1.5;
+lp=36;
+lm=1;
+//To Find
+vp=sqrt(lp/lm)*vm;
+qp=(lp/lm)^2*(vp/vm)*qm;
+disp("Velocity of Prototype ="+string(vp)+" m/sec");
+disp("Dischage of Prototype ="+string(qp)+" m^3/sec");
diff --git a/2021/CH14/EX14.7/EX14_7.pdf b/2021/CH14/EX14.7/EX14_7.pdf
new file mode 100755
index 000000000..ea45a1864
--- /dev/null
+++ b/2021/CH14/EX14.7/EX14_7.pdf
Binary files differ
diff --git a/2021/CH14/EX14.7/EX14_7.sce b/2021/CH14/EX14.7/EX14_7.sce
new file mode 100755
index 000000000..56caf62f1
--- /dev/null
+++ b/2021/CH14/EX14.7/EX14_7.sce
@@ -0,0 +1,15 @@
+//Finding of Velocity of Prototype
+//Given
+vm=30;
+lm=100;
+lp=1;
+Am=0.018*10^-4;
+Ap=0.012*10^-4;
+rho1=1030;
+rho2=1.24;
+Fm=60;
+//To Find
+vp=(Ap/Am)*(lp/lm)*vm;
+Fp=Fm*(lm/lp)^2*(vp/vm)^2*(rho1/rho2);
+disp("Velocity of Prototype ="+string(vp)+" m/sec");
+disp("Resistance of Prototype ="+string(Fp)+" Newton");
diff --git a/2021/CH14/EX14.8/EX14_8.pdf b/2021/CH14/EX14.8/EX14_8.pdf
new file mode 100755
index 000000000..a043551bb
--- /dev/null
+++ b/2021/CH14/EX14.8/EX14_8.pdf
Binary files differ
diff --git a/2021/CH14/EX14.8/EX14_8.sce b/2021/CH14/EX14.8/EX14_8.sce
new file mode 100755
index 000000000..582e96543
--- /dev/null
+++ b/2021/CH14/EX14.8/EX14_8.sce
@@ -0,0 +1,14 @@
+//Finding of Velocity of Model
+//Given
+vp=20;
+lm=1;
+lp=15;
+rho1=1024;
+rho2=1000;
+Fp=600;
+Fm=0.12;
+//To Find
+vm=sqrt(lm/lp)*vp;
+Fp=Fm*(lm/lp)^2*(vp/vm)^2*(rho1/rho2);
+disp("Velocity of Prototype ="+string(vm)+" m/sec");
+disp("Resistance of Prototype ="+string(Fp)+" Newton");
diff --git a/2021/CH14/EX14.9/EX14_9.pdf b/2021/CH14/EX14.9/EX14_9.pdf
new file mode 100755
index 000000000..c43c6cd25
--- /dev/null
+++ b/2021/CH14/EX14.9/EX14_9.pdf
Binary files differ
diff --git a/2021/CH14/EX14.9/EX14_9.sce b/2021/CH14/EX14.9/EX14_9.sce
new file mode 100755
index 000000000..fb8ead2ab
--- /dev/null
+++ b/2021/CH14/EX14.9/EX14_9.sce
@@ -0,0 +1,11 @@
+//Finding of discharge through Model
+//Given
+A=50;
+B=10;
+C=sqrt(10);
+Qp=1.5;
+//To Find
+D=A*B;disp(D);
+Qm=(D)*(1/C);
+Qm1=Qp/Qm;
+disp(" Discharge Through Model ="+string(Qm1)+" m^3/sec");