blob: b7b9e69edc0cc311e000d81eecdbd277a8ae47d2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
//Solutions to Problems In applied mechanics
//A N Gobby
clear all;
clc
//initialisation of variables
d=3//in
v=40//ft/s
a=3000//ft/s^2
p=5.31//in
//CALCULATIONS
U=sqrt(a/(d/12))//sec^-1
E=(U*60/(2*%pi))//rev/min
P=2/U//sec
W=U*(p/12)//ft/s
M=U^2*(p/12)//ft/s^2
//RESULTS
printf('the velocity of acceleration against time during one complete=% f ft/s^2',M)
|