blob: 491ca4423c2b9fc5da5eac2255a0dfe78558456d (
plain)
1
2
3
4
5
6
|
clc;
us=0.25;// Coeffiecient of static friction
//Applying equillibrium equation we get relation in x
printf("Apply equillibrium equations. It is theoritical part. \n");
x=150*2-18.75*2+37.5;//mm , Distance at which the applied load can be supported
printf("Minimum distance at which the applied load can be supported is %.0f mm\n",x);
|