{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://www.calculatorx.com/schemas/mechanical.statics.slip_or_tip/1.0.0/input.json",
  "title": "Slip or tip — input",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "W": {
      "type": "number",
      "description": "Weight, in newtons. It acts through the center of the base."
    },
    "mu": {
      "type": "number",
      "description": "Friction coefficient at impending slip."
    },
    "b": {
      "type": "number",
      "description": "Width of the base in the direction of the force."
    },
    "d": {
      "type": "number",
      "description": "Height of the horizontal force above the surface."
    }
  },
  "required": [
    "W",
    "mu",
    "b",
    "d"
  ],
  "description": "Whether a block on a level surface slips or tips under a horizontal force. Slip uses the friction engine. Tip is the moment of the weight about the leading edge. Not an incline, and not a wedge. (calculation_version 1.0.0)"
}
