{
  "slug": "heat-pace-adjustment",
  "title": "Heat Pace Adjustment",
  "category": "Running",
  "category_slug": "running",
  "tier": 2,
  "summary": "Convert a base running pace into a heat-adjusted equivalent pace using a published rule-of-thumb slowdown per degree above 15 °C.",
  "description": "This calculator converts a base running pace into a heat-adjusted equivalent using a piecewise convention drawn from running literature: no adjustment below 15 °C, a 0.3% slowdown per degree from 15 to 25 °C, and 0.45% per degree above 25 °C. It takes pace in min/km and air temperature in °C, and returns the adjusted pace in mm:ss form along with the total adjustment percentage and the pace delta in seconds per kilometre. The model is a stated coaching convention, not a physiological law — published field data show wide individual variation around any single slowdown figure.",
  "page_url": "https://fitmetriclab.com/en/tools/running/heat-pace-adjustment/",
  "api_url": "https://fitmetriclab.com/api/tools/heat-pace-adjustment.json",
  "formula": {
    "id": "heat_pace_adjustment",
    "expression": "p_{adj} = p \\times \\left(1 + \\frac{A(T)}{100}\\right), \\quad A(T) = \\begin{cases} 0 & T < 15 \\\\ 0.3(T-15) & 15 \\le T \\le 25 \\\\ 3 + 0.45(T-25) & T > 25 \\end{cases}",
    "variables": [
      {
        "symbol": "p",
        "description": "Base pace in min/km"
      },
      {
        "symbol": "T",
        "description": "Air temperature in °C"
      },
      {
        "symbol": "A(T)",
        "description": "Adjustment percentage at temperature T"
      }
    ]
  },
  "inputs": [
    {
      "id": "pace_min_per_km",
      "label": "Base Pace",
      "type": "number",
      "unit": "min/km",
      "default": 5.5,
      "min": 2.5,
      "max": 10,
      "step": 0.05
    },
    {
      "id": "temp_c",
      "label": "Air Temperature",
      "type": "number",
      "unit": "°C",
      "default": 25,
      "min": 10,
      "max": 40,
      "step": 1
    }
  ],
  "worked_example": {
    "inputs": {
      "pace_min_per_km": 5.5,
      "temp_c": 25
    },
    "expected_output": "5:40 min/km"
  },
  "result_summary_template": "A base pace of {pace_min_per_km} min/km at {temp_c} °C converts to a heat-adjusted equivalent pace of {result}.",
  "methodology": "Adjustment % = 0 below 15 °C; 0.3% per °C from 15–25 °C; above 25 °C, 3% plus 0.45% per °C beyond 25. Adjusted pace = base pace × (1 + adjustment/100), formatted mm:ss per km. This is a stated rule-of-thumb convention from running coaching literature (commonly quoted as 1.5–3% per 5 °C above ~15 °C), not a fitted physiological equation; field studies of marathon performance in warm weather show degradation of this order with wide individual scatter.",
  "sources": [
    {
      "label": "Ely MR, Cheuvront SN, Roberts WO, Montain SJ. Impact of weather on marathon-running performance. Med Sci Sports Exerc. 2007;39(3):487–493 (PubMed search).",
      "url": "https://pubmed.ncbi.nlm.nih.gov/?term=impact+of+weather+on+marathon-running+performance"
    },
    {
      "label": "Daniels J. Daniels' Running Formula. 3rd ed. Human Kinetics; 2013.",
      "url": "https://www.humankinetics.com/"
    }
  ],
  "faqs": [
    {
      "question": "Why does the adjustment start at 15 °C?",
      "answer": "Field studies of distance-running performance consistently find the fastest times in cool conditions, with degradation becoming measurable somewhere in the low-to-mid teens Celsius and growing from there. The 15 °C threshold used here is the round-number convention most often quoted in coaching literature. It is a modelling choice, not a sharp physiological boundary — some data place the inflection a few degrees lower, particularly for marathon-length efforts where heat accumulates over hours."
    },
    {
      "question": "Why is the slope steeper above 25 °C?",
      "answer": "The convention reflects a pattern visible in race data: pace degradation per degree grows as temperature rises, rather than staying constant. As air temperature approaches skin temperature, convective heat loss shrinks and evaporation must carry nearly the whole cooling load, so each additional degree costs more than the last. The model captures this with a simple two-slope approximation — 0.3% per °C up to 25 °C, then 0.45% per °C beyond — instead of a curved function."
    },
    {
      "question": "Does humidity affect the adjustment?",
      "answer": "Not in this model, and that is its main simplification. Evaporative cooling depends on the dew point, so a humid 24 °C day frequently degrades pace more than a dry 28 °C one. The calculator uses dry-bulb temperature because it is the figure available from any forecast, but on days when the dew point exceeds roughly 16–18 °C, observed slowdowns tend to exceed what this temperature-only convention returns. Some coaches use temperature-plus-dew-point tables for exactly this reason."
    },
    {
      "question": "Does the adjustment apply equally to everyone?",
      "answer": "No. The published field data behind conventions like this show wide scatter: heat-acclimatised runners degrade less per degree, larger runners generally degrade more, and slower marathon finishers show bigger percentage slowdowns than the leaders in the same race. Two to three weeks of consistent warm-weather running measurably flattens an individual's temperature-pace slope. The single set of slopes here represents a population-average convention rather than any particular runner's response."
    },
    {
      "question": "What is the adjusted pace actually for?",
      "answer": "It provides a consistent basis for comparing efforts across conditions. If a training log shows 5:40 min/km on a 25 °C afternoon, the model maps that back to an equivalent effort of roughly 5:30 min/km in cool conditions — useful for judging whether fitness has changed between seasons, or for translating a cool-weather time-trial pace into what the same effort looks like in summer. It is an accounting convention for pace, in the same family as the elevation and treadmill conversions."
    }
  ],
  "related_tools": [
    {
      "slug": "elevation-pace",
      "title": "Elevation-Adjusted Pace Calculator",
      "api_url": "https://fitmetriclab.com/api/tools/elevation-pace.json",
      "page_url": "https://fitmetriclab.com/en/tools/running/elevation-pace/"
    },
    {
      "slug": "treadmill-pace",
      "title": "Treadmill Pace Converter",
      "api_url": "https://fitmetriclab.com/api/tools/treadmill-pace.json",
      "page_url": "https://fitmetriclab.com/en/tools/running/treadmill-pace/"
    },
    {
      "slug": "running-pace",
      "title": "Running Pace Calculator",
      "api_url": "https://fitmetriclab.com/api/tools/running-pace.json",
      "page_url": "https://fitmetriclab.com/en/tools/running/running-pace/"
    }
  ],
  "last_updated": "2026-08-08",
  "price": {
    "value": 0,
    "currency": "USD"
  },
  "runs_in_browser": true,
  "disclaimer": "Educational estimate produced from a published formula. Not medical, nutritional, or training advice. Calculations are deterministic — apply the formula to the inputs to reproduce the result."
}