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/CH8/EX8.20/Ex8_20.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/CH8/EX8.20/Ex8_20.sce')
-rw-r--r-- | 3772/CH8/EX8.20/Ex8_20.sce | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/3772/CH8/EX8.20/Ex8_20.sce b/3772/CH8/EX8.20/Ex8_20.sce new file mode 100644 index 000000000..86efd46ff --- /dev/null +++ b/3772/CH8/EX8.20/Ex8_20.sce @@ -0,0 +1,32 @@ +// Problem 8.20,Page no.219 + +clc;clear; +close; + +alpha=30 //degree +E=200*10**9 //Pa +G=80*10**9 //pa + +//Calculations + +//For alpha=30 //Degree +//dell=64*W*R**3*n*sec(alpha)*(d**4)**-1*(cos(alpha)**2*G**-1+2*sin(alpha)**2*E**-1) +//Now substituting values in above equation we get + +//dell_1=64*W*R**3*n*(d**4)**-1*1330*(10**9)**-1 (equation 1) + +//For alpha=0 //Degree +//dell=64*W*R**3*n*sec(alpha)*(d**4)**-1*(cos(alpha)**2*G**-1+2*sin(alpha)**2*E**-1) +//Now substituting values in above equation we get + +//dell_2=64*W*R**3*n*(d**4)**-1*1250*(10**9)**-1 (equation 2) + +//subtracting equation 1 and equation 2 we get +//Let dell_1-dell_2=X +//X=64*W*R**3*n*(d**4)**-1*80*(10**9) + +//Let Y=X*dell_1**-1*100 +Y=80*1330**-1*100 //% under estimation of axial extension + +//Result +printf("%% under estimation of axial extension is %.2f",Y) |