diff options
Diffstat (limited to '1268/CH2/EX2.1/2_1.sce')
-rw-r--r-- | 1268/CH2/EX2.1/2_1.sce | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/1268/CH2/EX2.1/2_1.sce b/1268/CH2/EX2.1/2_1.sce new file mode 100644 index 000000000..58873b8d4 --- /dev/null +++ b/1268/CH2/EX2.1/2_1.sce @@ -0,0 +1,11 @@ +clc;
+disp("Example 2.1")
+mew= 5e-3
+//coefficient of viscosity in kg/ms
+u=0.1
+// velocity in m/s
+b=3.5e-3
+// width in metres
+tau= (mew*u)/b // the value of shear stress
+disp(" The value of shear stress is ")
+disp(tau)
|