summaryrefslogtreecommitdiff
path: root/1962/CH7/EX7.5/example7_5.sce
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /1962/CH7/EX7.5/example7_5.sce
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '1962/CH7/EX7.5/example7_5.sce')
-rwxr-xr-x1962/CH7/EX7.5/example7_5.sce16
1 files changed, 16 insertions, 0 deletions
diff --git a/1962/CH7/EX7.5/example7_5.sce b/1962/CH7/EX7.5/example7_5.sce
new file mode 100755
index 000000000..a6a67dcc7
--- /dev/null
+++ b/1962/CH7/EX7.5/example7_5.sce
@@ -0,0 +1,16 @@
+
+//example 7.5
+//page 270
+clc; funcprot(0);
+//initialisation of variable
+S=1.26;
+mu=0.862;
+rho=1260;
+pi=3.14;
+Cd=35;
+U=0.05;
+D=0.01;
+Re=rho*U*D/mu;
+Fd=1/2*Cd*rho*U^2*pi*D^2/4;
+disp(Fd,"drag force (N)");
+clear