blob: 58559fed9a4d49255faa7bb118db44d055a326d2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
//find the length of the sliding bearing
clc
//solution
//given
d=25//mm/diameter
P=2500//N/force
p=5//(N/mm^2)//bearing pressure
//A=l*d =l*25//(mm^2)//projected area of bearing
//p=P/A//pressure=force/area
//therefore
l=(P/(25*5))//mm//length
printf("the required length is,%f mm",l)
|