{
  "capability_id": "mechanical.statics.slip_or_tip",
  "tool_id": "slip-or-tip",
  "engine": "slip-or-tip",
  "calculation_version": "1.0.0",
  "generated_at": "2026-09-23T10:57:00.184Z",
  "engine_build": "2026-09-23",
  "test_count": 7,
  "passed": 7,
  "failed": 0,
  "tests_summary": {
    "golden": {
      "total": 3,
      "passed": 3
    },
    "boundary": {
      "total": 4,
      "passed": 4
    },
    "property": {
      "total": 0,
      "passed": 0
    }
  },
  "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/slip-or-tip",
  "api": "https://www.calculatorx.com/api/v1/calc/slip-or-tip",
  "schema_input": "https://www.calculatorx.com/schemas/mechanical.statics.slip_or_tip.input.json",
  "schema_output": "https://www.calculatorx.com/schemas/mechanical.statics.slip_or_tip.output.json",
  "assumptions": [],
  "limitations": [
    "The surface is level and the force is horizontal",
    "The weight acts through the center of a base of width b",
    "mode is slip, tip, or either",
    "Not an incline, a wedge, a screw, or a belt"
  ],
  "boundary_conditions": [
    "missing W, μ, b, or d → MISSING_REQUIRED_INPUT",
    "W ≤ 0, b ≤ 0, or d ≤ 0 → VALUE_MUST_BE_POSITIVE",
    "μ < 0 → VALUE_OUT_OF_RANGE"
  ],
  "sources": [
    {
      "title": "Hibbeler, Engineering Mechanics: Statics",
      "section": "Dry friction — tipping or slipping",
      "supports": "On a level surface the horizontal force to slip is μW, and the force to tip is the weight times the half-width divided by the height of the force",
      "kind": "reference"
    }
  ],
  "methods": [],
  "fingerprint": "sha256:dc42fbe4b796b5ff53f2a28767251849b8f1db6c2b324139a1f2f0f775075e51",
  "tests": [
    {
      "id": "golden-slip",
      "ok": true,
      "kind": "golden",
      "inputs": {
        "W": 100,
        "mu": 0.25,
        "b": 2,
        "d": 2
      },
      "expect": {
        "mode": "slip",
        "P": 25,
        "P_slip": 25,
        "P_tip": 50,
        "N": 100,
        "model": "slip_or_tip"
      },
      "expectWarning": null,
      "actual": {
        "model": "slip_or_tip",
        "W": 100,
        "mu": 0.25,
        "b": 2,
        "d": 2,
        "N": 100,
        "P_slip": 25,
        "P_tip": 50,
        "P": 25,
        "mode": "slip",
        "solver": "friction + moment about the leading edge",
        "convention": "The surface is level. P is horizontal at height d. The weight acts through the center of a base of width b. Slip uses F = μN with N = W. Tip is the moment of W about the leading edge."
      },
      "tol": 1e-12
    },
    {
      "id": "golden-tip",
      "ok": true,
      "kind": "golden",
      "inputs": {
        "W": 100,
        "mu": 0.5,
        "b": 1,
        "d": 4
      },
      "expect": {
        "mode": "tip",
        "P": 12.5,
        "P_slip": 50,
        "P_tip": 12.5
      },
      "expectWarning": null,
      "actual": {
        "model": "slip_or_tip",
        "W": 100,
        "mu": 0.5,
        "b": 1,
        "d": 4,
        "N": 100,
        "P_slip": 50,
        "P_tip": 12.5,
        "P": 12.5,
        "mode": "tip",
        "solver": "friction + moment about the leading edge",
        "convention": "The surface is level. P is horizontal at height d. The weight acts through the center of a base of width b. Slip uses F = μN with N = W. Tip is the moment of W about the leading edge."
      },
      "tol": 1e-12
    },
    {
      "id": "golden-either",
      "ok": true,
      "kind": "golden",
      "inputs": {
        "W": 80,
        "mu": 0.25,
        "b": 2,
        "d": 4
      },
      "expect": {
        "mode": "either",
        "P": 20,
        "P_slip": 20,
        "P_tip": 20
      },
      "expectWarning": null,
      "actual": {
        "model": "slip_or_tip",
        "W": 80,
        "mu": 0.25,
        "b": 2,
        "d": 4,
        "N": 80,
        "P_slip": 20,
        "P_tip": 20,
        "P": 20,
        "mode": "either",
        "solver": "friction + moment about the leading edge",
        "convention": "The surface is level. P is horizontal at height d. The weight acts through the center of a base of width b. Slip uses F = μN with N = W. Tip is the moment of W about the leading edge."
      },
      "tol": 1e-12
    },
    {
      "id": "boundary-weight",
      "ok": true,
      "kind": "boundary",
      "inputs": {
        "W": 0,
        "mu": 0.25,
        "b": 2,
        "d": 2
      },
      "expectError": "VALUE_MUST_BE_POSITIVE",
      "code": "VALUE_MUST_BE_POSITIVE",
      "error": "Weight W must be positive."
    },
    {
      "id": "boundary-height",
      "ok": true,
      "kind": "boundary",
      "inputs": {
        "W": 100,
        "mu": 0.25,
        "b": 2,
        "d": 0
      },
      "expectError": "VALUE_MUST_BE_POSITIVE",
      "code": "VALUE_MUST_BE_POSITIVE",
      "error": "Height d must be positive."
    },
    {
      "id": "boundary-mu",
      "ok": true,
      "kind": "boundary",
      "inputs": {
        "W": 100,
        "mu": -0.1,
        "b": 2,
        "d": 2
      },
      "expectError": "VALUE_OUT_OF_RANGE",
      "code": "VALUE_OUT_OF_RANGE",
      "error": "mu must be non-negative."
    },
    {
      "id": "boundary-width",
      "ok": true,
      "kind": "boundary",
      "inputs": {
        "W": 100,
        "mu": 0.25,
        "d": 2
      },
      "expectError": "MISSING_REQUIRED_INPUT",
      "code": "MISSING_REQUIRED_INPUT",
      "error": "b is required."
    }
  ],
  "tier": "engine_tested",
  "verification": {
    "tests": {
      "passed": 7,
      "total": 7,
      "golden": 3,
      "boundary": 4,
      "property": 0
    },
    "contract_checks": {
      "passed": 6,
      "total": 6
    }
  },
  "evidence_core_generated_at": "2026-09-23T10:53:16.654Z",
  "rendered_at": "2026-09-23T10:57:00.184Z",
  "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": "3f06e14f0ea2ed86e3868e51a88039f2ca32bf4fa75e61e11d96c88cad993e5e",
      "output_schema_sha256": "4154efade7cc81b1596a2ac33880a0326cd0e241674e0474bc48b172b0f1f4d4",
      "evidence_sha256": "7cff6d9659af4514fcbf6955f4b58ae3c34fdd22f1eba6e5d5e3cae4e7663f1f",
      "evidence_core_sha256": "7cff6d9659af4514fcbf6955f4b58ae3c34fdd22f1eba6e5d5e3cae4e7663f1f",
      "capability_sha256": "cac335ff0d59073a7cca9e103f54e81ea842e29f70b7ab04dd3d6f97b645173c",
      "engine_sha256": "2834c6bc0e697b4d1e17766004f95cbfb57722d30aac4f3245109e79ef19ffae",
      "mcp_contract_sha256": "7015b0a59a475803dcfdfe80a660fa9d4d216cc36bd496d9466d1918d64ff186"
    },
    "contract_checks": {
      "total": 6,
      "passed": 6,
      "failed": 0,
      "items": [
        {
          "id": "release-artifacts-aligned",
          "status": "pass",
          "detail": "1.0.0"
        },
        {
          "id": "schema-output-required-declared",
          "status": "pass"
        },
        {
          "id": "schema-valid-input-executes",
          "status": "pass"
        },
        {
          "id": "engine-success-output-validates-schema",
          "status": "pass"
        },
        {
          "id": "schema-rejects-incomplete-input",
          "status": "pass"
        },
        {
          "id": "rest-success-payload-validates-schema",
          "status": "pass"
        }
      ]
    },
    "report": "https://www.calculatorx.com/.well-known/calculatorx-release-integrity.json"
  }
}
