summaryrefslogtreecommitdiff
path: root/2021/CH6
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /2021/CH6
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/CH6')
-rwxr-xr-x2021/CH6/EX6.3/EX6_3.pdfbin0 -> 17396 bytes
-rwxr-xr-x2021/CH6/EX6.3/EX6_3.sce15
-rwxr-xr-x2021/CH6/EX6.4/EX6_4.pdfbin0 -> 17690 bytes
-rwxr-xr-x2021/CH6/EX6.4/EX6_4.sce15
-rwxr-xr-x2021/CH6/EX6.5/EX6_5.pdfbin0 -> 18258 bytes
-rwxr-xr-x2021/CH6/EX6.5/EX6_5.sce15
-rwxr-xr-x2021/CH6/EX6.6/EX6_6.pdfbin0 -> 17943 bytes
-rwxr-xr-x2021/CH6/EX6.6/EX6_6.sce16
-rwxr-xr-x2021/CH6/EX6.7/EX6_7.pdfbin0 -> 18528 bytes
-rwxr-xr-x2021/CH6/EX6.7/EX6_7.sce19
-rwxr-xr-x2021/CH6/EX6.8/EX6_8.pdfbin0 -> 17762 bytes
-rwxr-xr-x2021/CH6/EX6.8/EX6_8.sce12
12 files changed, 92 insertions, 0 deletions
diff --git a/2021/CH6/EX6.3/EX6_3.pdf b/2021/CH6/EX6.3/EX6_3.pdf
new file mode 100755
index 000000000..35e7bbee1
--- /dev/null
+++ b/2021/CH6/EX6.3/EX6_3.pdf
Binary files differ
diff --git a/2021/CH6/EX6.3/EX6_3.sce b/2021/CH6/EX6.3/EX6_3.sce
new file mode 100755
index 000000000..6d5b240e7
--- /dev/null
+++ b/2021/CH6/EX6.3/EX6_3.sce
@@ -0,0 +1,15 @@
+//Finding of Discharge
+//Given
+d1=30;
+d2=15;
+hom=10;
+cod=0.98;
+pi=3.14;
+g=9.81;
+//To Find
+a1=(pi/4)*d1^2;
+a2=(pi/4)*d2^2;
+h=hom*(12.6);
+q=(cod*a1*a2*(2*100*g*h)^(1/2))/((a1^2-a2^2)^(1/2));
+q1=q/1000;
+disp("Discharge ="+string(q1)+" m^3/sec");
diff --git a/2021/CH6/EX6.4/EX6_4.pdf b/2021/CH6/EX6.4/EX6_4.pdf
new file mode 100755
index 000000000..749f83173
--- /dev/null
+++ b/2021/CH6/EX6.4/EX6_4.pdf
Binary files differ
diff --git a/2021/CH6/EX6.4/EX6_4.sce b/2021/CH6/EX6.4/EX6_4.sce
new file mode 100755
index 000000000..ca8bd8cf2
--- /dev/null
+++ b/2021/CH6/EX6.4/EX6_4.sce
@@ -0,0 +1,15 @@
+//Finding of Discharge
+//Given
+d1=30;
+d2=15;
+hom=30;
+cod=0.98;
+g=9.81;
+pi=3.14;
+//To Find
+a1=(pi/4)*d1^2;
+a2=(pi/4)*d2^2;
+h=hom*(12.6);
+q=(cod*a1*a2*(2*100*g*h)^(1/2))/((a1^2-a2^2)^(1/2));
+q1=q/1000;
+disp("Discharge ="+string(q1)+" m^3/sec");
diff --git a/2021/CH6/EX6.5/EX6_5.pdf b/2021/CH6/EX6.5/EX6_5.pdf
new file mode 100755
index 000000000..e4a2a5c9f
--- /dev/null
+++ b/2021/CH6/EX6.5/EX6_5.pdf
Binary files differ
diff --git a/2021/CH6/EX6.5/EX6_5.sce b/2021/CH6/EX6.5/EX6_5.sce
new file mode 100755
index 000000000..31f5b34af
--- /dev/null
+++ b/2021/CH6/EX6.5/EX6_5.sce
@@ -0,0 +1,15 @@
+//Finding of Rate of flow
+//Given
+d1=30;
+d2=15;
+hom=30;
+cod=0.98;
+g=9.81;
+pi=3.14;
+//To Find
+a1=(pi/4)*d1^2;
+a2=(pi/4)*d2^2;
+h=hom*((13.6/0.8)-1);
+q=(cod*a1*a2*(2*100*g*h)^(1/2))/((a1^2-a2^2)^(1/2));
+q1=q/1000;
+disp("Discharge ="+string(q1)+" m^3/sec");
diff --git a/2021/CH6/EX6.6/EX6_6.pdf b/2021/CH6/EX6.6/EX6_6.pdf
new file mode 100755
index 000000000..631c533e7
--- /dev/null
+++ b/2021/CH6/EX6.6/EX6_6.pdf
Binary files differ
diff --git a/2021/CH6/EX6.6/EX6_6.sce b/2021/CH6/EX6.6/EX6_6.sce
new file mode 100755
index 000000000..62928e77d
--- /dev/null
+++ b/2021/CH6/EX6.6/EX6_6.sce
@@ -0,0 +1,16 @@
+//Finding of Pressure Difference
+//Given
+g=9.81;
+spgr=0.9;
+spgr1=13.6;
+rho=1000;
+rho1=spgr*1000*g;
+zd=0.3;
+gd=25;
+x=(spgr1/spgr)-1;
+x1=((gd*x)/100)+zd;
+//To find
+pd=x1*rho1;disp(x1);
+disp("Pressure Difference ="+string(pd)+" N/m^2");
+pd1=pd/10000;
+disp("Pressure Difference ="+string(pd1)+" N/cm^2");
diff --git a/2021/CH6/EX6.7/EX6_7.pdf b/2021/CH6/EX6.7/EX6_7.pdf
new file mode 100755
index 000000000..a9a678c83
--- /dev/null
+++ b/2021/CH6/EX6.7/EX6_7.pdf
Binary files differ
diff --git a/2021/CH6/EX6.7/EX6_7.sce b/2021/CH6/EX6.7/EX6_7.sce
new file mode 100755
index 000000000..1d3da7b72
--- /dev/null
+++ b/2021/CH6/EX6.7/EX6_7.sce
@@ -0,0 +1,19 @@
+//Finding of Rate Of Flow
+//Given
+d1=15;
+d2=30;
+hm=50;
+spgr=0.9;
+spgr1=13.6;
+cod=0.64;
+g=9.81;
+//To Find
+A0=(%pi/4)*d1^2;
+A1=(%pi/4)*d2^2;
+h=((spgr1/spgr)-1)*hm;
+x=(A0*A1)/sqrt(A1^2-A0^2);
+y=sqrt(2*g*h);
+q=cod*x*y;
+disp(" Discharge ="+string(q)+" cm^3/sec");
+q1=q/100;
+disp(" Discharge ="+string(q1)+" ltr/sec");
diff --git a/2021/CH6/EX6.8/EX6_8.pdf b/2021/CH6/EX6.8/EX6_8.pdf
new file mode 100755
index 000000000..596096575
--- /dev/null
+++ b/2021/CH6/EX6.8/EX6_8.pdf
Binary files differ
diff --git a/2021/CH6/EX6.8/EX6_8.sce b/2021/CH6/EX6.8/EX6_8.sce
new file mode 100755
index 000000000..d25d934d5
--- /dev/null
+++ b/2021/CH6/EX6.8/EX6_8.sce
@@ -0,0 +1,12 @@
+//Fiding of Discharge
+//Given
+d1=0.3;
+pd=0.06;
+g=9.81;
+cv=0.98;
+//To Find
+vc=sqrt(2*g*pd)*cv;
+V=0.8*vc;
+A=(%pi/4)*d1^2;
+q=V*A;
+disp(" Discharge ="+string(q)+" m^3/sec");