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 /914/CH2/EX2.3 | |
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 '914/CH2/EX2.3')
-rwxr-xr-x | 914/CH2/EX2.3/ex2_3.sce | 10 |
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);
|