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/CH11/EX11.6/Ex11_6.sce | |
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/CH11/EX11.6/Ex11_6.sce')
-rw-r--r-- | 3647/CH11/EX11.6/Ex11_6.sce | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/3647/CH11/EX11.6/Ex11_6.sce b/3647/CH11/EX11.6/Ex11_6.sce new file mode 100644 index 000000000..5a3ce358e --- /dev/null +++ b/3647/CH11/EX11.6/Ex11_6.sce @@ -0,0 +1,25 @@ +//Solutions to Problems In applied mechanics +//A N Gobby +clear all; +
+clc
+//initialisation of variables
+w=62.5//lbf/ft
+w1=1.5//ft
+d=4//ft
+w2=3//ft
+g=0.8//in
+p1=2/3*w1//ft
+q=2/3*p1//ft
+//CALCULATIONS
+t1=w1*w*w1/2//lbf
+p=(g*w*p1*p1)/2//lbf
+A=g*w*p1*1/2//lbf
+T=(w*1/2*1/2/2)//lbf
+P=t1-p-A-T//lbf
+h=2.9*P/(t1*1-(p*2)/3-(p*(1*1/4))-(T*1.33))//ft
+F=P*a/w1//lbf
+H=F/2//lbf
+//RESULTS
+printf('depth of forces=% f lbf',F)
+printf('the moment of force on hinge=% f lbf',H)
|