blob: 58873b8d4a0c9fafd18d5210a87e357519f0d4b0 (
plain)
1
2
3
4
5
6
7
8
9
10
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)
|