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 /764/CH7/EX7.14.a | |
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 '764/CH7/EX7.14.a')
-rwxr-xr-x | 764/CH7/EX7.14.a/data7_14.sci | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/764/CH7/EX7.14.a/data7_14.sci b/764/CH7/EX7.14.a/data7_14.sci new file mode 100755 index 000000000..7fcd6fd76 --- /dev/null +++ b/764/CH7/EX7.14.a/data7_14.sci @@ -0,0 +1,23 @@ +
+//(Threaded Joints) Example 7.14
+//Refer Fig.7.29 on page 246
+//Force acting on bracket P (kN)
+P = 5
+//Angle made by the force with the vertical theta (degree)
+theta = 60
+//Number of bolts N
+N = 4
+//Tensile yield strength of 30C8 Syt (N/mm2)
+Syt = 400
+//Factor of safety fs
+fs = 5
+//Distance of the centre of gravity from the lower edge cg (mm)
+cg = 60 + 100
+//Distance between the point force and lower edge f (mm)
+f = 200
+//Distance of the force point from the tilting edge t (mm)
+t = 240
+//Distance between bolt1 and pt.C l1 (mm)
+l1 = 200 + 60
+//Distance between bolt2 and pt.C l2 (mm)
+l2 = 60
|