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 --- 650/CH3/EX3.8/8.sce | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100755 650/CH3/EX3.8/8.sce (limited to '650/CH3/EX3.8/8.sce') diff --git a/650/CH3/EX3.8/8.sce b/650/CH3/EX3.8/8.sce new file mode 100755 index 000000000..18a04a849 --- /dev/null +++ b/650/CH3/EX3.8/8.sce @@ -0,0 +1,20 @@ +clc +u=0.1; // Ns/m^2 +d=0.1; //m +R=0.05; // m +Rho=900; //kg/m^3 + +v_max=2; // m/s +v=v_max/2; // m/s + +disp("At the pipe wall (r =R), therefore, the shear stress is"); +Tw=-2*u*v_max/R; +disp(Tw); +disp("N/m^2"); +disp("The negative sign indicates that the shear stress is in the opposite direction to flow."); + +disp("pressure drop per metre length of pipe is"); + +del_p=4*u*v_max/R^2; +disp(del_p); +disp("N/m"); \ No newline at end of file -- cgit