{
  "slug": "swolf-score",
  "title": "SWOLF Score Calculator",
  "category": "Swimming",
  "category_slug": "swimming",
  "tier": 2,
  "summary": "Calculate your swimming efficiency by combining stroke count and lap time into one metric.",
  "description": "This calculator computes your SWOLF score, a swimming efficiency metric that combines stroke count and lap time into a single number. It adds the number of strokes taken and the seconds elapsed for one pool length, producing a score where lower values indicate better swimming economy. The SWOLF method was popularized by Total Immersion Swimming and is now widely implemented in swim-watch technology to track stroke efficiency over time.",
  "page_url": "https://fitmetriclab.com/en/tools/swimming/swolf-score/",
  "api_url": "https://fitmetriclab.com/api/tools/swolf-score.json",
  "formula": {
    "id": "swolf_score",
    "expression": "\\text{SWOLF} = n + t",
    "variables": [
      {
        "symbol": "n",
        "description": "Strokes per length"
      },
      {
        "symbol": "t",
        "description": "Time per length in seconds"
      }
    ]
  },
  "inputs": [
    {
      "id": "strokes",
      "label": "Strokes",
      "type": "number",
      "unit": "strokes",
      "default": 16,
      "min": 1,
      "max": 100,
      "step": 1
    },
    {
      "id": "seconds",
      "label": "Duration",
      "type": "number",
      "unit": "s",
      "default": 30,
      "min": 1,
      "max": 600,
      "step": 1
    }
  ],
  "worked_example": {
    "inputs": {
      "strokes": 16,
      "seconds": 30
    },
    "expected_output": "46"
  },
  "result_summary_template": "With {strokes} strokes and {seconds} seconds to complete one pool length, the SWOLF calculation yields a score of {result}.",
  "methodology": "SWOLF = strokes + seconds per pool length. The formula was popularized by Total Immersion Swimming and adopted widely in swim-watch technology to quantify stroke efficiency. Lower scores reflect better swimming economy through reduced stroke count or faster time.",
  "sources": [
    {
      "label": "Laughlin T. Total Immersion: The Revolutionary Way To Swim Better, Faster, and Easier. Touchstone, 2004.",
      "url": "https://www.totalimmersion.net/"
    },
    {
      "label": "Seifert L, Chollet D, Bardy BG. Effect of swimming velocity on arm coordination in the front crawl. International Journal of Sports Medicine. 2004;25(1):1-11.",
      "url": "https://pubmed.ncbi.nlm.nih.gov/14750005/"
    },
    {
      "label": "Barbosa TM, Bragada JA, Reis VM, et al. Energetics and biomechanics as determining factors of swimming performance. Journal of Science and Medicine in Sport. 2010;13(2):246-254.",
      "url": "https://pubmed.ncbi.nlm.nih.gov/19553158/"
    }
  ],
  "faqs": [
    {
      "question": "What is a good SWOLF score?",
      "answer": "SWOLF scores vary by pool length, stroke style, and swimmer skill level. Competitive swimmers in a 25-yard pool often achieve freestyle SWOLF scores in the 35–45 range, while recreational swimmers may score 50–70. Tracking personal trends over weeks provides more useful feedback than comparing absolute scores to others."
    },
    {
      "question": "Why does the calculator round the seconds value?",
      "answer": "The implementation rounds seconds to the nearest whole number to match common swim-watch display conventions and reduce false precision. Most pool timing systems and manual stopwatch readings provide one-second resolution, making fractional-second inputs less meaningful for typical training applications."
    },
    {
      "question": "Can I compare SWOLF scores across different pool lengths?",
      "answer": "Direct comparison across pool lengths is not meaningful because longer pools allow different stroke rhythms, turn frequencies, and glide dynamics. A 25-yard SWOLF score of 40 does not equate to a 50-meter score of 40. Track scores within the same pool length for valid efficiency trends."
    },
    {
      "question": "Does a lower stroke count always mean better efficiency?",
      "answer": "Not necessarily. Extremely low stroke counts may indicate excessive glide that reduces speed, while very high stroke counts can mean poor distance-per-stroke. SWOLF balances both factors—optimal efficiency occurs when the sum of strokes and time is minimized, which may differ from minimizing either variable alone."
    },
    {
      "question": "How often can SWOLF scores be measured during training?",
      "answer": "Many swimmers measure SWOLF on select lengths during warm-up, drill sets, or cooldown to avoid fatigue effects on stroke mechanics. Automated swim watches can log SWOLF continuously, but coaches often focus on scores from controlled pace efforts rather than all-out sprints or recovery swimming to assess technique changes."
    }
  ],
  "related_tools": [
    {
      "slug": "css-calculator",
      "title": "Critical Swim Speed (CSS) Calculator",
      "api_url": "https://fitmetriclab.com/api/tools/css-calculator.json",
      "page_url": "https://fitmetriclab.com/en/tools/swimming/css-calculator/"
    },
    {
      "slug": "swim-splits",
      "title": "Swim Split Calculator",
      "api_url": "https://fitmetriclab.com/api/tools/swim-splits.json",
      "page_url": "https://fitmetriclab.com/en/tools/swimming/swim-splits/"
    },
    {
      "slug": "swimming-pace",
      "title": "Swimming Pace Calculator",
      "api_url": "https://fitmetriclab.com/api/tools/swimming-pace.json",
      "page_url": "https://fitmetriclab.com/en/tools/swimming/swimming-pace/"
    }
  ],
  "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."
}