blob: 492d9ebea39361c3bfb71b87956e3b5bf19c2114 (
plain)
1
2
3
4
5
6
7
8
9
10
|
clc
//initialization of new variables
clear
t=2 //cm thickness
U=3 //m/s Velocity
mu=0.29 //kg/m s Coefficient of Viscocity
//calculations
tau=mu*U/(t*10^-2)
//results
printf(' Shear = %d N/m^2',tau)
|