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 /3772/CH13/EX13.8/Ex13_8.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 '3772/CH13/EX13.8/Ex13_8.sce')
-rw-r--r-- | 3772/CH13/EX13.8/Ex13_8.sce | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/3772/CH13/EX13.8/Ex13_8.sce b/3772/CH13/EX13.8/Ex13_8.sce new file mode 100644 index 000000000..8ba8f6c7b --- /dev/null +++ b/3772/CH13/EX13.8/Ex13_8.sce @@ -0,0 +1,36 @@ +// Problem no 13.8,Page No.307 + +clc;clear; +close; + +b=15 //cm //width of plank +t=2.5 //cm //thickness of planf +F_1=1250 //N //Shear Force +F_2=5*10**3 //shaear force transmitted by screw +d=15 //cm //Depth of plank +D=20 //cm //Overall depth + +//Calculations + +Y=D*2**-1 //C.G of beam +y_1=t*2**-1 //C.G of flange + +I=((b*D**3)-(D*2**-1*b**3))*12**-1 //cm**4 //M.I + +//Shear Stress in the Flange at 7.5 cm from N.A +X_1=F_2*b*t*(Y-y_1)*10**-6*(I*10**-8*d*10**-2)**-1*10**-3 + +//Shear Stress in the web at 7.5 cm from N.A +X_2=X_1*d*(2*t)**-1 + +//shear stress at N.A +X_max=F_2*(b*t*(Y-y_1)+2*t*d*2**-1*d*4**-1)*10**-6*(I*10**-8*2*t*10**-2)**-1*10**-3 + +//horizontal shear force per %pitch length to the shearing strength of two bolts we have +//X_h=X_2*10**3*2*t*10**-2*p + +//Equating horizontal shear force per %pitch length to the shearing strength of two bolts we have +p=F_1*2*(X_2*10**3*2*t*10**-2)**-1*10**2 + +//Result +printf("The Min spacing of screw along the beam is %.2f",p);printf(" cm") |