{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://www.calculatorx.com/schemas/mechanical.statics.angled_pull.input.json",
  "title": "Angled pull — input",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "W": {
      "type": "number",
      "description": "Weight, in newtons."
    },
    "mu": {
      "type": "number",
      "description": "Friction coefficient at impending slip."
    },
    "alpha_deg": {
      "type": "number",
      "description": "Angle of the pull above the horizontal, in degrees."
    }
  },
  "required": [
    "W",
    "mu",
    "alpha_deg"
  ],
  "description": "Pull at an angle above the horizontal that puts a block on a level surface at impending slip. The normal is W − P sinα. A horizontal pull is α = 0. (calculation_version 1.0.0)"
}
