From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 2021/CH6/EX6.3/EX6_3.pdf | Bin 0 -> 17396 bytes 2021/CH6/EX6.3/EX6_3.sce | 15 +++++++++++++++ 2021/CH6/EX6.4/EX6_4.pdf | Bin 0 -> 17690 bytes 2021/CH6/EX6.4/EX6_4.sce | 15 +++++++++++++++ 2021/CH6/EX6.5/EX6_5.pdf | Bin 0 -> 18258 bytes 2021/CH6/EX6.5/EX6_5.sce | 15 +++++++++++++++ 2021/CH6/EX6.6/EX6_6.pdf | Bin 0 -> 17943 bytes 2021/CH6/EX6.6/EX6_6.sce | 16 ++++++++++++++++ 2021/CH6/EX6.7/EX6_7.pdf | Bin 0 -> 18528 bytes 2021/CH6/EX6.7/EX6_7.sce | 19 +++++++++++++++++++ 2021/CH6/EX6.8/EX6_8.pdf | Bin 0 -> 17762 bytes 2021/CH6/EX6.8/EX6_8.sce | 12 ++++++++++++ 12 files changed, 92 insertions(+) create mode 100755 2021/CH6/EX6.3/EX6_3.pdf create mode 100755 2021/CH6/EX6.3/EX6_3.sce create mode 100755 2021/CH6/EX6.4/EX6_4.pdf create mode 100755 2021/CH6/EX6.4/EX6_4.sce create mode 100755 2021/CH6/EX6.5/EX6_5.pdf create mode 100755 2021/CH6/EX6.5/EX6_5.sce create mode 100755 2021/CH6/EX6.6/EX6_6.pdf create mode 100755 2021/CH6/EX6.6/EX6_6.sce create mode 100755 2021/CH6/EX6.7/EX6_7.pdf create mode 100755 2021/CH6/EX6.7/EX6_7.sce create mode 100755 2021/CH6/EX6.8/EX6_8.pdf create mode 100755 2021/CH6/EX6.8/EX6_8.sce (limited to '2021/CH6') 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 Binary files /dev/null and b/2021/CH6/EX6.3/EX6_3.pdf 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 Binary files /dev/null and b/2021/CH6/EX6.4/EX6_4.pdf 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 Binary files /dev/null and b/2021/CH6/EX6.5/EX6_5.pdf 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 Binary files /dev/null and b/2021/CH6/EX6.6/EX6_6.pdf 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 Binary files /dev/null and b/2021/CH6/EX6.7/EX6_7.pdf 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 Binary files /dev/null and b/2021/CH6/EX6.8/EX6_8.pdf 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"); -- cgit