{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://www.calculatorx.com/schemas/mechanical.statics.incline_angled_pull.input.json",
  "title": "Angled 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."
    },
    "alpha_deg": {
      "type": "number",
      "description": "Angle of the pull above the horizontal, in degrees, in [0, 90)."
    },
    "direction": {
      "type": "string",
      "description": "up or down: impending motion along the plane."
    }
  },
  "required": [
    "W",
    "theta_deg",
    "mu",
    "alpha_deg",
    "direction"
  ],
  "description": "Pull at an angle above the horizontal on a block at impending slip on an incline. α = 0 is a horizontal force. α = θ is a force parallel to the plane. (calculation_version 1.0.0)"
}
