diff options
Diffstat (limited to '914/CH2/EX2.2/ex2_2.sce')
-rwxr-xr-x | 914/CH2/EX2.2/ex2_2.sce | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/914/CH2/EX2.2/ex2_2.sce b/914/CH2/EX2.2/ex2_2.sce new file mode 100755 index 000000000..4f797ec46 --- /dev/null +++ b/914/CH2/EX2.2/ex2_2.sce @@ -0,0 +1,11 @@ +clc;
+warning('off');
+printf("\n\n example2.2 - pg29");
+// given
+dely=0.1; //[m] - distance between two parralel plates
+delUx=0.3; //[m/sec] - velocity of a plate
+mu=0.001; //[kg/m*sec] - viscosity
+// using the formula tauyx=F/A=-mu*(delUx/dely)
+tauyx=-mu*(delUx/dely);
+printf("\n\n the momentum flux and the the force per unit area,(which are the same thing) is\n tauyx=F/A=%fN/m^2",tauyx);
+
|