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 --- 1394/CH17/EX17.5.1/Ex17_5_1.sce | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100755 1394/CH17/EX17.5.1/Ex17_5_1.sce (limited to '1394/CH17/EX17.5.1') diff --git a/1394/CH17/EX17.5.1/Ex17_5_1.sce b/1394/CH17/EX17.5.1/Ex17_5_1.sce new file mode 100755 index 000000000..d992de91a --- /dev/null +++ b/1394/CH17/EX17.5.1/Ex17_5_1.sce @@ -0,0 +1,16 @@ + +clc +//intitialization of variables +d = 5// cm +v = 200 // cm/sec +nu = 0.01 // cm^2/sec +D = 3.2*10^-5 // cm^2/sec +l = 30*10^-4 // cm +//Calculations +Re = d*v/nu // Flow is turbulent +E = d*v/2 // cm^2/sec +tou1 = (d^2)/(4*E)// sec +tou2 = (l^2)/(4*D) +tou = tou1 + tou2 // sec +//Results +printf("The relaxation time is %.2f sec",tou) -- cgit