{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://www.calculatorx.com/schemas/mechanical.statics.shear_moment/1.0.0/input.json",
  "title": "Shear and moment — input",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "L": {
      "type": "number",
      "description": "Span between supports, length."
    },
    "s": {
      "type": "number",
      "description": "Section position from the left support. Strictly inside the span."
    },
    "forces": {
      "type": "string",
      "description": "Rows Fy,x. Upward positive."
    },
    "moments": {
      "type": "string",
      "description": "Rows M,x. CCW positive."
    }
  },
  "required": [
    "L",
    "s"
  ],
  "description": "Shear and bending moment at a cut in a simply supported span with point forces and concentrated moments. Reactions use math.linear_algebra solve. Not deflection and not a distributed load. (calculation_version 1.0.0)"
}
