diff options
Diffstat (limited to '3774/CH8/EX8.3/Ex8_3.sce')
-rw-r--r-- | 3774/CH8/EX8.3/Ex8_3.sce | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/3774/CH8/EX8.3/Ex8_3.sce b/3774/CH8/EX8.3/Ex8_3.sce new file mode 100644 index 000000000..a2cac9a14 --- /dev/null +++ b/3774/CH8/EX8.3/Ex8_3.sce @@ -0,0 +1,24 @@ +// exa 8.3 Pg 229 +clc;clear;close; + +// Given Data +Fi=40;// N +d=3;// mm +C=6;// spring index +n=15;// factor of safety +tau=650;// N/mm.sq. +G=84;// kN/mm.sq. + +// Wahl's correction factor +Kw=(4*C-1)/(4*C-4)+0.615/C;// Wahl's correction factor +printf("\n Wahl''s correction factor = %.4f ",Kw) + +// Initial tortional shear stress +tau_i=Kw*(8*Fi*C)/(%pi*d**2);// MPa +printf('\n Initial tortional shear stress = %.2f MPa',tau_i) +k=G*10**3*d/(8*C**3*n);// spring stiffness +printf('\n spring stiffness = %.2f N/mm',k) +// Spring load to cause yielding +//tau=Kw*(8*Fi*C)/(%pi*d**2) +F=tau/(Kw*(8*C)/(%pi*d**2)) +printf('\n Spring load to cause yielding = %.1f N',F) |