{
  "slug": "volume-converter",
  "title": "Hydration Volume Converter (L to fl oz)",
  "category": "Conversions",
  "category_slug": "conversions",
  "tier": 2,
  "summary": "Convert between litres and US fluid ounces for hydration and beverage volumes.",
  "description": "This calculator converts hydration and beverage volumes between litres and US fluid ounces using the NIST-defined constant of 1 fl oz = 29.5735 ml. Users enter a value in either litres or fluid ounces, and the tool returns the equivalent volume in the opposite unit, along with an intermediate millilitre value. The conversion is bidirectional and applies the standard metric-to-imperial ratio established in NIST Special Publication 811.",
  "page_url": "https://fitmetriclab.com/en/tools/conversions/volume-converter/",
  "api_url": "https://fitmetriclab.com/api/tools/volume-converter.json",
  "formula": {
    "id": "volume_converter",
    "expression": "\\text{ml} = \\text{fl oz} \\times 29.5735",
    "variables": [
      {
        "symbol": "L",
        "description": "Volume in litres"
      },
      {
        "symbol": "\\text{fl oz}",
        "description": "Volume in fluid ounces"
      }
    ]
  },
  "inputs": [
    {
      "id": "liters",
      "label": "Litres",
      "type": "number",
      "unit": "L",
      "default": 2,
      "min": 0,
      "max": 100,
      "step": 0.1
    },
    {
      "id": "fl_oz",
      "label": "Fluid Ounces",
      "type": "number",
      "unit": "fl oz",
      "default": 68,
      "min": 0,
      "max": 3400,
      "step": 0.5
    }
  ],
  "worked_example": {
    "inputs": {
      "liters": 2,
      "fl_oz": 68
    },
    "expected_output": "67.63 fl oz"
  },
  "result_summary_template": "Converting {liters} L or {fl_oz} fl oz using the standard conversion factor of 1 US fl oz = 29.5735 ml yields {result}.",
  "methodology": "Converts between litres and US fluid ounces using the NIST-defined constant 1 fl oz = 29.5735 ml. Litres are multiplied by 1,000 then divided by 29.5735 to yield fl oz; the inverse operation converts fl oz to litres. Source: NIST Special Publication 811.",
  "sources": [
    {
      "label": "National Institute of Standards and Technology. NIST Special Publication 811: Guide for the Use of the International System of Units (SI). 2008.",
      "url": "https://www.nist.gov/pml/special-publication-811"
    },
    {
      "label": "National Institute of Standards and Technology. NIST Handbook 44: Specifications, Tolerances, and Other Technical Requirements for Weighing and Measuring Devices. 2023.",
      "url": "https://www.nist.gov/pml/weights-and-measures/publications/nist-handbooks/handbook-44"
    },
    {
      "label": "Bureau International des Poids et Mesures. The International System of Units (SI). 9th ed. 2019.",
      "url": "https://www.bipm.org/en/publications/si-brochure"
    }
  ],
  "faqs": [
    {
      "question": "Why does this calculator show a different result than other converters?",
      "answer": "This tool uses the US customary fluid ounce (29.5735 ml), not the UK imperial fluid ounce (28.4131 ml). Some calculators default to imperial units, which produce results approximately 4% smaller. Verify which fluid ounce standard the source uses."
    },
    {
      "question": "How precise is the 29.5735 ml conversion factor?",
      "answer": "The factor 29.5735 millilitres per US fluid ounce is a defined constant published by NIST. It is derived from the definition that 1 US gallon equals exactly 231 cubic inches and contains 128 fluid ounces. The conversion is exact within the limits of decimal rounding."
    },
    {
      "question": "Can I use this for milk, juice, or other liquids?",
      "answer": "Yes. This tool converts volume units and does not depend on the liquid's density or composition. One litre of any substance occupies the same volume, though mass will vary by density."
    },
    {
      "question": "Why does the tool show millilitres in the secondary output?",
      "answer": "Millilitres serve as the intermediate step in the conversion calculation and are commonly used in scientific and nutrition contexts. Displaying ml helps verify the conversion logic and provides a third reference point."
    },
    {
      "question": "Does temperature affect the conversion?",
      "answer": "No. Litres and fluid ounces are volume units defined independently of temperature. The conversion factor remains constant. However, the physical volume of a liquid may expand or contract with temperature changes; this tool converts the unit labels, not the actual liquid volume at different conditions."
    }
  ],
  "related_tools": [
    {
      "slug": "energy-converter",
      "title": "Energy Converter (kcal to kJ)",
      "api_url": "https://fitmetriclab.com/api/tools/energy-converter.json",
      "page_url": "https://fitmetriclab.com/en/tools/conversions/energy-converter/"
    },
    {
      "slug": "pace-converter-multi",
      "title": "Pace Converter (Multiple Units)",
      "api_url": "https://fitmetriclab.com/api/tools/pace-converter-multi.json",
      "page_url": "https://fitmetriclab.com/en/tools/conversions/pace-converter-multi/"
    },
    {
      "slug": "speed-converter",
      "title": "Speed Converter (MPH to km/h to m/s)",
      "api_url": "https://fitmetriclab.com/api/tools/speed-converter.json",
      "page_url": "https://fitmetriclab.com/en/tools/conversions/speed-converter/"
    }
  ],
  "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."
}