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 /3705/CH5/EX5.11/Ex5_11.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 '3705/CH5/EX5.11/Ex5_11.sce')
-rw-r--r-- | 3705/CH5/EX5.11/Ex5_11.sce | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/3705/CH5/EX5.11/Ex5_11.sce b/3705/CH5/EX5.11/Ex5_11.sce new file mode 100644 index 000000000..8497a6f3a --- /dev/null +++ b/3705/CH5/EX5.11/Ex5_11.sce @@ -0,0 +1,21 @@ + +clear//
+
+//Variable Declaration
+A=2630 //Area in mm^2
+y_bar=536.6 //Neutral Axis depth from top in mm
+tau_w=100 //Allowable stress in MPa
+sigma_b_w=280 //Allowable bending stress in MPa
+d=0.019 //Diameter of the rivet in m
+t_web=0.01 //Thickness of the web in m
+I=4140 //Moment of inertia in m^4
+V=450 //Max shear allowable in kN
+
+//Calculations
+Q=A*y_bar //first moment in mm^3
+Fw=(%pi*d**2)*tau_w*10**6 //Allowable force in N
+Fw_2=d*t_web*sigma_b_w*10**6*0.5 //Allowable force in N
+e=Fw_2*I*(V*10**3*Q*10**-3)**-1 //Allowable spacing in m
+
+//Result
+printf("\n The maximum spacing allowed is %0.1f mm",e*1000)
|