{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://www.calculatorx.com/schemas/mechanical.statics.incline_horizontal.input.json",
  "title": "Horizontal force 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."
    },
    "mu": {
      "type": "number",
      "description": "Friction coefficient at impending slip."
    },
    "direction": {
      "type": "string",
      "description": "up or down: the sense of impending motion along the plane."
    }
  },
  "required": [
    "W",
    "theta_deg",
    "mu",
    "direction"
  ],
  "description": "Horizontal force that puts a block on an incline at impending slip. P is positive toward the uphill side. The normal grows by P sinθ. This is not a force parallel to the plane. (calculation_version 1.0.0)"
}
