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.11 | |
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.11')
-rw-r--r-- | 3772/CH7/EX7.11/Ex7_11.sce | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/3772/CH7/EX7.11/Ex7_11.sce b/3772/CH7/EX7.11/Ex7_11.sce new file mode 100644 index 000000000..f37f78e53 --- /dev/null +++ b/3772/CH7/EX7.11/Ex7_11.sce @@ -0,0 +1,31 @@ +// Problem no 7.11,Page no.191 + +clc;clear; +close; + +P=4415 //KW //Power transmitted +N=110 //r.p.m +sigma_s=75 //MPs //shear stress +G=85 //GPa + +//Calculations + +//D=2*d + +T=P*60000*(2*%pi*N)**-1 //N*m //Torque Transmitted + +//T=%pi*16**-1*(D**4-d**4)*D**-1*sigma_s //N*m + +//After substituting and simplifying above equations,we get, + +D=(T*16*%pi**-1*(sigma_s*10**6)**-1)**(1*3**-1) +d=D*2**-1 +X=5*(sigma_s*10**6)**2*(16*G*10**9)**-1 + +//U*V**-1 //Energy stored +//X=U*V**-1 //Energy stored //Notations has been changed + +//Result +printf("Diameter of shaft is:D %.2f",D);printf(" cm") +printf("\n :d %.2f",d);printf(" cm") +printf("\n Energy stored per cubic meter is %.2f",X);printf(" N/m**2") |