Math & Numbers
Compute three-phase induction motor slip: synchronous speed n_s = 60·f/p and slip s = (n_s − n)/n_s. Supports slip-from-speed and speed-from-slip modes; automatically flags generator mode (s < 0).
Call this tool from your code in three languages.
curl -X POST 'https://api.elysiatools.com/en/api/tools/motor-slip-calculator' \
-H 'Content-Type: application/json' \
-d '{"mode":"slipFromSpeed","frequency":50,"poles":2,"rotorSpeed":1440,"slip":0,"decimalPlaces":4}'Send a POST request with your inputs as JSON. File parameters require a separate upload first.
POST https://api.elysiatools.com/en/api/tools/motor-slip-calculator| Name | Type | Required | Description |
|---|---|---|---|
| mode | select | No | — |
| frequency | number | Yes | Supply frequency in Hz (50 Hz or 60 Hz are most common). |
| poles | number | Yes | Number of POLE PAIRS p (not total poles). A 4-pole motor has p=2; a 6-pole motor has p=3. |
| rotorSpeed | number | No | Required for Slip-from-speed mode. Enter the measured rotor speed in rpm. |
| slip | number | No |
Add this tool to your Model Context Protocol server so AI agents can list and call it.
Add this block to your MCP client configuration:
{
"mcpServers": {
"elysiatools-motor-slip-calculator": {
"name": "motor-slip-calculator",
"description": "Compute three-phase induction motor slip: synchronous speed n_s = 60·f/p and slip s = (n_s − n)/n_s. Supports slip-from-speed and speed-from-slip modes; automatically flags generator mode (s < 0).",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=motor-slip-calculator",
"command": "",
"args": [],
"env": {},
"isActive": true,
"type": "sse"
}
}
}After connecting to the SSE endpoint, list the exposed tools:
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/list"
}Invoke the tool by its id, passing arguments built from its parameters:
{
"jsonrpc": "2.0",
"id": 2,
"method": "tools/call",
"params": {
"name": "motor-slip-calculator",
"arguments": {
"mode": "slipFromSpeed",
"frequency": 50,
"poles": 2,
"rotorSpeed": 1440,
"slip": 0,
"decimalPlaces": 4
}
}
}Questions or issues? Contact [email protected]
| Required for Speed-from-slip mode. Enter slip as a fraction (0.04 means 4%). |
| decimalPlaces | number | No | — |
JSON result
{
"key": {...},
"metadata": {
"key": "value"
},
"error": "Error message (optional)",
"message": "Notification message (optional)"
}