diff options
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) |