diff options
Diffstat (limited to '2021/CH8/EX8.9/Ex8_9.sce')
-rwxr-xr-x | 2021/CH8/EX8.9/Ex8_9.sce | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/2021/CH8/EX8.9/Ex8_9.sce b/2021/CH8/EX8.9/Ex8_9.sce new file mode 100755 index 000000000..bababab8e --- /dev/null +++ b/2021/CH8/EX8.9/Ex8_9.sce @@ -0,0 +1,18 @@ +//Finding of Time Taken
+//Given
+d1=3;
+d2=0.4;
+H1=4;
+H2=2;
+g=9.81;
+Cd=0.6;
+//To Find
+A=(%pi/4)*d1^2;
+a=(%pi/4)*d2^2;
+//To empty from 4-2 meter
+c=sqrt(H1)-sqrt(H2);
+T=(2*A*c)/(Cd*a*sqrt(2*g));
+disp("Time Taken To empty from 4 to 2 meter ="+string(T)+" seconds");
+//To empty the tank fully
+T1=(2*A*sqrt(H1))/(Cd*a*sqrt(2*g));
+disp("Time Taken To empty the tank ="+string(T1)+" seconds");
|