How to Calculate Shear Rate

Shear Rate Calculator body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; line-height: 1.6; color: #333; margin: 0; padding: 20px; background-color: #f4f7f6; } .calculator-container { max-width: 700px; margin: 0 auto; background: #fff; padding: 30px; border-radius: 8px; box-shadow: 0 4px 15px rgba(0,0,0,0.1); } h1 { text-align: center; color: #2c3e50; margin-bottom: 25px; font-size: 28px; } .input-group { margin-bottom: 20px; } label { display: block; margin-bottom: 8px; font-weight: 600; color: #555; } select, input { width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 4px; font-size: 16px; box-sizing: border-box; } input:focus, select:focus { border-color: #3498db; outline: none; } button.calc-btn { width: 100%; padding: 14px; background-color: #3498db; color: white; border: none; border-radius: 4px; font-size: 18px; font-weight: bold; cursor: pointer; transition: background-color 0.3s; } button.calc-btn:hover { background-color: #2980b9; } #result-container { margin-top: 25px; padding: 20px; background-color: #e8f6f3; border-left: 5px solid #1abc9c; display: none; } .result-value { font-size: 24px; font-weight: bold; color: #16a085; } .formula-display { font-family: 'Courier New', monospace; background: #f8f9fa; padding: 10px; border-radius: 4px; margin-top: 10px; font-size: 14px; color: #555; } .content-section { max-width: 800px; margin: 40px auto; background: #fff; padding: 30px; border-radius: 8px; } .content-section h2 { color: #2c3e50; border-bottom: 2px solid #ecf0f1; padding-bottom: 10px; margin-top: 30px; } .content-section h3 { color: #34495e; margin-top: 25px; } .content-section p { margin-bottom: 15px; } .content-section ul { margin-bottom: 15px; padding-left: 20px; } .content-section li { margin-bottom: 8px; } .highlight-box { background-color: #fff8e1; border: 1px solid #ffe0b2; padding: 15px; border-radius: 4px; margin: 20px 0; } @media (max-width: 600px) { .calculator-container { padding: 20px; } }

Shear Rate Calculator

Parallel Plates (Simple Shear) Pipe Flow (Newtonian)
Calculated Shear Rate:
0 s⁻¹
Formula: γ̇ = v / h

*Note: This calculation assumes a no-slip boundary condition and laminar flow.

How to Calculate Shear Rate

Shear rate (denoted by γ̇, or "gamma dot") is a measure of how fast a fluid flows relative to the distance over which that flow occurs. It quantifies the rate of deformation of a fluid element. Understanding shear rate is critical in fields ranging from chemical engineering and rheology to injection molding and physiology (blood flow).

Quick Definition: Shear rate represents the velocity gradient perpendicular to the direction of flow. The standard unit is reciprocal seconds (s⁻¹).

1. Simple Shear (Parallel Plates)

The most fundamental definition of shear rate comes from the Couette flow model, where a fluid is trapped between two parallel plates—one stationary and one moving.

Formula:

γ̇ = v / h

  • γ̇ = Shear Rate (s⁻¹)
  • v = Velocity of the moving plate (m/s)
  • h = Gap distance between plates (m)

2. Pipe Flow (Newtonian Fluid)

For fluids flowing through a circular pipe, the shear rate is not constant; it is zero at the center and maximum at the wall. This calculator estimates the Shear Rate at the Wall for a Newtonian fluid.

Formula:

γ̇ = 8v / D

  • γ̇ = Shear Rate at the wall (s⁻¹)
  • v = Average flow velocity (m/s)
  • D = Inside Diameter of the pipe (m)

Calculation Example

Imagine a coating process where a blade moves over a surface (Parallel Plate model):

  • Velocity (v): 0.5 m/s
  • Gap Height (h): 1 mm (which is 0.001 meters)

Step 1: Convert units to match. 1 mm = 0.001 m.

Step 2: Apply the formula: γ̇ = 0.5 / 0.001

Result: The Shear Rate is 500 s⁻¹.

Why is Shear Rate Important?

Shear rate determines the viscosity of non-Newtonian fluids.

  • Shear Thinning: Viscosity decreases as shear rate increases (e.g., ketchup, paint).
  • Shear Thickening: Viscosity increases as shear rate increases (e.g., cornstarch in water).
Knowing the shear rate allows engineers to predict how a fluid will behave during processing, such as pumping, spraying, or extrusion.

function updateLabels() { var type = document.getElementById('flowType').value; var dimLabel = document.getElementById('dimensionLabel'); var velLabel = document.getElementById('velocityLabel'); if (type === 'parallel') { dimLabel.innerHTML = 'Gap Height (h) [mm]'; velLabel.innerHTML = 'Velocity (v) [m/s]'; } else if (type === 'pipe') { dimLabel.innerHTML = 'Pipe Inner Diameter (D) [mm]'; velLabel.innerHTML = 'Average Velocity (v) [m/s]'; } } function calculateShearRate() { // Get input values var flowType = document.getElementById('flowType').value; var velocity = parseFloat(document.getElementById('velocity').value); var dimensionMM = parseFloat(document.getElementById('dimension').value); // Validation if (isNaN(velocity) || isNaN(dimensionMM) || dimensionMM 10000 || (shearRate 0)) { formattedResult = shearRate.toExponential(2); } rateDisplay.innerHTML = formattedResult + " s⁻¹"; formulaDisplay.innerHTML = formulaText; resultDiv.style.display = "block"; }

Leave a Comment