Not spotting where/how index exceeds number of array elements

2 次查看(过去 30 天)
I'm trying to solve a Navier-Stokes setup in a cylindrical coordinate system and am bumping up against an array indexing challenge. Any help folks might be able to offer to straighten matters out would be most appreciated. I'm including my live editor content below.

采纳的回答

Vladimir Sovkov
Vladimir Sovkov 2019-12-14
Is this what you want? Live script vesion is attached.
xmesh = linspace(0.01,0.05,5);
solinit = bvpinit(xmesh, @guess);
sol = bvp4c(@bvpfcn, @bcfcn, solinit);
plot(sol.x, sol.y, '-o')
function bound = bcfcn(ua,ub)
bound = [ua(1)-0.1, ub(1)];
end
function g = guess(r)
g = [1*(0.05-r)/(0.05-0.01), -1/(0.05-0.01)];
end
function dudr = bvpfcn(r,u)
dudr = [u(2), u(2)./r];
end
  4 个评论
Vladimir Sovkov
Vladimir Sovkov 2019-12-20
编辑:Vladimir Sovkov 2019-12-20
No prob.
I do not understand why you replace your initial equation by . It seems to me that must have been with the "plus" sign, and, consequently, dudr = [u(2), u(2)./r] in the program, isn't it? Otherwise, you are solving the equation .
Brian Taff
Brian Taff 2019-12-21
You are correct, I had mistyped the original equation in the live editor's documentation. It should have been stated as u'' + u'/r = 0.
The downstream function calls do, in fact, solve this equation and the results were as intended.

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Creating and Concatenating Matrices 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by