diff options
Diffstat (limited to '3137/CH16/EX16.58/Ex16_58.sce')
-rwxr-xr-x | 3137/CH16/EX16.58/Ex16_58.sce | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/3137/CH16/EX16.58/Ex16_58.sce b/3137/CH16/EX16.58/Ex16_58.sce new file mode 100755 index 000000000..271501452 --- /dev/null +++ b/3137/CH16/EX16.58/Ex16_58.sce @@ -0,0 +1,11 @@ +//Initilization of variables
+W=50 //lb
+g=32.2
+//Calculations
+//Using equations of motion
+a=(10/(W/g)) //ft/s^2
+B=((2.5*(W/g)*a)+4*W-1.5*10)/8 //lb
+A=50-B //lb
+//Result
+clc
+printf('The solution is A=%f lb B=%f lb and a=%f ft/s^2',A,B,a)
|