blob: 7c2d95c465fd36d54a91ce851671c13b628570fe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
clc
//initialisation of variables
F=37//N
g=9.8//m/s^2
w=90//kg
L=7.5*10^-2//m
D=5*10^-2//mm
//CALCULATIONS
f=F/(w*g)
P=(w*g)/(L*D)//kPa
//RESULTS
printf('The friction coefficent and lubricant pressure is=% f kPa',P)
|