$$ f_{min} = \left( \frac{ 2.51 }{ Re ( 1 - \frac{Rr}{3.7} ) } \right)^2 $$
Now, to find a better expression for fmax, I realized there was a better approach attainable by rearranging the Colebrook-White equation.
$$ \frac{1}{10^{\frac{1}{2 \sqrt{f}} } } = \frac{Rr}{3.7} + \frac{ 2.51 }{ Re \sqrt{f} } $$
The plot:
- LHS limits to 1
- RHS limits to Rr/3.7
In order to get an upper-bounded expression for f, the LHS only needs to be replaced with a function that is absolutely lower than itself. Then not only will that produce a value that is always necessarily larger than the correct solution for f, but it will also be very well bounded, because it's replacing one asymptotic function with another similarly asymptotic function. The obvious replacement is to replace the LHS with a function of the form of 1-1/sqrt(f), to match the RHS. The ultimate form I went with was:
$$ \frac{1}{10^{\frac{1}{2 \sqrt{f}} } } > 1-\frac{ \ln{10} }{ 2 \sqrt{f} } $$
Plugging into the last form of the Colebrook-White equation gives:
$$ 1-\frac{ \ln{10} }{ 2 \sqrt{f} } = \frac{Rr}{3.7} + \frac{ 2.51 }{ Re \sqrt{f} } $$
It follows that the solution to this equation is an absolute upper limit for the equation. The actual algebra is fairly trivial, and gives:
$$ f_{max} = \left( \frac{ \frac{2.51}{Re} + \frac{ \ln{10} }{2} }{ 1 - \frac{Rr}{3.7} } \right)^2 $$
The similarity to the equation for the minimum is obvious. In fact, this is a fairly elegant solution to the problem of setting bounds. It turns out to work fairly well. The edited code is:
Function Colebrook(Rr As Double, Re As Double) As DoubleThis begs one more question. Could you use this general form to estimate the friction coefficient itself? Yes, you could. Notice the only difference between fmin and fmax is only the one constant there. I wanted to figure out a value of this costant that would approximate the answer, as opposed to setting a minimum or maximum. To do this, I required that the limit as Reynolds number goes to infinity to approximate the real answer. This could be used to make a more efficient Newton's method for solution. I didn't do this, but I will share my expression for the expression.
Dim f_min As Double, f_max As Double, f As Double
Dim g_lower As Double, g_middle As Double
Dim n As Integer
f_min = (2.51 / Re) ^ 2 * (1 - Rr / 3.7) ^ (-2)
f_max = ((2.51 / Re + Log(10) / 2) / (1 - Rr / 3.7)) ^ 2
n = 0
Do
n = n + 1
f = (f_min + f_max) / 2
g_middle = -2 / Log(10) * Log(Rr / 3.7 + 2.51 / Re * f ^ (-1 / 2)) - f ^ (-1 / 2)
g_lower = -2 / Log(10) * Log(Rr / 3.7 + 2.51 / Re * f_min ^ (-1 / 2)) - f_min ^ (-1 / 2)
If (g_middle = 0 Or (f_max - f_min) / 2 < 0.000001) Then
Exit Do
Else
If (g_middle * g_lower > 0) Then
f_min = f
Else
f_max = f
End If
End If
Colebrook = f
If (n > 100) Then
Colebrook = CVErr(xlErrNA)
Exit Do
End If
Loop
End Function
$$ B = \frac{ 1 - \frac{Rr}{3.7} }{ -\frac{2}{\ln{10}} \ln{\frac{Rr}{3.7} } } \\ f_{max} \approx \left( \frac{ \frac{2.51}{Re} + B }{ 1 - \frac{Rr}{3.7} } \right)^2 $$
This isn't a great approximation by the way. In the transition areas where it really matters, it can easily be off by 60%. In the laminar and turbulent limits it approaches the correct solution. Still, that gives it some utility for numerical approaches.
No comments:
Post a Comment