{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://www.calculatorx.com/schemas/mechanical.statics.incline_least_pull.input.json",
  "title": "Least pull on an incline — input",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "W": {
      "type": "number",
      "description": "Weight, in newtons."
    },
    "theta_deg": {
      "type": "number",
      "description": "Incline angle from the horizontal, in degrees, in [0, 90)."
    },
    "mu": {
      "type": "number",
      "description": "Friction coefficient at impending slip."
    }
  },
  "required": [
    "W",
    "theta_deg",
    "mu"
  ],
  "description": "The smallest pull that moves a block up an incline. The pull is at the friction angle above the incline. On a level surface this is the least-pull page. (calculation_version 1.0.0)"
}
