From a737d81098481a0b285303a5f4da560d6100a6b2 Mon Sep 17 00:00:00 2001 From: Caleb Bell Date: Thu, 21 Nov 2024 17:27:05 -0700 Subject: [PATCH] . --- fluids/friction.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/fluids/friction.py b/fluids/friction.py index 2d309c9..41c7f13 100644 --- a/fluids/friction.py +++ b/fluids/friction.py @@ -355,10 +355,6 @@ def Colebrook(Re, eD, tol=None): for hundreds of thousand of points within the region 1E-12 < Re < 1E12 and 0 < eD < 0.1. - The numerical solution attempts the secant method using `scipy`'s `newton` - solver, and in the event of nonconvergence, attempts the `fsolve` solver - as well. An initial guess is provided via the `Clamond` function. - The numerical and analytical solution take similar amounts of time; the `mpmath` solution used when `tol=0` is approximately 45 times slower. This function takes approximately 8 us normally.