summaryrefslogtreecommitdiff
path: root/3776/CH7/EX7.2
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:27:19 +0530
committerprashantsinalkar2017-10-10 12:27:19 +0530
commit7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch)
treedbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3776/CH7/EX7.2
parentb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff)
downloadScilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip
initial commit / add all books
Diffstat (limited to '3776/CH7/EX7.2')
-rw-r--r--3776/CH7/EX7.2/Ex7_2.sce23
1 files changed, 23 insertions, 0 deletions
diff --git a/3776/CH7/EX7.2/Ex7_2.sce b/3776/CH7/EX7.2/Ex7_2.sce
new file mode 100644
index 000000000..71c8e8755
--- /dev/null
+++ b/3776/CH7/EX7.2/Ex7_2.sce
@@ -0,0 +1,23 @@
+clear
+//Given
+l = 6 //m -length of the beam
+p = 3 //KN-m _ the load applied
+R_a = l*p/2 //KN -The reaction at a, Since the system is symmetry
+R_b = l*p/2 //KN -The reaction at b
+l_s = 10 //mm - The length of the screw
+shear_al = 2 //KN - The maximum load the screw can take
+I = 2.36*(10**9) //mm2 The moment of inertia of the whole system
+//We will divide this into two parts
+l_1 = 50.0 //mm
+l_2 = 50.0 //mm
+b_1 = 100.0 //mm
+b_2 = 200.0 //mm
+A_1 = l_1* b_1 //in2 - area of part_1
+y_1 = 200.0 //mm com distance
+A_2 =l_2*b_2 //mm2 - area of part_1
+y_2 = 225.0 //in com distance
+Q = 2*A_1*y_1 + A_2*y_2 // mm**3 For the whole system
+q = R_a*Q*(10**3)/I //N/mm The shear flow
+d = shear_al*(10**3)/q //mm The space between the nails
+printf("\n The minimal space between the nails %0.0f mm",d)
+printf("\n Similar calculation for 4.5 KN gives spacing of 246mm")