summaryrefslogtreecommitdiff
path: root/914/CH2/EX2.3
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.3
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.3')
-rwxr-xr-x914/CH2/EX2.3/ex2_3.sce10
1 files changed, 10 insertions, 0 deletions
diff --git a/914/CH2/EX2.3/ex2_3.sce b/914/CH2/EX2.3/ex2_3.sce
new file mode 100755
index 000000000..af720e16f
--- /dev/null
+++ b/914/CH2/EX2.3/ex2_3.sce
@@ -0,0 +1,10 @@
+clc;
+warning('off');
+printf("\n\n example2.3 - pg30");
+// given
+tauyx=-0.003; //[N/m^2] - momentum flux
+dely=0.1; //[m] - distance between two parralel plates
+mu=0.01; //[kg/m*sec] - viscosity
+// using the formula tauyx=F/A=-mu*(delUx/dely)
+delUx=-((tauyx*dely)/mu)*100;
+printf("\n\n Velocity of the top plate is \n deltaUx=%fcm/sec",delUx);