blob: 318e94786854ee6e92f7dbf86bddeb9877ed6dea (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
//Solutions to Problems In applied mechanics
//A N Gobby
clear all;
clc
//initialisation of variables
t=3//sec
m=20//per mint
a=4//ft
//CALCULATIONS
T=2*%pi/t//ft/s
V=T*a//ft/s
F=(T)^2*a//ft/s^2
//RESULTS
printf('th acceleration x must be a maximum=% f ft/s^2',F)
|