summaryrefslogtreecommitdiff
path: root/914/CH2/EX2.9/ex2_9.sce
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /914/CH2/EX2.9/ex2_9.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 '914/CH2/EX2.9/ex2_9.sce')
-rwxr-xr-x914/CH2/EX2.9/ex2_9.sce17
1 files changed, 17 insertions, 0 deletions
diff --git a/914/CH2/EX2.9/ex2_9.sce b/914/CH2/EX2.9/ex2_9.sce
new file mode 100755
index 000000000..ab3a5d511
--- /dev/null
+++ b/914/CH2/EX2.9/ex2_9.sce
@@ -0,0 +1,17 @@
+clc;
+warning("off");
+printf("\n\n example2.9 - pg44");
+// given
+A=5; //[m^2] - area of the plates
+Ft=0.083 //[N] - force on the top plate
+Fb=-0.027; //[N] - force on the bottom plate
+ut=-0.3; //[m/sec] - velocity of the top plate
+ub=0.1; //[m/sec] - velocity of the bottom plate
+dely=0.01; //[m]
+delux=ut-ub; //[m/sec]
+// using the formula tauyx=F/A=-mu(delux/dely)
+tauyx=(Ft-Fb)/A;
+mu=tauyx/(-delux/dely); //[Ns/m^2]
+mu=mu*10^3; //[cP]
+printf("\n\n The viscosity of toulene in centipose is %fcP",mu);
+