CD_CLIFT_GAUVIN

Computes the drag coefficient of a smooth sphere from the particle Reynolds number using the Clift-Gauvin correlation. The formulation combines a Stokes-like term with a high-Re correction.

C_D = f(Re)

Excel Usage

=CD_CLIFT_GAUVIN(Re)
  • Re (float, required): Particle Reynolds number [-]

Returns (float): Drag coefficient [-], or error message (str) if input is invalid.

Example 1: Reynolds number of 200

Inputs:

Re
200

Excel formula:

=CD_CLIFT_GAUVIN(200)

Expected output:

0.79054

Example 2: Reynolds number of 1000

Inputs:

Re
1000

Excel formula:

=CD_CLIFT_GAUVIN(1000)

Expected output:

0.463867

Example 3: Reynolds number of 10000

Inputs:

Re
10000

Excel formula:

=CD_CLIFT_GAUVIN(10000)

Expected output:

0.410315

Example 4: Reynolds number of 100

Inputs:

Re
100

Excel formula:

=CD_CLIFT_GAUVIN(100)

Expected output:

1.07039

Python Code

Show Code
from fluids.drag import Clift_Gauvin as fluids_Clift_Gauvin

def cd_clift_gauvin(Re):
    """
    Calculate drag coefficient of a sphere using the Clift-Gauvin correlation.

    See: https://fluids.readthedocs.io/fluids.drag.html#fluids.drag.Clift_Gauvin

    This example function is provided as-is without any representation of accuracy.

    Args:
        Re (float): Particle Reynolds number [-]

    Returns:
        float: Drag coefficient [-], or error message (str) if input is invalid.
    """
    try:
      Re = float(Re)
      if Re <= 0:
        return "Error: Re must be positive."

      result = fluids_Clift_Gauvin(Re=Re)
      if result != result:  # NaN check
        return "Error: Calculation resulted in NaN."
      return float(result)
    except (ValueError, TypeError):
      return "Error: Re must be a number."
    except Exception as e:
      return f"Error: {str(e)}"

Online Calculator

Particle Reynolds number [-]