{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://www.calculatorx.com/schemas/electrical.pcb.trace_thermal.input.json",
  "title": "PCB Trace Thermal — input",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "mode": {
      "type": "string",
      "enum": [
        "power",
        "rise"
      ]
    },
    "I_A": {
      "type": "number",
      "exclusiveMinimum": 0
    },
    "L_m": {
      "type": "number",
      "exclusiveMinimum": 0
    },
    "W_m": {
      "type": "number",
      "exclusiveMinimum": 0
    },
    "t_m": {
      "type": "number",
      "exclusiveMinimum": 0
    },
    "rho_ohm_m": {
      "type": "number",
      "exclusiveMinimum": 0
    },
    "Rth_C_per_W": {
      "type": "number",
      "exclusiveMinimum": 0
    }
  },
  "required": [
    "I_A",
    "L_m",
    "W_m",
    "t_m"
  ],
  "description": "Copper trace I²R power and temperature rise with board Rth. (calculation_version 1.0.0)"
}
