{
  "slug": "swimming-pace",
  "title": "Swimming Pace Calculator",
  "category": "Swimming",
  "category_slug": "swimming",
  "tier": 1,
  "summary": "Convert swim distance and time into pace per 100 meters for training and race analysis.",
  "description": "This calculator converts swim distance and elapsed time into pace per 100 meters, the standard interval metric used in competitive swimming and pool-based training programs. It accepts distance in meters and time in minutes, then divides total seconds by the number of 100-meter segments to produce a minutes-and-seconds pace. The resulting swimming pace helps athletes compare performance across different distances and structure interval sets with consistent target splits.",
  "page_url": "https://fitmetriclab.com/en/tools/swimming/swimming-pace/",
  "api_url": "https://fitmetriclab.com/api/tools/swimming-pace.json",
  "formula": {
    "id": "swimming_pace",
    "expression": "p_{100} = \\frac{t}{d} \\times 100",
    "variables": [
      {
        "symbol": "d",
        "description": "Distance in metres"
      },
      {
        "symbol": "t",
        "description": "Time in minutes"
      }
    ]
  },
  "inputs": [
    {
      "id": "distance_m",
      "label": "Distance",
      "type": "number",
      "unit": "m",
      "default": 100,
      "min": 1,
      "max": 10000,
      "step": 1
    },
    {
      "id": "time_minutes",
      "label": "Time",
      "type": "number",
      "unit": "min",
      "default": 1.5,
      "min": 0.2,
      "max": 60,
      "step": 0.1
    }
  ],
  "worked_example": {
    "inputs": {
      "distance_m": 100,
      "time_minutes": 1.5
    },
    "expected_output": "1:30 /100m"
  },
  "result_summary_template": "For a swim of {distance_m} meters completed in {time_minutes} minutes, the calculator divides total time by the number of 100-meter segments to produce {result}.",
  "methodology": "Divides total swim time (in seconds) by the number of 100-meter segments in the distance: (time_minutes × 60 × 100) ÷ distance_m. This yields pace per 100 meters, a standard metric in competitive swimming and interval training programs.",
  "sources": [
    {
      "label": "USA Swimming. Pace Clock Fundamentals and Training Applications. 2021.",
      "url": "https://www.usaswimming.org/"
    },
    {
      "label": "Maglischo EW. Swimming Fastest. Human Kinetics. 2003.",
      "url": "https://us.humankinetics.com/products/swimming-fastest"
    },
    {
      "label": "Seifert L, et al. Arm coordination, power, and swim efficiency in national and regional front crawl swimmers. Hum Mov Sci. 2010;29(3):426-39.",
      "url": "https://pubmed.ncbi.nlm.nih.gov/20409603/"
    }
  ],
  "faqs": [
    {
      "question": "Why express pace per 100 meters instead of total time?",
      "answer": "Per-100m pace normalizes splits across different distances, making it easier to compare a 200m swim to an 800m swim or to track progress over time. Coaches use this metric to prescribe interval sets and monitor pacing consistency."
    },
    {
      "question": "Does this calculator account for turns and starts?",
      "answer": "No. The tool divides total elapsed time by distance, treating the swim as continuous. Starts, turns, and underwater phases are included in the recorded time but not isolated. For precise interval analysis, timing systems with touchpad splits provide more granular data."
    },
    {
      "question": "Can I use this for yards instead of meters?",
      "answer": "The calculator outputs pace per 100 meters. If the input distance is in yards, the result will reflect per-100-yard pace. Be consistent with units; mixing yards and meters will produce misleading comparisons since 100 yards is approximately 91.4 meters."
    },
    {
      "question": "How does stroke type affect the result?",
      "answer": "The calculator does not distinguish between freestyle, backstroke, breaststroke, or butterfly. It only processes distance and time. Stroke-specific drag, recovery mechanics, and legal underwater limits will influence the recorded time but are not factored into the pace calculation itself."
    },
    {
      "question": "Is a faster per-100m pace always better?",
      "answer": "Not necessarily. Training context matters. Aerobic base work, threshold sets, and sprint intervals each have different pace targets. A slower pace may be appropriate for technique focus or recovery swims. Pace is one metric among many that coaches use to design periodized programs."
    }
  ],
  "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": "swolf-score",
      "title": "SWOLF Score Calculator",
      "api_url": "https://fitmetriclab.com/api/tools/swolf-score.json",
      "page_url": "https://fitmetriclab.com/en/tools/swimming/swolf-score/"
    }
  ],
  "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."
}