{
  "slug": "calories-swimming",
  "title": "Calorie Burn — Swimming",
  "category": "Energy Expenditure",
  "category_slug": "energy-expenditure",
  "tier": 1,
  "summary": "Estimate swimming energy expenditure using MET values, body weight, and session duration.",
  "description": "This calculator estimates calories burned during swimming using metabolic equivalent of task (MET) values from the Compendium of Physical Activities. It accepts body weight in kilograms, session duration in minutes, and intensity level (light, moderate, or vigorous) to compute total energy expenditure in kilocalories. MET values of 5.8, 7.0, and 9.8 are applied respectively, representing standardized estimates for typical swimming intensities in the general adult population.",
  "page_url": "https://fitmetriclab.com/en/tools/energy-expenditure/calories-swimming/",
  "api_url": "https://fitmetriclab.com/api/tools/calories-swimming.json",
  "formula": {
    "id": "calories_swimming",
    "expression": "\\text{Calories} = \\text{MET}(\\text{stroke}, i) \\times w \\times \\frac{t}{60}",
    "variables": [
      {
        "symbol": "w",
        "description": "Weight in kg"
      },
      {
        "symbol": "t",
        "description": "Duration in minutes"
      },
      {
        "symbol": "i",
        "description": "Intensity level"
      }
    ]
  },
  "inputs": [
    {
      "id": "weight_kg",
      "label": "Weight",
      "type": "number",
      "unit": "kg",
      "default": 75,
      "min": 20,
      "max": 300,
      "step": 0.1
    },
    {
      "id": "minutes",
      "label": "Duration",
      "type": "number",
      "unit": "min",
      "default": 60,
      "min": 1,
      "max": 300,
      "step": 1
    },
    {
      "id": "intensity",
      "label": "Intensity",
      "type": "select",
      "unit": null,
      "default": 1,
      "options": [
        {
          "value": 0,
          "label": "Light"
        },
        {
          "value": 1,
          "label": "Moderate"
        },
        {
          "value": 2,
          "label": "Vigorous"
        }
      ]
    }
  ],
  "worked_example": {
    "inputs": {
      "weight_kg": 75,
      "minutes": 60,
      "intensity": 1
    },
    "expected_output": "525 kcal"
  },
  "result_summary_template": "For a swimmer weighing {weight_kg} performing {intensity} intensity swimming for {minutes}, the MET-based formula estimates energy expenditure at {result}.",
  "methodology": "Uses the MET formula: Calories = MET × body weight (kg) × duration (hours). MET values are 5.8 (light), 7.0 (moderate), or 9.8 (vigorous), sourced from the Compendium of Physical Activities (Ainsworth et al., updated editions).",
  "sources": [
    {
      "label": "Ainsworth BE, et al. 2011 Compendium of Physical Activities: a second update of codes and MET values. Med Sci Sports Exerc. 2011;43(8):1575-1581.",
      "url": "https://pubmed.ncbi.nlm.nih.gov/21681120/"
    },
    {
      "label": "Barbosa TM, et al. Energetics and biomechanics as determining factors of swimming performance. J Sci Med Sport. 2010;13(2):180-187.",
      "url": "https://pubmed.ncbi.nlm.nih.gov/19576850/"
    },
    {
      "label": "Holmer I. Physiology of swimming man. Acta Physiol Scand Suppl. 1974;407:1-55.",
      "url": "https://pubmed.ncbi.nlm.nih.gov/4533733/"
    }
  ],
  "faqs": [
    {
      "question": "Why does the calculator use only three intensity levels?",
      "answer": "The tool applies broad MET categories (light 5.8, moderate 7.0, vigorous 9.8) to simplify estimation across varied swimming styles. Stroke-specific MET values exist but require precise technique classification; these general intensities capture typical recreational and fitness swimming without requiring detailed stroke analysis."
    },
    {
      "question": "How do MET values for swimming compare to running?",
      "answer": "Moderate swimming (MET 7.0) approximates the energy cost of jogging at 5 mph (MET 8.0), while vigorous swimming (MET 9.8) aligns with running 6 mph (MET 9.8). Water provides resistance in all directions and reduces impact, creating a different metabolic profile than land-based locomotion despite similar MET ranges."
    },
    {
      "question": "Does water temperature affect calorie burn?",
      "answer": "Cold water can increase energy expenditure through thermoregulatory thermogenesis, while very warm water may reduce it. The MET values in this calculator assume thermoneutral pool conditions (approximately 78–82°F). Open-water swimmers in colder environments may experience 10–15% higher expenditure not captured by the model."
    },
    {
      "question": "Why might my fitness tracker show different numbers?",
      "answer": "Wearable devices often incorporate heart rate, movement sensors, and proprietary algorithms that may adjust MET estimates upward or downward. Some trackers use stroke-specific models or account for rest intervals. MET-based calculators provide population-average estimates, while trackers attempt individualized correction based on real-time physiological signals."
    },
    {
      "question": "Can I use this calculator for interval training?",
      "answer": "The tool calculates average expenditure across the entire session duration. If a workout alternates between high-intensity intervals and rest, selecting the intensity that best represents the overall average effort yields a reasonable estimate. For precise interval quantification, separate calculations per work phase and summing totals may improve accuracy."
    }
  ],
  "related_tools": [
    {
      "slug": "calories-weight-training",
      "title": "Calorie Burn — Weight Training",
      "api_url": "https://fitmetriclab.com/api/tools/calories-weight-training.json",
      "page_url": "https://fitmetriclab.com/en/tools/energy-expenditure/calories-weight-training/"
    },
    {
      "slug": "calories-cycling",
      "title": "Calorie Burn — Cycling",
      "api_url": "https://fitmetriclab.com/api/tools/calories-cycling.json",
      "page_url": "https://fitmetriclab.com/en/tools/energy-expenditure/calories-cycling/"
    },
    {
      "slug": "calories-rowing",
      "title": "Calorie Burn — Rowing",
      "api_url": "https://fitmetriclab.com/api/tools/calories-rowing.json",
      "page_url": "https://fitmetriclab.com/en/tools/energy-expenditure/calories-rowing/"
    }
  ],
  "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."
}