summaryrefslogtreecommitdiff
path: root/24/CH6/EX6.9/Example6_9.sce
blob: 7a8992679a4d44c624de7fa5b12a6b540e1b99d8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
//Given that
g = 9.8  //in m/s^2
mass = 1600  //in kg
v_cons = 20  //in m/s
R_track = 190  //in meter

//Sample Problem 6-9
printf("**Sample Problem 6-9**\n")
N = mass * g
f_s = mass * v_cons^2 /R_track
mu_s = f_s/N
printf("The coefficient of static friction for the given surface is %f", mu_s)