{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://www.calculatorx.com/schemas/mechanical.statics.cantilever_deflection.input.json",
  "title": "Cantilever deflection — input",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "P": {
      "type": "number",
      "description": "Concentrated load at the free end. Alias load, force, F."
    },
    "L": {
      "type": "number",
      "description": "Length from the fixed end to the load. Alias span, length."
    },
    "E": {
      "type": "number",
      "description": "Elastic modulus. Alias youngs, modulus."
    },
    "I": {
      "type": "number",
      "description": "Centroidal area moment. Alias Ix, inertia."
    }
  },
  "required": [
    "P",
    "L",
    "E",
    "I"
  ],
  "description": "Free-end deflection of a cantilever with one concentrated load at the tip. I is an input. (calculation_version 1.0.0)"
}
