From 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 Mon Sep 17 00:00:00 2001 From: prashantsinalkar Date: Tue, 10 Oct 2017 12:27:19 +0530 Subject: initial commit / add all books --- 629/CH5/EX5.6/example5_6.sce | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 629/CH5/EX5.6/example5_6.sce (limited to '629/CH5/EX5.6/example5_6.sce') 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 -- cgit