I'm following the method in the two images in an attempt to obtain a value for β. I know that there's a mistake in (4.36) from here so I used Mathematica's solution to continue the solution. I used the following code:
ClearAll[Y, y, \[Mu] , k, a, \[Theta]]
sol = DSolve[{Y''[y] - ((\[Mu] k \[Pi])/a)^2 Y[y] == (-8 \[Theta])/(
k \[Pi]), Y[-b/2] == 0, Y[b/2] == 0}, Y, y];
Y2[y_] = FullSimplify[ExpToTrig[Y[y] /. sol[[1]]]];
\[Phi][x_, y_] = Y2[y]*Sin[(k \[Pi])/a x];
gj = 2 \!\(
\*SubsuperscriptBox[\(\[Integral]\),
FractionBox[\(-b\), \(2\)],
FractionBox[\(b\), \(2\)]]\(\((
\*SubsuperscriptBox[\(\[Integral]\), \(0\), \(a\)]\[Phi][x,
y] \[DifferentialD]x)\) \[DifferentialD]y\)\);
a = b; Gx = Gy; \[Mu] = Sqrt[Gx/Gy];
\[Beta] = gj/(Gx a b^3)
to get that β=32θsin2(πk2)(πbk−2btanh(πk2))π5bGyk5
When the author of the paper does N[Sum[\[Beta], {k, 1, 60, 2}]]
(they didn't use Mathematica but it's to get the point across) setting c=1 they the following result
which agrees with simulations. When I run N[Sum[\[Beta], {k, 1, 60, 2}]]
I get 0.140577Gy which will give me a different answer to the author of the paper.
This is the 4th time that this happens. I've been using several techniques and following various similar solutions but I can't seem to get the equations from Mathematica and from the papers to agree. Is there something wrong with my code that I'm not seeing? Can I rearrange my equation for β so that I won't end up with an extra Gy in the solution? Or is it simply that the author made a mistake?
The governing equation for Prandtl’s stress function ϕ(x,y) is ϕxx+GzyGzxϕyy=−2θ
Comments
Post a Comment