diff options
Diffstat (limited to '1484/CH2/EX2.10')
-rwxr-xr-x | 1484/CH2/EX2.10/2_10.sce | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/1484/CH2/EX2.10/2_10.sce b/1484/CH2/EX2.10/2_10.sce new file mode 100755 index 000000000..03ac32082 --- /dev/null +++ b/1484/CH2/EX2.10/2_10.sce @@ -0,0 +1,20 @@ +clc
+//initialisation of variables
+l= 91 //ft
+w= 30 //ft
+h= 6 //ft
+W= 40 //tons
+a= 3 //degrees
+cg= 3 //ft
+d= 4 //ft
+W1= 60 //tons
+cg1= 1 //ft
+//CALCULATIONS
+W2= (l*w*d*64/2240)-W1
+y= (W2*(h/2)+W1*(cg+d))/(l*w*d*64/2240)
+BG= y-(d/2)
+BM= l*w^3/(12*l*w*d)
+GM= BM-BG
+dx= GM*l*w*d*64*tand(a)/(60*2240)
+//RESULTS
+printf ('maximum distance through which the load can be shifted= %.1f ft ',dx)
|