--> //initializations

--> T1=600 //Nm (torque)
 T1  = 

   600.


--> D=7.5 //cm (diameter)
 D  = 

   7.5


--> H=11.0 //cm (length)
 H  = 

   11.


--> T2=200 //Nm (torque)
 T2  = 

   200.


--> //calculations

--> s=(T1*10^-3)/(%pi*((D^2)*(H/2)+(D^3/6))*10^-6) //(shear strength)
 s  = 

   503.00822


--> sr=(T2*10^-3)/(%pi*((D^2)*(H/2)+(D^3/6))*10^-6) // (shear strength in remoulded state)
 sr  = 

   167.66941


--> S=s/sr //(sensitivity of the soil)
 S  = 

   3.


--> //results

--> printf('shear strength of soil=%f',s) //KN/m^2
shear strength of soil=503.008215
--> printf('shear strength in remoulded state=%f',sr) //KN/m^2
shear strength in remoulded state=167.669405
--> printf('sensitivity of the soil=%f',S)
sensitivity of the soil=3.000000
