{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://www.calculatorx.com/schemas/electrical.watts_to_kva.input.json",
  "title": "Watts to kVA — input",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "a": {
      "type": "number",
      "minimum": 0,
      "description": "Real power in W (w→kVA) or apparent power in kVA (kVA→W)"
    },
    "b": {
      "type": "number",
      "exclusiveMinimum": 0,
      "maximum": 1,
      "description": "Power factor PF. Engine field name is b."
    },
    "factor": {
      "type": "number",
      "description": "0.001 for W→kVA; 1000 for kVA→W"
    }
  },
  "required": [
    "a",
    "b"
  ],
  "description": "Convert real power in watts to apparent power in kVA using power factor: kVA = W ÷ (1000 × PF). Same PF rule as Watts to VA, scaled to kilovolt-amperes. (calculation_version 1.3.1)"
}
