{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://www.calculatorx.com/schemas/mechanical.statics.bending_stress/1.0.0/input.json",
  "title": "Bending stress — input",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "M": {
      "type": "number",
      "description": "Bending moment. The sign is the stress sign."
    },
    "S": {
      "type": "number",
      "description": "Elastic section modulus. Positive."
    },
    "Ix": {
      "type": "number",
      "description": "Centroidal second moment, used only when S is omitted."
    },
    "c": {
      "type": "number",
      "description": "Distance to the fiber, used only when S is omitted."
    }
  },
  "required": [
    "M"
  ],
  "description": "Elastic bending stress σ = M/S on one centroidal axis. S may be entered or formed as Ix/c by the section-modulus engine. (calculation_version 1.0.0)"
}
