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.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 '3772/CH7/EX7.1')
-rw-r--r-- | 3772/CH7/EX7.1/Ex7_1.sce | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/3772/CH7/EX7.1/Ex7_1.sce b/3772/CH7/EX7.1/Ex7_1.sce new file mode 100644 index 000000000..5bdf512b4 --- /dev/null +++ b/3772/CH7/EX7.1/Ex7_1.sce @@ -0,0 +1,40 @@ +// Problem no 7.1,Page no.183 + +clc;clear; +close; + +G=84 //Gpa //Modulus of Rigidity +N=110 //no. of revolution +//d*D**-1=0.6 //Ratio of inner diameter to outer diameter +sigma_s=63 //MPa //shear stress +L=3 //m //Length of shaft +P=590 //KW //Power + +//Calculation + +//P=2*%pi*N*T_mean*60000**-1 //KW //Power +T_mean=P*60000*(2*%pi*N)**-1 //N*m //Mean Torque + +//I_p=p*32**-1*(D**4-d**4) + +//After substituting value of d in above equation we get +//I_p=0.0272*%pi*D**4 //m**4 //Polar moment of Inertia + +T_max=1.2*T_mean //N*m //Max torque + +//Using Relation +//T_max*T_p**-1=sigma_s*R**-1=G*theta*L**-1 + +//After substituting values and simplifying we get + +D=(5.7085*10**-3)**0.3333 //m //Diameter of shaft + +theta=1.4*%pi*180**-1 //radians + +//theta=((T_max*L)*(G*10**9*I_p)) //radians + +//After substituting values and simplifying we get +D_1=(1.0513*10**-3)**0.25 + +//Result +printf("The Minimum external diameter is %.2f",D_1);printf(" m") |