summaryrefslogtreecommitdiff
path: root/3137/CH16/EX16.61/Ex16_61.sce
blob: 5f83c79947ab261b7632db0bfa6794a3f51b9d9f (plain)
1
2
3
4
5
6
7
8
9
10
//Initilization of variables
r=15/12 //ft
W=600 //lb
theta=25 //degrees
//calculations
ax=(r*W*sind(theta))/((1/r)*14.5+r*18.6) //ft/s^2
F=(W*sind(theta))-18.6*9.09 //lb
//Result
clc
printf('The solution is F=%f lb and ax=%f ft/s^2',F,ax)