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/CH7/EX7.2/Ex7_2.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/CH7/EX7.2/Ex7_2.sce')
-rw-r--r-- | 3772/CH7/EX7.2/Ex7_2.sce | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/3772/CH7/EX7.2/Ex7_2.sce b/3772/CH7/EX7.2/Ex7_2.sce new file mode 100644 index 000000000..93e2e4e89 --- /dev/null +++ b/3772/CH7/EX7.2/Ex7_2.sce @@ -0,0 +1,45 @@ +// Problem no 7.2,Page no.184 + +clc;clear; +close; + +P=295 //KW //Power +N=100 //R.p.m +sigma_s=80 //MPa //shear stress + + +//Calculations + +T_mean=((P*60000)*(2*%pi*N)**-1) //N*m + +//T_max=T_mean=(%pi*D**3*sigma_s)*16**-1 +D=((T_mean*16)*(%pi*sigma_s*10**6)**-1)**0.333 //m //Diameter of solid shaft + +//For hollow shaft +//I_p_h=%pi*32**-1*(D_1**4-d_1**4) (equation 1) + +//Now d_1=0.6*D_1 +//substituting above value in equation 1,we get, + +//I_p_h=0.0272*%pi*D_1**4 + +//For solid shaft +//I_p_s=%pi*32**-1*D**4 + +//T and sigma_s being the same then I_p*R**-1 will be the same for the two shafts +//Using relation I_p_h*R_1**-1=I_p_s*R**-1 + +//Substituting values and simplifying we get + +D_1=(D**3*0.8704**-1)**0.3333333 //m //External diameter of hollow shaft +d_1=0.6*D_1 //cm //Internal diameter of hollow shaft + +A_s=%pi*4**-1*(D*10**2)**2 //cm**2 //Area of solid shaft +A_h=%pi*4**-1*(((D_1*10**2)**2)-((d_1*10**2)**2)) + +W=(A_s-A_h)*A_s**-1*100 //Percentage //Percentage saving in weight + + +//Result +printf("Diameter of solid shaft is %.5f m",D) +printf("\n Percentage saving in weight is %.2f",W);printf(" %%") |