{
  "slug": "hiit-ratio",
  "title": "HIIT Work-Rest Ratio Calculator",
  "category": "Timing & Pacing",
  "category_slug": "timing-pacing",
  "tier": 2,
  "summary": "Calculate total HIIT session time and work-to-rest ratio from your interval structure.",
  "description": "This calculator computes total HIIT session duration and the work-to-rest ratio from a defined interval structure. It takes three inputs—work interval duration (seconds), rest interval duration (seconds), and number of rounds—and outputs the total session time plus a ratio expressed as X:1, following standard interval-training program design principles established in early HIIT research protocols. The arithmetic method multiplies rounds by the sum of work and rest periods, providing a quick reference for planning high-intensity interval training sessions.",
  "page_url": "https://fitmetriclab.com/en/tools/timing-pacing/hiit-ratio/",
  "api_url": "https://fitmetriclab.com/api/tools/hiit-ratio.json",
  "formula": {
    "id": "hiit_ratio",
    "expression": "T = (w + r) \\times n",
    "variables": [
      {
        "symbol": "w",
        "description": "Work interval in seconds"
      },
      {
        "symbol": "r",
        "description": "Rest interval in seconds"
      },
      {
        "symbol": "n",
        "description": "Number of rounds"
      }
    ]
  },
  "inputs": [
    {
      "id": "work_sec",
      "label": "Work Interval",
      "type": "number",
      "unit": "s",
      "default": 20,
      "min": 1,
      "max": 600,
      "step": 1
    },
    {
      "id": "rest_sec",
      "label": "Rest Interval",
      "type": "number",
      "unit": "s",
      "default": 10,
      "min": 0,
      "max": 600,
      "step": 1
    },
    {
      "id": "rounds",
      "label": "Rounds",
      "type": "number",
      "unit": "rounds",
      "default": 8,
      "min": 1,
      "max": 100,
      "step": 1
    }
  ],
  "worked_example": {
    "inputs": {
      "work_sec": 20,
      "rest_sec": 10,
      "rounds": 8
    },
    "expected_output": "4:00"
  },
  "result_summary_template": "With a work interval of {work_sec} seconds, rest interval of {rest_sec} seconds, and {rounds} rounds, the total session time is {result}.",
  "methodology": "Total session time is computed by multiplying the number of rounds by the sum of the work interval and rest interval (both in seconds). The work-to-rest ratio is the work interval divided by the rest interval, expressed as X:1. This arithmetic approach is standard in interval-training program design and originates from early HIIT research protocols described by Tabata et al. (1996) and Gibala et al. (2006).",
  "sources": [
    {
      "label": "Tabata I, et al. Effects of moderate-intensity endurance and high-intensity intermittent training on anaerobic capacity and VO2max. Med Sci Sports Exerc. 1996;28(10):1327-30.",
      "url": "https://pubmed.ncbi.nlm.nih.gov/8897392/"
    },
    {
      "label": "Gibala MJ, et al. Short-term sprint interval versus traditional endurance training: similar initial adaptations in human skeletal muscle and exercise performance. J Physiol. 2006;575(Pt 3):901-11.",
      "url": "https://pubmed.ncbi.nlm.nih.gov/16825308/"
    },
    {
      "label": "Buchheit M, Laursen PB. High-intensity interval training, solutions to the programming puzzle. Sports Med. 2013;43(5):313-38.",
      "url": "https://pubmed.ncbi.nlm.nih.gov/23539308/"
    }
  ],
  "faqs": [
    {
      "question": "What does a 2:1 work-to-rest ratio mean?",
      "answer": "A 2:1 ratio indicates that the work interval is twice as long as the rest interval. For example, 40 seconds of work followed by 20 seconds of rest produces a 2:1 ratio. Lower ratios (such as 1:2) allow more recovery between efforts, while higher ratios (3:1 or greater) demand greater sustained effort."
    },
    {
      "question": "How does interval length affect the training stimulus?",
      "answer": "Shorter work intervals (10–30 seconds) typically emphasize the phosphagen and fast glycolytic pathways, while longer intervals (60–120 seconds) increasingly recruit aerobic metabolism. Rest duration modulates incomplete versus near-complete ATP-PCr resynthesis, influencing fatigue accumulation across rounds. This calculator does not model these physiological pathways; it only computes time."
    },
    {
      "question": "Can I use this calculator for Tabata-style training?",
      "answer": "Yes. The original Tabata protocol uses 20 seconds of work, 10 seconds of rest, and 8 rounds, yielding a 2:1 ratio and a 4-minute total. Enter those values to confirm the structure, then adjust work, rest, or rounds to explore variations while maintaining the same total time or ratio."
    },
    {
      "question": "Why does the calculator show time in minutes and seconds?",
      "answer": "The math engine converts total seconds into MM:SS format for readability. A session totaling 240 seconds displays as 4:00. This format is common in interval timers and makes it easier to compare session lengths when planning training blocks."
    },
    {
      "question": "Does the tool account for warm-up or cool-down?",
      "answer": "No. The calculator multiplies only the work and rest intervals by the number of rounds. Warm-up, cool-down, equipment transitions, and any additional recovery between sets must be added separately when planning total gym or studio time."
    }
  ],
  "related_tools": [
    {
      "slug": "rest-time",
      "title": "Rest Time Between Sets Calculator",
      "api_url": "https://fitmetriclab.com/api/tools/rest-time.json",
      "page_url": "https://fitmetriclab.com/en/tools/timing-pacing/rest-time/"
    },
    {
      "slug": "emom-calculator",
      "title": "EMOM Round Calculator",
      "api_url": "https://fitmetriclab.com/api/tools/emom-calculator.json",
      "page_url": "https://fitmetriclab.com/en/tools/timing-pacing/emom-calculator/"
    },
    {
      "slug": "sleep-cycle",
      "title": "Sleep Cycle Calculator",
      "api_url": "https://fitmetriclab.com/api/tools/sleep-cycle.json",
      "page_url": "https://fitmetriclab.com/en/tools/timing-pacing/sleep-cycle/"
    }
  ],
  "last_updated": "2026-04-22",
  "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."
}