Math & Numbers
Berechnet die verfügbare Netto-Förderhöhe der Saugseite der Pumpe: NPSH_a = (p_surface - p_vapor)/(ρ·g) + H_static - h_friction (in m). Oberflächen- und Dampfdruck sind absolut; H_static ist positiv bei flutender Saugung (Flüssigkeit über der Pumpe) und negativ bei Saughub (Flüssigkeit unter der Pumpe). Vergleich mit dem NPSH_r der Pumpenkennlinie liefert die Reserve margin = NPSH_a - NPSH_r und das Verhältnis ratio = NPSH_a/NPSH_r; Einstufung safe (sicher), marginal (Reserve < 0,5 m) oder cavitation likely (Kavitation wahrscheinlich). Ist NPSH_r = 0, wird nur NPSH_a ausgegeben. Drücke in Pa/kPa/bar/atm/psi, Länge in m/ft, Dichte in kg/m³/g/cm³/lb/ft³.
Rufen Sie dieses Werkzeug aus Ihrem Code in drei Sprachen auf.
curl -X POST 'https://api.elysiatools.com/de/api/tools/pump-npsh-calculator' \
-H 'Content-Type: application/json' \
-d '{"surfacePressure":1,"pressureUnit":"atm","vaporPressure":2.34,"vaporPressureUnit":"kPa","staticHead":2,"staticHeadUnit":"m","frictionLoss":0.5,"frictionUnit":"m","density":1000,"densityUnit":"kg/m3","gravity":9.81,"npshRequired":3,"npshUnit":"m","decimalPlaces":4}'Senden Sie eine POST-Anfrage mit Ihren Eingaben als JSON. Dateiparameter erfordern einen vorherigen Upload.
POST https://api.elysiatools.com/de/api/tools/pump-npsh-calculator| Name | Typ | Erforderlich | Beschreibung |
|---|---|---|---|
| surfacePressure | number | Ja | Absolute pressure at the liquid surface (p_surface). Enter in the selected Pressure Unit. |
| pressureUnit | select | Nein | — |
| vaporPressure | number | Ja | Absolute vapor pressure of the liquid at pumping temperature (p_vapor). Enter in the selected Vapor Pressure Unit. |
| vaporPressureUnit | select | Nein | — |
| staticHead | number | Ja | Elevation of liquid surface above pump centerline (H_static). Positive if liquid level is above the pump (flooded suction), negative for suction lift. Enter in the selected Static Head Unit. |
| staticHeadUnit | select | Nein | — |
| frictionLoss | number | Nein | Suction-line friction head loss (h_friction), already computed. Enter in the selected Friction Loss Unit. |
| frictionUnit | select | Nein | — |
| density | number | Nein | Liquid density (ρ). Enter in the selected Density Unit. |
| densityUnit | select | Nein | — |
| gravity | number | Nein | Gravitational acceleration g in m/s². |
| npshRequired | number | Nein | The pump's required NPSH (NPSH_r) from its curve. Enter in the selected NPSH Unit. If 0, the cavitation comparison is skipped and only NPSH_a is reported. |
| npshUnit | select | Nein | — |
| decimalPlaces | number | Nein | — |
JSON-Ergebnis
{
"key": {...},
"metadata": {
"key": "value"
},
"error": "Error message (optional)",
"message": "Notification message (optional)"
}Fügen Sie dieses Werkzeug Ihrem Model-Context-Protocol-Server hinzu, damit KI-Agenten es auflisten und aufrufen können.
Fügen Sie diesen Block Ihrer MCP-Client-Konfiguration hinzu:
{
"mcpServers": {
"elysiatools-pump-npsh-calculator": {
"name": "pump-npsh-calculator",
"description": "Berechnet die verfügbare Netto-Förderhöhe der Saugseite der Pumpe: NPSH_a = (p_surface - p_vapor)/(ρ·g) + H_static - h_friction (in m). Oberflächen- und Dampfdruck sind absolut; H_static ist positiv bei flutender Saugung (Flüssigkeit über der Pumpe) und negativ bei Saughub (Flüssigkeit unter der Pumpe). Vergleich mit dem NPSH_r der Pumpenkennlinie liefert die Reserve margin = NPSH_a - NPSH_r und das Verhältnis ratio = NPSH_a/NPSH_r; Einstufung safe (sicher), marginal (Reserve < 0,5 m) oder cavitation likely (Kavitation wahrscheinlich). Ist NPSH_r = 0, wird nur NPSH_a ausgegeben. Drücke in Pa/kPa/bar/atm/psi, Länge in m/ft, Dichte in kg/m³/g/cm³/lb/ft³.",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=pump-npsh-calculator",
"command": "",
"args": [],
"env": {},
"isActive": true,
"type": "sse"
}
}
}Nach dem Verbinden mit dem SSE-Endpunkt listen Sie die bereitgestellten Werkzeuge auf:
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/list"
}Rufen Sie das Werkzeug über seine ID auf; Argumente werden aus seiner Parameterliste gebildet:
{
"jsonrpc": "2.0",
"id": 2,
"method": "tools/call",
"params": {
"name": "pump-npsh-calculator",
"arguments": {
"surfacePressure": 1,
"pressureUnit": "atm",
"vaporPressure": 2.34,
"vaporPressureUnit": "kPa",
"staticHead": 2,
"staticHeadUnit": "m",
"frictionLoss": 0.5,
"frictionUnit": "m",
"density": 1000,
"densityUnit": "kg/m3",
"gravity": 9.81,
"npshRequired": 3,
"npshUnit": "m",
"decimalPlaces": 4
}
}
}Fragen oder Probleme? Kontakt: [email protected]