Math & Numbers
Berechnet die Leistungszahl einer Kälte-/Wärmepumpenmaschine: COP=Q_c/W (Q_c Kälteleistung, W Antriebsarbeit), dimensionslos. Drei Modi: COP berechnen (Q_c und W), Kälteleistung (COP und W) oder Antriebsleistung (COP und Q_c). Leistung in W/kW/BTU·h⁻¹/Tonnen/kcal·h⁻¹, Antrieb in W/kW/PS; interne Umrechnung auf W.
Rufen Sie dieses Werkzeug aus Ihrem Code in drei Sprachen auf.
curl -X POST 'https://api.elysiatools.com/de/api/tools/cop-calculator' \
-H 'Content-Type: application/json' \
-d '{"mode":"cop","coolingCapacity":3500,"capacityUnit":"W","inputPower":1000,"powerUnit":"W","cop":0,"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/cop-calculator| Name | Typ | Erforderlich | Beschreibung |
|---|---|---|---|
| mode | select | Nein | Solve COP (needs Q_c and W), solve Cooling Capacity (needs COP and W), or solve Input Power (needs COP and Q_c). |
| coolingCapacity | number | Ja | Cooling capacity Q_c. Enter in the selected Capacity Unit. Required unless solving capacity. |
| capacityUnit | select | Nein | — |
| inputPower | number | Ja | Work input / electrical power W. Enter in the selected Power Unit. Required unless solving power. |
| powerUnit | select |
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-cop-calculator": {
"name": "cop-calculator",
"description": "Berechnet die Leistungszahl einer Kälte-/Wärmepumpenmaschine: COP=Q_c/W (Q_c Kälteleistung, W Antriebsarbeit), dimensionslos. Drei Modi: COP berechnen (Q_c und W), Kälteleistung (COP und W) oder Antriebsleistung (COP und Q_c). Leistung in W/kW/BTU·h⁻¹/Tonnen/kcal·h⁻¹, Antrieb in W/kW/PS; interne Umrechnung auf W.",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=cop-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": "cop-calculator",
"arguments": {
"mode": "cop",
"coolingCapacity": 3500,
"capacityUnit": "W",
"inputPower": 1000,
"powerUnit": "W",
"cop": 0,
"decimalPlaces": 4
}
}
}| Nein |
| — |
| cop | number | Nein | COP value (dimensionless). Required when solving capacity or power; ignored when solving COP. |
| decimalPlaces | number | Nein | — |
JSON-Ergebnis
{
"key": {...},
"metadata": {
"key": "value"
},
"error": "Error message (optional)",
"message": "Notification message (optional)"
}Fragen oder Probleme? Kontakt: [email protected]