diff options
Diffstat (limited to '914/CH2/EX2.9/ex2_9.sce')
-rwxr-xr-x | 914/CH2/EX2.9/ex2_9.sce | 17 |
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);
+
|