{
  "capability_id": "mechanical.statics.angled_pull",
  "tool_id": "angled-pull",
  "engine": "angled-pull",
  "calculation_version": "1.0.0",
  "generated_at": "2026-09-23T14:21:08.539Z",
  "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/angled-pull",
  "api": "https://www.calculatorx.com/api/v1/calc/angled-pull",
  "schema_input": "https://www.calculatorx.com/schemas/mechanical.statics.angled_pull.input.json",
  "schema_output": "https://www.calculatorx.com/schemas/mechanical.statics.angled_pull.output.json",
  "assumptions": [],
  "limitations": [
    "The surface is level",
    "α is measured above the horizontal toward impending motion",
    "The normal is W − P sinα",
    "Not an incline, tipping, a wedge, a screw, or a belt"
  ],
  "boundary_conditions": [
    "missing W, μ, or α → MISSING_REQUIRED_INPUT",
    "W ≤ 0 → VALUE_MUST_BE_POSITIVE",
    "α outside [0, 90) or μ < 0 → VALUE_OUT_OF_RANGE"
  ],
  "sources": [
    {
      "title": "Hibbeler, Engineering Mechanics: Statics",
      "section": "Dry friction — a force applied at an angle on a level surface",
      "supports": "Impending slip gives P cosα = μN and N + P sinα = W, so P = μW / (cosα + μ sinα).",
      "kind": "reference"
    }
  ],
  "methods": [],
  "fingerprint": "sha256:602de87c7a8838d19f60410f48e813f169361394e09452380e222ec268c46290",
  "tests": [
    {
      "id": "golden-level",
      "ok": true,
      "kind": "golden",
      "inputs": {
        "W": 100,
        "mu": 0.25,
        "alpha_deg": 0
      },
      "expect": {
        "P": 25,
        "N": 100,
        "F": -25,
        "model": "angled_pull"
      },
      "expectWarning": null,
      "actual": {
        "model": "angled_pull",
        "W": 100,
        "mu": 0.25,
        "alpha_deg": 0,
        "P": 25,
        "N": 100,
        "F": -25,
        "solver": "friction + math.linear_algebra solve order 2",
        "convention": "The surface is level. α is the angle of the pull above the horizontal, toward impending motion. F is positive in the direction of motion, so friction is negative. N = W − P sinα."
      },
      "tol": 1e-12
    },
    {
      "id": "golden-angle",
      "ok": true,
      "kind": "golden",
      "inputs": {
        "W": 100,
        "mu": 1,
        "alpha_deg": 45
      },
      "expect": {
        "P": 70.71067811865476,
        "N": 50,
        "F": -50
      },
      "expectWarning": null,
      "actual": {
        "model": "angled_pull",
        "W": 100,
        "mu": 1,
        "alpha_deg": 45,
        "P": 70.7106781187,
        "N": 50,
        "F": -50,
        "solver": "friction + math.linear_algebra solve order 2",
        "convention": "The surface is level. α is the angle of the pull above the horizontal, toward impending motion. F is positive in the direction of motion, so friction is negative. N = W − P sinα."
      },
      "tol": 1e-9
    },
    {
      "id": "golden-smooth",
      "ok": true,
      "kind": "golden",
      "inputs": {
        "W": 100,
        "mu": 0,
        "alpha_deg": 0
      },
      "expect": {
        "P": 0,
        "N": 100,
        "F": 0
      },
      "expectWarning": null,
      "actual": {
        "model": "angled_pull",
        "W": 100,
        "mu": 0,
        "alpha_deg": 0,
        "P": 0,
        "N": 100,
        "F": 0,
        "solver": "friction + math.linear_algebra solve order 2",
        "convention": "The surface is level. α is the angle of the pull above the horizontal, toward impending motion. F is positive in the direction of motion, so friction is negative. N = W − P sinα."
      },
      "tol": 1e-12
    },
    {
      "id": "boundary-weight",
      "ok": true,
      "kind": "boundary",
      "inputs": {
        "W": 0,
        "mu": 0.25,
        "alpha_deg": 0
      },
      "expectError": "VALUE_MUST_BE_POSITIVE",
      "code": "VALUE_MUST_BE_POSITIVE",
      "error": "Weight W must be positive."
    },
    {
      "id": "boundary-angle",
      "ok": true,
      "kind": "boundary",
      "inputs": {
        "W": 100,
        "mu": 0.25,
        "alpha_deg": 90
      },
      "expectError": "VALUE_OUT_OF_RANGE",
      "code": "VALUE_OUT_OF_RANGE",
      "error": "alpha_deg must lie in [0, 90)."
    },
    {
      "id": "boundary-mu",
      "ok": true,
      "kind": "boundary",
      "inputs": {
        "W": 100,
        "mu": -0.1,
        "alpha_deg": 0
      },
      "expectError": "VALUE_OUT_OF_RANGE",
      "code": "VALUE_OUT_OF_RANGE",
      "error": "mu must be non-negative."
    },
    {
      "id": "boundary-missing",
      "ok": true,
      "kind": "boundary",
      "inputs": {
        "W": 100,
        "mu": 0.25
      },
      "expectError": "MISSING_REQUIRED_INPUT",
      "code": "MISSING_REQUIRED_INPUT",
      "error": "alpha_deg 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-23T13:02:35.273Z",
  "rendered_at": "2026-09-23T14:21:08.539Z",
  "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": "01fc3316223635cdde9c586c379f6dbfb48e76bae1dbcd023ce1e13c3041c6a3",
      "output_schema_sha256": "b143a67fb12cbeb12916f838fe97fb7cdbf2414c2f36d053e8c415d7c81829c7",
      "evidence_sha256": "0846595105aef15a53b8116ab9863cb8c119446b581e0e399aa085e661174732",
      "evidence_core_sha256": "0846595105aef15a53b8116ab9863cb8c119446b581e0e399aa085e661174732",
      "capability_sha256": "54fe0721cf2d199e02992e94f715f5c64788de62c1ff88d5afcbdb024105fd0d",
      "engine_sha256": "208304ca4712067561139ce40e8e989b08ad769a073c83f960c49734a91d8b98",
      "mcp_contract_sha256": "c07b6ccec97dcc960230a1aa48fcea3aad2d3b93ce113ae07c095579f88cbc3b"
    },
    "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"
  }
}
