Not spotting where/how index exceeds number of array elements

2 vues (au cours des 30 derniers jours)
Brian Taff
Brian Taff le 13 Déc 2019
Commenté : Brian Taff le 21 Déc 2019
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.

Réponse acceptée

Vladimir Sovkov
Vladimir Sovkov le 14 Déc 2019
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 commentaires
Vladimir Sovkov
Vladimir Sovkov le 20 Déc 2019
Modifié(e) : Vladimir Sovkov le 20 Déc 2019
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 le 21 Déc 2019
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.

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Creating and Concatenating Matrices dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by