{
  "capability_id": "physics.fluid.froude",
  "tool_id": "froude-number",
  "engine": "froude-number",
  "calculation_version": "1.0.0",
  "generated_at": "2026-09-17T08:49:50.938Z",
  "engine_build": "2026-09-17",
  "test_count": 17,
  "passed": 17,
  "failed": 0,
  "tests_summary": {
    "golden": {
      "total": 2,
      "passed": 2
    },
    "boundary": {
      "total": 10,
      "passed": 10
    },
    "property": {
      "total": 5,
      "passed": 5
    }
  },
  "engine_tested": true,
  "expert_reviewed": false,
  "internally_reviewed": false,
  "review_kind": null,
  "source_checked": true,
  "reviewed_by": null,
  "reviewer_role": null,
  "last_reviewed": null,
  "expert_review": {
    "status": "optional_not_performed",
    "reviewer": null,
    "scope": [
      "formula",
      "input semantics",
      "assumptions",
      "limitations",
      "sources",
      "tests"
    ],
    "note": "Domain expert review is optional under CVP (CVP-EXP-01). Absence does not block CVP Verified. See Review policy for supplemental domain assurance."
  },
  "internal_review": {
    "status": "not_applicable",
    "reviewer": null
  },
  "page": "https://www.calculatorx.com/calc/physics/froude-number",
  "api": "https://www.calculatorx.com/api/v1/calc/froude-number",
  "schema_input": "https://www.calculatorx.com/schemas/physics.fluid.froude.input.json",
  "schema_output": "https://www.calculatorx.com/schemas/physics.fluid.froude.output.json",
  "assumptions": [
    "Froude Fr = v / √(g L); default g=9.80665 m/s²",
    "Free-surface: Fr<1 subcritical, Fr=1 critical, Fr>1 supercritical",
    "Not Reynolds, not Manning, not Chezy, not Q=Av"
  ],
  "limitations": [
    "Froude Fr = v / √(g L); default g=9.80665 m/s²",
    "Free-surface: Fr<1 subcritical, Fr=1 critical, Fr>1 supercritical",
    "Not Reynolds, not Manning, not Chezy, not Q=Av"
  ],
  "boundary_conditions": [
    "missing v, L, or Fr when required → MISSING_REQUIRED_INPUT",
    "v, L, Fr, or g ≤ 0 → VALUE_MUST_BE_POSITIVE",
    "Re/ρ/μ/ν, n, C/R/S, A/Q → MIXED_INPUT_ENCODING",
    "reynolds, manning, or chezy as mode → INVALID_MODE"
  ],
  "sources": [
    {
      "title": "ISO 80000-11 — Characteristic numbers",
      "section": "Froude number Fr",
      "supports": "Fr = v / √(l g); gravity/inertia, not viscous Reynolds",
      "kind": "standard"
    },
    {
      "title": "ISO 80000-4 — Mechanics",
      "section": "Velocity, length, acceleration",
      "url": "https://www.iso.org/standard/31895.html",
      "supports": "v has dimension length/time; L length; g acceleration",
      "kind": "standard"
    }
  ],
  "methods": [],
  "fingerprint": "sha256:4d17d1a990250968739c7855529bed411f967783710ed9a6fc7e21062acfcfea",
  "tests": [
    {
      "id": "golden-fr-sub",
      "ok": true,
      "kind": "golden",
      "inputs": {
        "v": 1,
        "L": 1
      },
      "expect": {
        "Fr": 0.31932995678105874,
        "v": 1,
        "L": 1,
        "g": 9.80665,
        "regime": "subcritical",
        "mode": "Fr",
        "model": "froude"
      },
      "expectWarning": null,
      "actual": {
        "mode": "Fr",
        "Fr": 0.31932995678105874,
        "v": 1,
        "L": 1,
        "g": 9.80665,
        "regime": "subcritical",
        "model": "froude"
      },
      "tol": 1e-12
    },
    {
      "id": "golden-fr-crit",
      "ok": true,
      "kind": "golden",
      "inputs": {
        "v": 3.1315571206669692,
        "L": 1
      },
      "expect": {
        "Fr": 1,
        "regime": "critical",
        "model": "froude"
      },
      "expectWarning": null,
      "actual": {
        "mode": "Fr",
        "Fr": 1,
        "v": 3.1315571206669692,
        "L": 1,
        "g": 9.80665,
        "regime": "critical",
        "model": "froude"
      },
      "tol": 1e-12
    },
    {
      "id": "boundary-fr-v",
      "ok": true,
      "kind": "boundary",
      "inputs": {
        "mode": "velocity",
        "Fr": 1,
        "L": 1
      },
      "expect": {
        "v": 3.1315571206669692,
        "model": "froude"
      },
      "expectWarning": null,
      "actual": {
        "mode": "velocity",
        "Fr": 1,
        "v": 3.1315571206669692,
        "L": 1,
        "g": 9.80665,
        "regime": "critical",
        "model": "froude"
      },
      "tol": 1e-12
    },
    {
      "id": "boundary-fr-L",
      "ok": true,
      "kind": "boundary",
      "inputs": {
        "mode": "length",
        "Fr": 1,
        "v": 3.1315571206669692
      },
      "expect": {
        "L": 1,
        "model": "froude"
      },
      "expectWarning": null,
      "actual": {
        "mode": "length",
        "Fr": 1,
        "v": 3.1315571206669692,
        "L": 1,
        "g": 9.80665,
        "regime": "critical",
        "model": "froude"
      },
      "tol": 1e-12
    },
    {
      "id": "boundary-fr-missing",
      "ok": true,
      "kind": "boundary",
      "inputs": {
        "L": 1
      },
      "expectError": "MISSING_REQUIRED_INPUT",
      "code": "MISSING_REQUIRED_INPUT",
      "error": "v is required"
    },
    {
      "id": "boundary-fr-v0",
      "ok": true,
      "kind": "boundary",
      "inputs": {
        "v": 0,
        "L": 1
      },
      "expectError": "VALUE_MUST_BE_POSITIVE",
      "code": "VALUE_MUST_BE_POSITIVE",
      "error": "v must be greater than zero"
    },
    {
      "id": "boundary-fr-Re",
      "ok": true,
      "kind": "boundary",
      "inputs": {
        "v": 1,
        "L": 1,
        "Re": 200000
      },
      "expectError": "MIXED_INPUT_ENCODING",
      "code": "MIXED_INPUT_ENCODING",
      "error": "Froude does not take Reynolds Re, ρ, μ, or ν. That is /calc/physics/reynolds"
    },
    {
      "id": "boundary-fr-rho",
      "ok": true,
      "kind": "boundary",
      "inputs": {
        "v": 1,
        "L": 1,
        "rho": 1000
      },
      "expectError": "MIXED_INPUT_ENCODING",
      "code": "MIXED_INPUT_ENCODING",
      "error": "Froude does not take Reynolds Re, ρ, μ, or ν. That is /calc/physics/reynolds"
    },
    {
      "id": "boundary-fr-n",
      "ok": true,
      "kind": "boundary",
      "inputs": {
        "v": 1,
        "L": 1,
        "n": 0.013
      },
      "expectError": "MIXED_INPUT_ENCODING",
      "code": "MIXED_INPUT_ENCODING",
      "error": "Froude does not take Manning n or Chezy C/R/S. That is /calc/physics/manning-formula or /calc/physics/chezy-formula"
    },
    {
      "id": "boundary-fr-A",
      "ok": true,
      "kind": "boundary",
      "inputs": {
        "v": 1,
        "L": 1,
        "A": 1
      },
      "expectError": "MIXED_INPUT_ENCODING",
      "code": "MIXED_INPUT_ENCODING",
      "error": "Froude does not take Q=Av A/Q. That is /calc/physics/flow-rate"
    },
    {
      "id": "boundary-fr-reynolds",
      "ok": true,
      "kind": "boundary",
      "inputs": {
        "v": 1,
        "L": 1,
        "mode": "reynolds"
      },
      "expectError": "INVALID_MODE",
      "code": "INVALID_MODE",
      "error": "mode must be Fr|velocity|length. Not Reynolds, Manning, Chezy, or Q=Av"
    },
    {
      "id": "boundary-fr-C",
      "ok": true,
      "kind": "boundary",
      "inputs": {
        "v": 1,
        "L": 1,
        "C": 50
      },
      "expectError": "MIXED_INPUT_ENCODING",
      "code": "MIXED_INPUT_ENCODING",
      "error": "Froude does not take Manning n or Chezy C/R/S. That is /calc/physics/manning-formula or /calc/physics/chezy-formula"
    },
    {
      "id": "property-fr-value",
      "ok": true,
      "kind": "property",
      "detail": "Fr=v/√(gL)",
      "expect": 0.31932995678105874,
      "actual": 0.31932995678105874
    },
    {
      "id": "property-fr-g-default",
      "ok": true,
      "kind": "property",
      "detail": "default g",
      "expect": 9.80665,
      "actual": 9.80665
    },
    {
      "id": "property-fr-critical",
      "ok": true,
      "kind": "property",
      "detail": "Fr=1",
      "expect": 1,
      "actual": 1
    },
    {
      "id": "property-fr-roundtrip-v",
      "ok": true,
      "kind": "property",
      "detail": "v invert",
      "expect": 1,
      "actual": 1
    },
    {
      "id": "property-fr-model",
      "ok": true,
      "kind": "property",
      "detail": "froude",
      "expect": true,
      "actual": "froude"
    }
  ],
  "tier": "engine_tested",
  "verification": {
    "tests": {
      "passed": 17,
      "total": 17,
      "golden": 2,
      "boundary": 10,
      "property": 5
    },
    "contract_checks": {
      "passed": 3,
      "total": 3
    }
  },
  "evidence_core_generated_at": "2026-09-17T06:59:55.310Z",
  "rendered_at": "2026-09-17T08:49:50.938Z",
  "release_integrity": {
    "status": "verified",
    "scope": "workspace",
    "production_attestation_required": true,
    "calculation_version": "1.0.0",
    "artifacts": {
      "engine": "1.0.0",
      "page": "1.0.0",
      "capability": "1.0.0",
      "evidence": "1.0.0",
      "input_schema": "1.0.0",
      "output_schema": "1.0.0",
      "mcp_contract": "1.0.0"
    },
    "digests": {
      "input_schema_sha256": "189ae3f2990cafd9678e2682774ffa9f92fc7a4a021cd4dd343e8d3a16c0fc19",
      "output_schema_sha256": "c7004951fec12c24824226e606ee6ad146d2f14da73873fc8cca776d89796f89",
      "evidence_sha256": "5ddbe451078f25a18e40a6e168f97d0c42e5de114a276cd9f8a3f8ed0fb55949",
      "evidence_core_sha256": "5ddbe451078f25a18e40a6e168f97d0c42e5de114a276cd9f8a3f8ed0fb55949",
      "capability_sha256": "35754b0e086f0fc60f31d26807ce2d042be5333d8f8a18d22bc3454d2bc2e45f",
      "engine_sha256": "0c0851fab70abbeebfe07916fc4e23f4718babe41882681bdfec8e4f0768b97f",
      "mcp_contract_sha256": "e444fb05e9379f4f2492792d89493686e8dd71c0a104ae00acbe73364b370c5c"
    },
    "contract_checks": {
      "total": 3,
      "passed": 3,
      "failed": 0,
      "items": [
        {
          "id": "release-artifacts-aligned",
          "status": "pass",
          "detail": "1.0.0"
        },
        {
          "id": "schema-valid-input-executes",
          "status": "pass"
        },
        {
          "id": "engine-success-output-validates-schema",
          "status": "pass"
        }
      ]
    },
    "report": "https://www.calculatorx.com/.well-known/calculatorx-release-integrity.json"
  }
}
