summaryrefslogtreecommitdiff
path: root/746/CH9/EX9.06
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:38:01 +0530
committerprashantsinalkar2017-10-10 12:38:01 +0530
commitf35ea80659b6a49d1bb2ce1d7d002583f3f40947 (patch)
treeeb72842d800ac1233e9d890e020eac5fd41b0b1b /746/CH9/EX9.06
parent7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (diff)
downloadScilab-TBC-Uploads-f35ea80659b6a49d1bb2ce1d7d002583f3f40947.tar.gz
Scilab-TBC-Uploads-f35ea80659b6a49d1bb2ce1d7d002583f3f40947.tar.bz2
Scilab-TBC-Uploads-f35ea80659b6a49d1bb2ce1d7d002583f3f40947.zip
updated the code
Diffstat (limited to '746/CH9/EX9.06')
-rwxr-xr-x746/CH9/EX9.06/9_06.sce17
1 files changed, 0 insertions, 17 deletions
diff --git a/746/CH9/EX9.06/9_06.sce b/746/CH9/EX9.06/9_06.sce
deleted file mode 100755
index 3786c2baa..000000000
--- a/746/CH9/EX9.06/9_06.sce
+++ /dev/null
@@ -1,17 +0,0 @@
-//Bending moment//
-pathname=get_absolute_file_path('9.06.sce')
-filename=pathname+filesep()+'9.06-data.sci'
-exec(filename)
-//Velocity in m/sec:
-V=s*5/18
-//Reynolds number:
-Re=d*V*D/u
-//Value of Cd is obtained as:
-Cd=0.35;
-//Area(in m^2):
-A=L^2;
-//Moment about the chimney base(in N-m):
-M0=Cd*A*D/4*d*V^2
-printf("\n\nRESULTS\n\n")
-printf("\n\nBending moment at the bottom of the chimney: %.3f N-m\n\n",M0)
-