diff options
author | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
commit | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch) | |
tree | dbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3647/CH1/EX1.3 | |
parent | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff) | |
download | Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2 Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip |
initial commit / add all books
Diffstat (limited to '3647/CH1/EX1.3')
-rw-r--r-- | 3647/CH1/EX1.3/1_3.sce | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/3647/CH1/EX1.3/1_3.sce b/3647/CH1/EX1.3/1_3.sce new file mode 100644 index 000000000..8d4d4a726 --- /dev/null +++ b/3647/CH1/EX1.3/1_3.sce @@ -0,0 +1,20 @@ +//velocity is uniform and force and velocity
+clc
+//initialisation of variables
+f=90//lbf
+w=6//tonf
+m=10//lbf/tonf
+f1=1//min
+h=0.8//hp
+m1=m*w//lbf
+n=f-m1//lbf
+p=2240//lbf
+f2=0.0715//ft/s^2
+r=550//ft
+//CALCULATIONS
+S=1/2*f2*(m1)^2//ft
+V=f2*m1//ft/s
+H=(f*V)/r//ft
+V1=h/(m1/r)//ft/s
+//RESULTS
+printf('the velocity is uniform and force and velocity=% f ft/s',V1)
|