summaryrefslogtreecommitdiff
path: root/3831/CH1/EX1.3/Ex1_3.sce
blob: 2f36ecbcd57482c939863231c6ca4c521915c09b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Example 1_3
clc;funcprot(0);
// Given data
g_c=32.174;//  ft/s^2
F=1;// lbf
m=1;// lbm

// Solution
onechunk=1;// (lbf.s^2)/lbm
// In the Engineering English units system, 1 lbf accelerates 1 lbm at a rate of
a=(F*g_c)/m;// ft/s^2
onechunk=32.174;// ft/s^2
onechunk=32.174/3.281;// m
printf("\n 1 chunk=%1.3f m",onechunk);