Math & Numbers
Tempo de atuação de relé de sobrecorrente conforme IEC 60255-151: t = TMS·(k/((I/I_s)^α − 1)). Curvas SI/VI/EI/LTI e amostragem da característica T-I.
Chame esta ferramenta a partir do seu código em três idiomas.
curl -X POST 'https://api.elysiatools.com/pt/api/tools/relay-setting-calculator' \
-H 'Content-Type: application/json' \
-d '{"curveType":"SI","pickupCurrent":100,"timeMultiplier":0.2,"faultCurrent":500,"curvePoints":21,"decimalPlaces":4}'Envie uma requisição POST com suas entradas em JSON. Parâmetros do tipo arquivo exigem upload prévio.
POST https://api.elysiatools.com/pt/api/tools/relay-setting-calculator| Nome | Tipo | Obrigatório | Descrição |
|---|---|---|---|
| curveType | select | Não | — |
| pickupCurrent | number | Sim | Relay pickup (setting) current, primary side. |
| timeMultiplier | number | Sim | Time multiplier setting, typical 0.05 – 1.0. |
| faultCurrent | number | Sim | Applied fault current. Must exceed pickup (I > I_s) for the relay to operate. |
| curvePoints | number | Não |
Adicione esta ferramenta ao seu servidor Model Context Protocol para que agentes de IA possam listá-la e chamá-la.
Adicione este bloco à configuração do seu cliente MCP:
{
"mcpServers": {
"elysiatools-relay-setting-calculator": {
"name": "relay-setting-calculator",
"description": "Tempo de atuação de relé de sobrecorrente conforme IEC 60255-151: t = TMS·(k/((I/I_s)^α − 1)). Curvas SI/VI/EI/LTI e amostragem da característica T-I.",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=relay-setting-calculator",
"command": "",
"args": [],
"env": {},
"isActive": true,
"type": "sse"
}
}
}Após conectar ao endpoint SSE, liste as ferramentas expostas:
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/list"
}Invoque a ferramenta pelo seu id; os argumentos são construídos a partir de seus parâmetros:
{
"jsonrpc": "2.0",
"id": 2,
"method": "tools/call",
"params": {
"name": "relay-setting-calculator",
"arguments": {
"curveType": "SI",
"pickupCurrent": 100,
"timeMultiplier": 0.2,
"faultCurrent": 500,
"curvePoints": 21,
"decimalPlaces": 4
}
}
}Dúvidas ou problemas? Contate [email protected]
| Number of points sampled on the T-I curve (11–41). |
| decimalPlaces | number | Não | — |
Resultado JSON
{
"key": {...},
"metadata": {
"key": "value"
},
"error": "Error message (optional)",
"message": "Notification message (optional)"
}