Help with Colebrook equation and fzero command.

11 次查看(过去 30 天)
I am trying to do a problem with the colebrook equation in which I have to find the roots of the equation to find "f". I am trying to use the fzero command along with a function file, but it is not working. How do I do this?
Re = linspace(10e4,10e7,NRe); NRe = 31; %Values for Reynold's Numbers
F = 2*log10(Re*sqrt(f))-0.8-(1/sqrt(f)); %Colebrook Equation
fcw = fzero(@fricfactor,1,2); %Attempt at fzero command
  2 个评论
John D'Errico
John D'Errico 2014-11-7
编辑:John D'Errico 2014-11-7
This is your second question I've seen about fzero from you. In the last question, you used a loop around fzero (although you do not yet seem to accept that no solution exists for that particular problem.) Is there some reason why a loop did not seem right here?
fzero does not solve multiple problems at once. Yes, it is true that careful use of arrayfun would succeed here, there is no need to use a complicated function syntax when a trivial loop would suffice. Learn to solve problems using the basic tools, and only when you clearly understand the language does it make sense to proceed to the complex.
Yianni
Yianni 2014-11-8
编辑:per isakson 2014-11-8
I figured out how to do this with one value of Re. See below:
% parameterized function
F = @(f,Re) 2*log10(Re*sqrt(f))-0.8-(1/sqrt(f));
Re = 1e4 % parameter
fun = @(f) F(f,Re); % function of x alone
x = fzero(fun,0.1)
However, I still cannot figure out how to do the looping structure. This is my approach:
Re = linspace(1e4,1e7,31);
NRe =length(Re);
F = zeros(size(Re));
for i = 1:NRe
% parameterized function
F(i) = @(f,Re) 2*log10(Re*sqrt(f))-0.8-(1/sqrt(f));
end
fun = @(f) F(f,Re); % function of x alone
x = fzero(fun,0.1);

请先登录,再进行评论。

回答(1 个)

Dong Young Kim
Dong Young Kim 2019-5-10
编辑:Dong Young Kim 2019-5-10
It can be ran with following
% parameterized function
Ret=3000:1000:1000000;
NRe=length(Ret);
for i=1:NRe
F = @(f,Re) 2*log10(Re*sqrt(f))-0.8-(1/sqrt(f));
Re = Ret(i); % parameter
fun = @(f) F(f,Re); % function of x alone
ft(i) = fzero(fun,0.1);
end

类别

Help CenterFile Exchange 中查找有关 Optimization 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by