{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://www.calculatorx.com/schemas/physics.em.faraday/1.0.0/input.json",
  "title": "Faraday's Law Calculator — input",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "mode": {
      "type": "string",
      "enum": [
        "emf_dPhi",
        "emf_BA"
      ]
    },
    "N": {
      "type": "number",
      "exclusiveMinimum": 0
    },
    "dt_s": {
      "type": "number",
      "exclusiveMinimum": 0
    },
    "dPhi_Wb": {
      "type": "number"
    },
    "B_T": {
      "type": "number"
    },
    "B1_T": {
      "type": "number"
    },
    "B2_T": {
      "type": "number"
    },
    "A_m2": {
      "type": "number",
      "exclusiveMinimum": 0
    },
    "theta_deg": {
      "type": "number"
    }
  },
  "required": [
    "mode"
  ],
  "description": "Induced emf magnitude from flux change or B·A. (calculation_version 1.0.0)"
}
