{
  "capability_id": "mechanical.statics.area_moment",
  "tool_id": "area-moment",
  "engine": "area-moment",
  "calculation_version": "1.0.0",
  "generated_at": "2026-09-23T10:57:00.181Z",
  "engine_build": "2026-09-23",
  "test_count": 6,
  "passed": 6,
  "failed": 0,
  "tests_summary": {
    "golden": {
      "total": 2,
      "passed": 2
    },
    "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/area-moment",
  "api": "https://www.calculatorx.com/api/v1/calc/area-moment",
  "schema_input": "https://www.calculatorx.com/schemas/mechanical.statics.area_moment.input.json",
  "schema_output": "https://www.calculatorx.com/schemas/mechanical.statics.area_moment.output.json",
  "assumptions": [],
  "limitations": [
    "Ix and Iy are supplied about each part centroid",
    "Axes stay parallel to x and y",
    "Negative area is a hole",
    "Total area must not be zero",
    "Not product of inertia, principal axes, section modulus, or beam deflection"
  ],
  "boundary_conditions": [
    "no parts → MISSING_REQUIRED_INPUT",
    "a row that is not Ix,Iy,A,x,y → INVALID_INPUT",
    "total area zero → INVALID_INPUT"
  ],
  "sources": [
    {
      "title": "Hibbeler, Engineering Mechanics: Statics",
      "section": "Moments of inertia",
      "supports": "Parallel-axis theorem I = Ī + A d² for a composite area",
      "kind": "reference"
    }
  ],
  "methods": [],
  "fingerprint": "sha256:526a59ffdaec42ede7544b272049552d795b8ebd52e5838a27311023acdb08e4",
  "tests": [
    {
      "id": "golden-parallel",
      "ok": true,
      "kind": "golden",
      "inputs": {
        "parts": "1,0,1,0,0; 1,0,1,0,2"
      },
      "expect": {
        "area": 2,
        "y_bar": 1,
        "x_bar": 0,
        "Ix": 4,
        "Iy": 0,
        "model": "area_moment"
      },
      "expectWarning": null,
      "actual": {
        "model": "area_moment",
        "area": 2,
        "x_bar": 0,
        "y_bar": 1,
        "Ix": 4,
        "Iy": 0,
        "kx": 1.4142135623730951,
        "ky": 0,
        "n": 2,
        "solver": "plane centroid + parallel axis",
        "convention": "Ix and Iy are centroidal and parallel to x,y. Ix = Σ(Ix + A (y−ȳ)²). Negative area is a hole."
      },
      "tol": 1e-12
    },
    {
      "id": "golden-single",
      "ok": true,
      "kind": "golden",
      "inputs": {
        "parts": "16,4,4,0,0"
      },
      "expect": {
        "area": 4,
        "Ix": 16,
        "Iy": 4,
        "kx": 2,
        "ky": 1
      },
      "expectWarning": null,
      "actual": {
        "model": "area_moment",
        "area": 4,
        "x_bar": 0,
        "y_bar": 0,
        "Ix": 16,
        "Iy": 4,
        "kx": 2,
        "ky": 1,
        "n": 1,
        "solver": "plane centroid + parallel axis",
        "convention": "Ix and Iy are centroidal and parallel to x,y. Ix = Σ(Ix + A (y−ȳ)²). Negative area is a hole."
      },
      "tol": 1e-12
    },
    {
      "id": "boundary-hole",
      "ok": true,
      "kind": "boundary",
      "inputs": {
        "parts": "8,8,4,0,0; -2,-2,-1,0,0"
      },
      "expect": {
        "area": 3,
        "Ix": 6,
        "Iy": 6,
        "x_bar": 0,
        "y_bar": 0
      },
      "expectWarning": null,
      "actual": {
        "model": "area_moment",
        "area": 3,
        "x_bar": 0,
        "y_bar": 0,
        "Ix": 6,
        "Iy": 6,
        "kx": 1.4142135623730951,
        "ky": 1.4142135623730951,
        "n": 2,
        "solver": "plane centroid + parallel axis",
        "convention": "Ix and Iy are centroidal and parallel to x,y. Ix = Σ(Ix + A (y−ȳ)²). Negative area is a hole."
      },
      "tol": 1e-12
    },
    {
      "id": "boundary-empty",
      "ok": true,
      "kind": "boundary",
      "inputs": {},
      "expectError": "MISSING_REQUIRED_INPUT",
      "code": "MISSING_REQUIRED_INPUT",
      "error": "Enter at least one part as Ix,Iy,A,x,y."
    },
    {
      "id": "boundary-row",
      "ok": true,
      "kind": "boundary",
      "inputs": {
        "parts": "1,2,3,4"
      },
      "expectError": "INVALID_INPUT",
      "code": "INVALID_INPUT",
      "error": "parts row 1 must be Ix,Iy,A,x,y."
    },
    {
      "id": "boundary-cancel",
      "ok": true,
      "kind": "boundary",
      "inputs": {
        "parts": "0,0,1,0,0; 0,0,-1,1,0"
      },
      "expectError": "INVALID_INPUT",
      "code": "INVALID_INPUT",
      "error": "Total area must not be zero."
    }
  ],
  "tier": "engine_tested",
  "verification": {
    "tests": {
      "passed": 6,
      "total": 6,
      "golden": 2,
      "boundary": 4,
      "property": 0
    },
    "contract_checks": {
      "passed": 6,
      "total": 6
    }
  },
  "evidence_core_generated_at": "2026-09-23T07:30:12.794Z",
  "rendered_at": "2026-09-23T10:57:00.181Z",
  "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": "3188bc0053ad99397a9771e6ecf4805d543f4c41cb484956ebdc4a7af11f4033",
      "output_schema_sha256": "a162bce9167360ca188c47f7950769ee1feef5e3b790a30af72b144fb20cd141",
      "evidence_sha256": "5cbfcb542161543ac1453325709b135ada58a1d2cda1038115ec727c47b119e6",
      "evidence_core_sha256": "5cbfcb542161543ac1453325709b135ada58a1d2cda1038115ec727c47b119e6",
      "capability_sha256": "2795a02aab3e75b193b5a688c3d266f79dc4996f9e1a0ff47de618e42e892e61",
      "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"
  }
}
