diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /3137/CH16/EX16.58 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '3137/CH16/EX16.58')
-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)
|