summaryrefslogtreecommitdiff
path: root/896/CH1/EX1.6/6.sce
blob: dedc99b685c5f1148c747fe566b518e8abcc429e (plain)
1
2
3
4
5
6
7
8
9
clc
//Example 1.6
//Calculate the acceleration in ft/min^2
m=10//lbm
F=3.5//lbf
//1 lbf.s^2 = 32.2 lbm.ft
//1 min = 60 sec
a=(F/m)*32.2*60^2//ft/min^2
printf("The acceleration provided is %f ft/min^2",a);