diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /1379/CH9/EX9.1.4/example9_4.sce | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '1379/CH9/EX9.1.4/example9_4.sce')
-rwxr-xr-x | 1379/CH9/EX9.1.4/example9_4.sce | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/1379/CH9/EX9.1.4/example9_4.sce b/1379/CH9/EX9.1.4/example9_4.sce new file mode 100755 index 000000000..1485c18e6 --- /dev/null +++ b/1379/CH9/EX9.1.4/example9_4.sce @@ -0,0 +1,16 @@ +
+
+//exapple 9.4
+clc; funcprot(0);
+// Initialization of Variable
+rhoa=1.218;//density of air
+mu=1.73/100000;
+pi=3.1428;
+g=9.81;
+rhop=2280;//density of polythene
+d=0.0034;//diameter
+a=4*d^3*(rhop-rhoa)*rhoa*g/3/mu^2;//a=Cd*Re^2
+//using graph of Cd*Re^2 vs Re
+Re=2200;
+v=Re*mu/d/rhog;
+disp(v , "The terminal vrlocity in (m/s)");
|