Question Set 2: EG-187 Engineering Analysis For Materials: Equation 1
Question Set 2: EG-187 Engineering Analysis For Materials: Equation 1
Question Set 2: EG-187 Engineering Analysis For Materials: Equation 1
1−𝑛/2
𝑛
√𝑎 1−𝑛2 𝑁𝑓 𝐶𝜎 𝑛 𝜋 2 (𝑛 − 2) Equation 2A
𝑎𝑐 = 𝑖 −
2
Equating the two equations:
1−𝑛/2
𝑛
√𝑎 1−𝑛2 𝑁𝑓 𝐶𝜎 𝑛 𝜋 2 (𝑛 − 2) 1 𝐾𝑐 2
𝑖 − = ( )
2 𝜋 𝜎
Simplifying:
1−𝑛/2
1−𝑛/2
𝑛
√𝑎 1−𝑛2 − 𝑁𝑓 𝐶𝜎 𝑛 𝜋 2 (𝑛 − 2) 1 𝐾𝑐 2 1−𝑛/2
( 𝑖 ) =( ( ) )
2 𝜋 𝜎
𝑛
1−
𝑛 𝑁𝑓 𝐶𝜎 𝑛 𝜋 2 (𝑛 − 2) 𝑛
𝑎𝑖 2 − = 𝜋 2 −1 𝐾𝑐 2−𝑛 𝜎 𝑛−2
2
𝑛
𝑎𝑖 1− 2 𝑁𝑓 𝐶𝜎 𝑛 𝜋(𝑛 − 2)
𝑛 − 2−𝑛 = 𝜎 𝑛−2
𝜋 2 −1 𝐾𝑐 2−𝑛 2 𝐾𝑐
ai=10^-6;
n=2.7;
Kc=1.7*10^6;
Nf=10^7;
C=9.7*10^-25;
a=(Nf*C*pi*(n-2))/(Kc^(2-n));
b=-(ai^(1-n/2))/(Kc^(2-n)*pi^(n/2-1));
x=[0:10^4:10^7];
y=x.^(n-2)+a*x.^n+b;
plot(x, y);
From the graph, it is shown that f(x) passes by 0 between x=7*10^6 and x=8*10^6.
Using the MATLAB command below returns x0 (the value at which f(x)=0 and the
solution to the equation):
x0=fzero(@(x)x^(n-2)+a*x^n+b,10^7);
x0=7.6247*10^6
The problem does not specify whether the stress units in the equation are in Pa or MPa.
I suppose it is MPa, otherwise TPa is definitely unachievable by a plastic pipe.