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 --- 2132/CH7/EX7.3/Example7_3.sce | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100755 2132/CH7/EX7.3/Example7_3.sce (limited to '2132/CH7/EX7.3/Example7_3.sce') diff --git a/2132/CH7/EX7.3/Example7_3.sce b/2132/CH7/EX7.3/Example7_3.sce new file mode 100755 index 000000000..ecafa9af1 --- /dev/null +++ b/2132/CH7/EX7.3/Example7_3.sce @@ -0,0 +1,16 @@ +//Example 7.3 +clc; +clear; +close; +format('v',7); +//Given data : +d=200/1000;//meter +Q=40*10^-3;//m^3/sec +A=%pi*d^2/4;//m^2 +vm=Q/A;//m/s +v=0.25*10^-4;//m^2/s +Rn=vm*d/v;//Reynolds no. +disp(Rn,"Reynolds number for flow : "); +disp("This is turbulent flow because Rn no. is greater than 4000."); +disp(Rn/8,"New Reynolds number for flow : "); +disp("This is laminar flow because Rn no. is less than 2000."); -- cgit