summaryrefslogtreecommitdiff
path: root/3772/CH8/EX8.20/Ex8_20.sce
blob: 86efd46ffdb87524df4eafbfbe552d0fa3edd5ce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
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)