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/CH5/EX5.1/EX5_1.pdf | Bin 0 -> 12451 bytes 2021/CH5/EX5.1/EX5_1.sce | 15 +++++++++++++++ 2021/CH5/EX5.10/EX5_10.pdf | Bin 0 -> 18079 bytes 2021/CH5/EX5.10/EX5_10.sce | 11 +++++++++++ 2021/CH5/EX5.2/EX5_2.pdf | Bin 0 -> 19819 bytes 2021/CH5/EX5.2/EX5_2.sce | 15 +++++++++++++++ 6 files changed, 41 insertions(+) create mode 100755 2021/CH5/EX5.1/EX5_1.pdf create mode 100755 2021/CH5/EX5.1/EX5_1.sce create mode 100755 2021/CH5/EX5.10/EX5_10.pdf create mode 100755 2021/CH5/EX5.10/EX5_10.sce create mode 100755 2021/CH5/EX5.2/EX5_2.pdf create mode 100755 2021/CH5/EX5.2/EX5_2.sce (limited to '2021/CH5') diff --git a/2021/CH5/EX5.1/EX5_1.pdf b/2021/CH5/EX5.1/EX5_1.pdf new file mode 100755 index 000000000..58d39cc7a Binary files /dev/null and b/2021/CH5/EX5.1/EX5_1.pdf differ diff --git a/2021/CH5/EX5.1/EX5_1.sce b/2021/CH5/EX5.1/EX5_1.sce new file mode 100755 index 000000000..df65f5113 --- /dev/null +++ b/2021/CH5/EX5.1/EX5_1.sce @@ -0,0 +1,15 @@ +//Finding of velocity and discharge +//Given +d1=0.4; +r1=d1/2; +d2=0.2; +r2=d2/2; +v1=5; +pi=3.14; +//To Find +a1=(pi*r1^2); +a2=(pi*r2^2); +v2=(a1*v1)/a2; +q2=a2*v2; +disp("Velocity at section -2 ="+string(v2)+" m/second"); +disp("Discharge ="+string(q2)+"m^3/seconds"); diff --git a/2021/CH5/EX5.10/EX5_10.pdf b/2021/CH5/EX5.10/EX5_10.pdf new file mode 100755 index 000000000..63da51fbe Binary files /dev/null and b/2021/CH5/EX5.10/EX5_10.pdf differ diff --git a/2021/CH5/EX5.10/EX5_10.sce b/2021/CH5/EX5.10/EX5_10.sce new file mode 100755 index 000000000..9342c533b --- /dev/null +++ b/2021/CH5/EX5.10/EX5_10.sce @@ -0,0 +1,11 @@ +//Finding of convective acceleration +//Given +v1=2.5; +v2=16; +s=3.75; +//To Find +a=(v2-v1)/s; +a1=v1*a; +a2=v2*a; +disp("Acceleration at inlet="+string(a1)+" m/s^2"); +disp("Acceleration at outlet="+string(a2)+" m/s^2"); diff --git a/2021/CH5/EX5.2/EX5_2.pdf b/2021/CH5/EX5.2/EX5_2.pdf new file mode 100755 index 000000000..74b64fe70 Binary files /dev/null and b/2021/CH5/EX5.2/EX5_2.pdf differ diff --git a/2021/CH5/EX5.2/EX5_2.sce b/2021/CH5/EX5.2/EX5_2.sce new file mode 100755 index 000000000..ffbaca565 --- /dev/null +++ b/2021/CH5/EX5.2/EX5_2.sce @@ -0,0 +1,15 @@ +//Finding of Discharge and velocity +//Given +d1=0.4; +d2=0.3; +d3=0.2; +pi=3.14; +//To Find +q1=(pi/4)*d1^2*3; +q2=(pi/4)*d2^2*2; +q3=q1-q2; +v3=q3/((pi/4)*d3^2); +disp("Discharge at section- 1="+string(q1)+" m^3/sec"); +disp("Discharge at section- 2="+string(q2)+" m^3/sec"); +disp("Discharge at section- 3="+string(q3)+" m^3/sec"); +disp("velocity at section- 3 ="+string(v3)+" m/sec"); -- cgit