summaryrefslogtreecommitdiff
path: root/3647/CH1/EX1.7/1_7.sce
blob: 4fe8cad1625dfc254e4806f8660c7c785d6e8681 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//Solutions to Problems In applied mechanics
//A N Gobby
clear all;
//equation of motion and acceleration
clc
//initialisation of variables
d=4//ft
w=5//lbf
v=10//lbf
q=9.27//ft/s
//CALCULATIONS
W=w*d//ft lbf
P=v*d//ft lbf
M=(q)^2/d/2//ft/s^2
//RESULTS
printf('the equation of motion and acceleration=% f ft/s^2',M)