diff options
Diffstat (limited to '2021/CH5')
-rwxr-xr-x | 2021/CH5/EX5.1/EX5_1.pdf | bin | 0 -> 12451 bytes | |||
-rwxr-xr-x | 2021/CH5/EX5.1/EX5_1.sce | 15 | ||||
-rwxr-xr-x | 2021/CH5/EX5.10/EX5_10.pdf | bin | 0 -> 18079 bytes | |||
-rwxr-xr-x | 2021/CH5/EX5.10/EX5_10.sce | 11 | ||||
-rwxr-xr-x | 2021/CH5/EX5.2/EX5_2.pdf | bin | 0 -> 19819 bytes | |||
-rwxr-xr-x | 2021/CH5/EX5.2/EX5_2.sce | 15 |
6 files changed, 41 insertions, 0 deletions
diff --git a/2021/CH5/EX5.1/EX5_1.pdf b/2021/CH5/EX5.1/EX5_1.pdf Binary files differnew file mode 100755 index 000000000..58d39cc7a --- /dev/null +++ b/2021/CH5/EX5.1/EX5_1.pdf 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 Binary files differnew file mode 100755 index 000000000..63da51fbe --- /dev/null +++ b/2021/CH5/EX5.10/EX5_10.pdf 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 Binary files differnew file mode 100755 index 000000000..74b64fe70 --- /dev/null +++ b/2021/CH5/EX5.2/EX5_2.pdf 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");
|