{
  "slug": "training-cycle-planner",
  "title": "Training Cycle Planner (Weeks/Deload)",
  "category": "Progress Tracking",
  "category_slug": "progress-tracking",
  "tier": 3,
  "summary": "Map work and deload weeks across your training cycle to visualize periodization structure.",
  "description": "This calculator structures a training cycle by dividing the total length into work weeks and deload weeks based on a fixed deload interval. It accepts cycle length in weeks and deload frequency, then outputs the number of work weeks and scheduled deload weeks using integer division. The approach models block periodization with regular recovery phases, a method formalized in Eastern Bloc training literature and Tudor Bompa's periodization frameworks.",
  "page_url": "https://fitmetriclab.com/en/tools/progress-tracking/training-cycle-planner/",
  "api_url": "https://fitmetriclab.com/api/tools/training-cycle-planner.json",
  "formula": {
    "id": "training_cycle_planner",
    "expression": "\\text{Plan} = \\{w_1, \\dots, w_n\\}, \\quad w_k = \\text{deload if } k \\bmod d = 0",
    "variables": [
      {
        "symbol": "n",
        "description": "Cycle length in weeks"
      },
      {
        "symbol": "d",
        "description": "Deload every n weeks"
      }
    ]
  },
  "inputs": [
    {
      "id": "cycle_weeks",
      "label": "Cycle Length",
      "type": "number",
      "unit": "weeks",
      "default": 8,
      "min": 1,
      "max": 52,
      "step": 1
    },
    {
      "id": "deload_every",
      "label": "Deload Every",
      "type": "number",
      "unit": "weeks",
      "default": 4,
      "min": 1,
      "max": 26,
      "step": 1
    }
  ],
  "worked_example": {
    "inputs": {
      "cycle_weeks": 8,
      "deload_every": 4
    },
    "expected_output": "6 work / 2 deload"
  },
  "result_summary_template": "For a cycle of {cycle_weeks} weeks with a deload scheduled every {deload_every} weeks, the planner organizes the training into {result}.",
  "methodology": "The planner divides the total cycle length by deload frequency to determine the number of deload weeks (integer division), then subtracts this from the cycle length to yield work weeks. This models block periodization with fixed deload intervals, a structure documented in periodization literature since the 1960s Eastern Bloc training texts and formalized by Tudor Bompa's periodization frameworks.",
  "sources": [
    {
      "label": "Bompa TO, Haff GG. Periodization: Theory and Methodology of Training. 5th ed. Human Kinetics. 2009.",
      "url": "https://us.humankinetics.com/products/periodization-5th-edition"
    },
    {
      "label": "Stone MH, Stone M, Sands WA. Principles and Practice of Resistance Training. Human Kinetics. 2007.",
      "url": "https://us.humankinetics.com/products/principles-and-practice-of-resistance-training"
    },
    {
      "label": "Zourdos MC, et al. Modified Daily Undulating Periodization Model Produces Greater Performance Than a Traditional Configuration in Powerlifters. J Strength Cond Res. 2016;30(3):784-791.",
      "url": "https://pubmed.ncbi.nlm.nih.gov/26382135/"
    }
  ],
  "faqs": [
    {
      "question": "What is a deload week in training?",
      "answer": "A deload week is a planned period of reduced training volume, intensity, or both, designed to facilitate recovery from accumulated fatigue while maintaining motor patterns and fitness adaptations. Common deload strategies include reducing working sets by 40-60%, lowering intensity by 10-20%, or cutting training frequency."
    },
    {
      "question": "How often do deload weeks typically occur?",
      "answer": "Deload frequency varies by training age, volume, and intensity. Many periodization models place deloads every 3-5 weeks. Beginners may require deloads less frequently due to lower absolute loads, while advanced lifters or high-volume programs may benefit from more frequent recovery weeks."
    },
    {
      "question": "Can I adjust deload frequency mid-cycle?",
      "answer": "This calculator assumes fixed deload intervals for planning purposes. In practice, auto-regulated training adjusts deload timing based on performance metrics, subjective fatigue, or readiness scores. The planned structure serves as a template that can be modified as training unfolds."
    },
    {
      "question": "What counts as a work week versus a deload week?",
      "answer": "Work weeks involve progressive overload through increases in volume, intensity, or both. Deload weeks maintain movement quality and technical practice while reducing mechanical and metabolic stress. The distinction is operational; the calculator counts discrete weeks without specifying training content."
    },
    {
      "question": "Does this planner account for peaking phases?",
      "answer": "The calculator organizes cycles into work and deload categories only. Competition peaking, taper phases, and meet-specific preparation follow distinct programming logic with progressive volume reductions and intensity increases not captured by simple work/deload division."
    }
  ],
  "related_tools": [
    {
      "slug": "pr-progression",
      "title": "Personal Record Progression Calculator",
      "api_url": "https://fitmetriclab.com/api/tools/pr-progression.json",
      "page_url": "https://fitmetriclab.com/en/tools/progress-tracking/pr-progression/"
    },
    {
      "slug": "strength-progression",
      "title": "Strength Progression Calculator",
      "api_url": "https://fitmetriclab.com/api/tools/strength-progression.json",
      "page_url": "https://fitmetriclab.com/en/tools/progress-tracking/strength-progression/"
    },
    {
      "slug": "time-to-goal-weight",
      "title": "Time-to-Goal Calculator (Weight)",
      "api_url": "https://fitmetriclab.com/api/tools/time-to-goal-weight.json",
      "page_url": "https://fitmetriclab.com/en/tools/progress-tracking/time-to-goal-weight/"
    }
  ],
  "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."
}