diff options
author | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
commit | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch) | |
tree | dbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /629/CH5/EX5.6 | |
parent | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff) | |
download | Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2 Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip |
initial commit / add all books
Diffstat (limited to '629/CH5/EX5.6')
-rw-r--r-- | 629/CH5/EX5.6/ex5_6.txt | 2 | ||||
-rw-r--r-- | 629/CH5/EX5.6/example5_6.sce | 14 |
2 files changed, 16 insertions, 0 deletions
diff --git a/629/CH5/EX5.6/ex5_6.txt b/629/CH5/EX5.6/ex5_6.txt new file mode 100644 index 000000000..222418eef --- /dev/null +++ b/629/CH5/EX5.6/ex5_6.txt @@ -0,0 +1,2 @@ +
+The time elapsed for that drop in water tank = 31.9 s.
\ No newline at end of file diff --git a/629/CH5/EX5.6/example5_6.sce b/629/CH5/EX5.6/example5_6.sce new file mode 100644 index 000000000..6abde25b5 --- /dev/null +++ b/629/CH5/EX5.6/example5_6.sce @@ -0,0 +1,14 @@ +clear
+clc
+//Example 5.6 WATER LEVEL DROP RATE IN DRAINING TANK
+D1=0.1; //diameter of outlet[m]
+DT=1; //diameter of tank[m]
+A1=(%pi*D1^2)/4 //[m^2]
+AT=(%pi*DT^2)/4 //[m^2]
+g=9.81; //[m/s^2]
+ho=2; //[m]
+hf=0.5; //[m]
+//mi=0,mo=rho*A1*V1=rho*sqrt(2gh)*A1, mcv=mi-mo
+//continuity equation, mi=d(rho*AT*h)/dt
+t=integrate('(-AT)*(A1*(sqrt(2*g*h)))^(-1)','h',ho,hf)
+printf("\nThe time elapsed for that drop in water tank = %.1f s.\n",t)
\ No newline at end of file |