Math & Numbers
Calcula a convecção de calor pela lei de Newton: densidade de fluxo q=h·ΔT (W/m²), fluxo Q=h·A·ΔT (W) e resistência térmica por convecção R_conv=1/(h·A) (K/W). h é o coeficiente de convecção (W/(m²·K)); ΔT a diferença de temperatura entre a superfície e o fluido (K; diferença em °C = diferença em K, diferença em °F ×5/9); A a área de troca. ΔT pode ser negativo (fluxo no sentido oposto), mas h e A devem ser positivos. Área em m²/cm².
Chame esta ferramenta a partir do seu código em três idiomas.
curl -X POST 'https://api.elysiatools.com/pt/api/tools/heat-convection-calculator' \
-H 'Content-Type: application/json' \
-d '{"heatTransferCoefficient":25,"temperatureDiff":20,"tempUnit":"K","area":1,"areaUnit":"m2","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/heat-convection-calculator| Nome | Tipo | Obrigatório | Descrição |
|---|---|---|---|
| heatTransferCoefficient | number | Sim | Convective heat-transfer coefficient h in W/(m²·K). |
| temperatureDiff | number | Sim | Temperature difference ΔT between the surface and the fluid, in the selected Temperature Unit. May be negative to indicate the reverse heat-flow direction. |
| tempUnit | select | Não | Unit of the temperature difference. This is a difference, not an absolute temperature: Δ°C = ΔK and Δ°F ×5/9 = ΔK. |
| area | number | Não | Heat-transfer area A, in the selected Area Unit. |
| areaUnit |
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-heat-convection-calculator": {
"name": "heat-convection-calculator",
"description": "Calcula a convecção de calor pela lei de Newton: densidade de fluxo q=h·ΔT (W/m²), fluxo Q=h·A·ΔT (W) e resistência térmica por convecção R_conv=1/(h·A) (K/W). h é o coeficiente de convecção (W/(m²·K)); ΔT a diferença de temperatura entre a superfície e o fluido (K; diferença em °C = diferença em K, diferença em °F ×5/9); A a área de troca. ΔT pode ser negativo (fluxo no sentido oposto), mas h e A devem ser positivos. Área em m²/cm².",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=heat-convection-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": "heat-convection-calculator",
"arguments": {
"heatTransferCoefficient": 25,
"temperatureDiff": 20,
"tempUnit": "K",
"area": 1,
"areaUnit": "m2",
"decimalPlaces": 4
}
}
}| select |
| Não |
| — |
| decimalPlaces | number | Não | — |
Resultado JSON
{
"key": {...},
"metadata": {
"key": "value"
},
"error": "Error message (optional)",
"message": "Notification message (optional)"
}Dúvidas ou problemas? Contate [email protected]