{
  "capability_id": "physics.thermo.stefan_boltzmann",
  "tool_id": "stefan-boltzmann",
  "engine": "stefan-boltzmann",
  "calculation_version": "1.0.0",
  "generated_at": "2026-09-16T11:29:50.774Z",
  "engine_build": "2026-09-16",
  "test_count": 12,
  "passed": 12,
  "failed": 0,
  "tests_summary": {
    "golden": {
      "total": 1,
      "passed": 1
    },
    "boundary": {
      "total": 6,
      "passed": 6
    },
    "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/stefan-boltzmann",
  "api": "https://www.calculatorx.com/api/v1/calc/stefan-boltzmann",
  "schema_input": "https://www.calculatorx.com/schemas/physics.thermo.stefan_boltzmann.input.json",
  "schema_output": "https://www.calculatorx.com/schemas/physics.thermo.stefan_boltzmann.output.json",
  "assumptions": [
    "Gray body",
    "View factor F=1",
    "T in kelvin",
    "σ = 5.670374419e-8 (CODATA 2018)",
    "Not Fourier conduction or Newton cooling",
    "Not heatsink Rth or steam"
  ],
  "limitations": [
    "Gray body; no view factor (F=1)",
    "T in kelvin",
    "Not conduction/convection heat-transfer",
    "Not heatsink Rth or steam"
  ],
  "boundary_conditions": [
    "missing Th or Tc → MISSING_REQUIRED_INPUT",
    "Th ≤ 0 or Tc ≤ 0 → VALUE_MUST_BE_POSITIVE",
    "epsilon outside [0, 1] → VALUE_OUT_OF_RANGE",
    "A given and A ≤ 0 → VALUE_MUST_BE_POSITIVE"
  ],
  "sources": [
    {
      "title": "CODATA 2018 — Stefan–Boltzmann constant",
      "section": "σ",
      "url": "https://physics.nist.gov/cgi-bin/cuu/Value?sigma",
      "supports": "σ = 5.670374419×10⁻⁸ W m⁻² K⁻⁴",
      "kind": "standard"
    },
    {
      "title": "ISO 80000-5 — Thermodynamics",
      "section": "Heat flux / thermal radiation",
      "supports": "Net radiative flux proportional to T⁴ differences",
      "kind": "standard"
    }
  ],
  "methods": [],
  "fingerprint": "sha256:cba37ff1d92c0354ccdf6e32e7b3b872da50e6dc96267b6508f103ae2ec09108",
  "tests": [
    {
      "id": "golden-sb",
      "ok": true,
      "kind": "golden",
      "inputs": {
        "Th": 400,
        "Tc": 300
      },
      "expect": {
        "q_W_m2": 992.315523325,
        "Th": 400,
        "Tc": 300,
        "epsilon": 1,
        "model": "stefan_boltzmann"
      },
      "expectWarning": null,
      "actual": {
        "q_W_m2": 992.315523325,
        "Th": 400,
        "Tc": 300,
        "epsilon": 1,
        "sigma": 5.670374419e-8,
        "model": "stefan_boltzmann"
      },
      "tol": 1e-12
    },
    {
      "id": "boundary-sb-area",
      "ok": true,
      "kind": "boundary",
      "inputs": {
        "Th": 400,
        "Tc": 300,
        "A": 2
      },
      "expect": {
        "Q_W": 1984.63104665
      },
      "expectWarning": null,
      "actual": {
        "q_W_m2": 992.315523325,
        "Th": 400,
        "Tc": 300,
        "epsilon": 1,
        "sigma": 5.670374419e-8,
        "model": "stefan_boltzmann",
        "A": 2,
        "Q_W": 1984.63104665
      },
      "tol": 1e-12
    },
    {
      "id": "boundary-sb-eps",
      "ok": true,
      "kind": "boundary",
      "inputs": {
        "Th": 400,
        "Tc": 300,
        "epsilon": 0.5
      },
      "expect": {
        "q_W_m2": 496.1577616625
      },
      "expectWarning": null,
      "actual": {
        "q_W_m2": 496.1577616625,
        "Th": 400,
        "Tc": 300,
        "epsilon": 0.5,
        "sigma": 5.670374419e-8,
        "model": "stefan_boltzmann"
      },
      "tol": 1e-12
    },
    {
      "id": "boundary-sb-equal",
      "ok": true,
      "kind": "boundary",
      "inputs": {
        "Th": 300,
        "Tc": 300
      },
      "expect": {
        "q_W_m2": 0
      },
      "expectWarning": null,
      "actual": {
        "q_W_m2": 0,
        "Th": 300,
        "Tc": 300,
        "epsilon": 1,
        "sigma": 5.670374419e-8,
        "model": "stefan_boltzmann"
      },
      "tol": 1e-18
    },
    {
      "id": "boundary-sb-th",
      "ok": true,
      "kind": "boundary",
      "inputs": {
        "Th": 0,
        "Tc": 300
      },
      "expectError": "VALUE_MUST_BE_POSITIVE",
      "code": "VALUE_MUST_BE_POSITIVE",
      "error": "Th must be greater than zero"
    },
    {
      "id": "boundary-sb-eps-range",
      "ok": true,
      "kind": "boundary",
      "inputs": {
        "Th": 400,
        "Tc": 300,
        "epsilon": 1.1
      },
      "expectError": "VALUE_OUT_OF_RANGE",
      "code": "VALUE_OUT_OF_RANGE",
      "error": "epsilon must be in [0, 1]"
    },
    {
      "id": "boundary-sb-missing",
      "ok": true,
      "kind": "boundary",
      "inputs": {
        "Th": 400
      },
      "expectError": "MISSING_REQUIRED_INPUT",
      "code": "MISSING_REQUIRED_INPUT",
      "error": "Tc is required"
    },
    {
      "id": "property-sb-flux",
      "ok": true,
      "kind": "property",
      "detail": "εσ(Th⁴−Tc⁴)",
      "expect": 992.315523325,
      "actual": 992.315523325
    },
    {
      "id": "property-sb-area",
      "ok": true,
      "kind": "property",
      "detail": "Q=A·q",
      "expect": 1984.63104665,
      "actual": 1984.63104665
    },
    {
      "id": "property-sb-eps",
      "ok": true,
      "kind": "property",
      "detail": "ε=0.5",
      "expect": 496.1577616625,
      "actual": 496.1577616625
    },
    {
      "id": "property-sb-equal",
      "ok": true,
      "kind": "property",
      "detail": "Th=Tc→0",
      "expect": 0,
      "actual": 0
    },
    {
      "id": "property-sb-model",
      "ok": true,
      "kind": "property",
      "detail": "stefan_boltzmann",
      "expect": true,
      "actual": "stefan_boltzmann"
    }
  ],
  "tier": "engine_tested",
  "verification": {
    "tests": {
      "passed": 12,
      "total": 12,
      "golden": 1,
      "boundary": 6,
      "property": 5
    },
    "contract_checks": {
      "passed": 4,
      "total": 4
    }
  },
  "evidence_core_generated_at": "2026-09-16T10:25:41.349Z",
  "rendered_at": "2026-09-16T11:29:50.774Z",
  "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": "b2c7b9c1d7873c1867959bd30839e296c2f7908c8974f9a6fafd57b4abd04612",
      "output_schema_sha256": "2a74812c94e9ea96213f80024691c949bf0021938fe682aabd577a7d6096ae51",
      "evidence_sha256": "7c4e563c6343efb1588eb94a0076e65246e6ab38c37fb229868844f0b703fec8",
      "evidence_core_sha256": "7c4e563c6343efb1588eb94a0076e65246e6ab38c37fb229868844f0b703fec8",
      "capability_sha256": "11ad44b9ac98aeaad3832cb3d9990f590c47d04b2f52f3a9e965b51de659c462",
      "engine_sha256": "962b388bf6ab964c25534c158f4effd05da87b7802057b995c26b059ee2f2a06",
      "mcp_contract_sha256": "eaab9a259f55e96fcf88ca76f89a5314de080a19cf54b6d1e4c6633c4574abcf"
    },
    "contract_checks": {
      "total": 4,
      "passed": 4,
      "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"
        },
        {
          "id": "schema-rejects-incomplete-input",
          "status": "pass"
        }
      ]
    },
    "report": "https://www.calculatorx.com/.well-known/calculatorx-release-integrity.json"
  }
}
