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 /3774/CH9/EX9.1 | |
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 '3774/CH9/EX9.1')
-rw-r--r-- | 3774/CH9/EX9.1/Ex9_1.sce | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/3774/CH9/EX9.1/Ex9_1.sce b/3774/CH9/EX9.1/Ex9_1.sce new file mode 100644 index 000000000..4749d57e1 --- /dev/null +++ b/3774/CH9/EX9.1/Ex9_1.sce @@ -0,0 +1,32 @@ +// exa 9.1 Pg 256 +clc;clear;close; + +// Given Data +d=26;// mm +p=5;// mm +W=10;// kN +Do=50;// mm +Di=20;// mm +mu=0.2;// coefficient of thread friction +mu_c=0.15;// coefficient of collar friction +N=15;// rpm +pb=6;// MPa + +dm=d-p/2;// mm +dc=d-p;// mm +t=p/2;//mm +l=2*p;// mm +alfa=atand(l/(%pi*dm));// degree +fi=atand(mu);// degree +Tf=W*dm/2*tand(alfa+fi);// N.mm +Tc=mu_c*W/4*(Do+Di);// N.mm +T=Tf+Tc;// N.mm +printf('\n (a) Stress in the screw') +sigma_c=4*W*10**3/(%pi*dc**2);// N/mm.sq. +printf('\n Direct compressive stress = %.2f N/mm.sq',sigma_c) +tau=16*T*10**3/(%pi*dc**3);//N/mm.sq. +printf('\n Tortional shear stress = %.2f N/mm.sq',tau) +tau_max=sqrt(sigma_c**2/4+tau**2);//MPa +printf('\n Maximum shear stress = %.2f N/mm.sq',tau_max) +n=W*10**3/(%pi*dm*t*pb); +printf('\n\n (b) number of threads of nut in engagement = %.f',n) |