Math & Numbers
Convert convective heat transfer coefficient (film coefficient h) between W/(m²·K) (watt per square metre-kelvin, SI base, = W/(m²·°C)) and kcal/(m²·h·°C) (1 = 1.1627778 W/(m²·K)). Converts via W/(m²·K) and lists both equivalents. h depends on flow regime and surface, not material. Typical ranges: natural-convection air ≈ 5–25, forced air ≈ 25–250, still water ≈ 100–1000, boiling/condensing water ≈ 2500–50000+ W/(m²·K).
Call this tool from your code in three languages.
curl -X POST 'https://api.elysiatools.com/en/api/tools/heat-transfer-coefficient-converter' \
-H 'Content-Type: application/json' \
-d '{"inputUnit":"W/(m²·K)","value":50,"outputUnit":"kcal/(m²·h·°C)","decimalPlaces":6}'Send a POST request with your inputs as JSON. File parameters require a separate upload first.
POST https://api.elysiatools.com/en/api/tools/heat-transfer-coefficient-converter| Name | Type | Required | Description |
|---|---|---|---|
| inputUnit | select | No | — |
| value | number | Yes | Heat transfer coefficient in the selected Input unit. Must be non-negative. |
| outputUnit | select | No | — |
| decimalPlaces | number | No | — |
JSON result
{
"key": {...},
"metadata": {
"key": "value"
},
"error": "Error message (optional)",
"message": "Notification message (optional)"
}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-heat-transfer-coefficient-converter": {
"name": "heat-transfer-coefficient-converter",
"description": "Convert convective heat transfer coefficient (film coefficient h) between W/(m²·K) (watt per square metre-kelvin, SI base, = W/(m²·°C)) and kcal/(m²·h·°C) (1 = 1.1627778 W/(m²·K)). Converts via W/(m²·K) and lists both equivalents. h depends on flow regime and surface, not material. Typical ranges: natural-convection air ≈ 5–25, forced air ≈ 25–250, still water ≈ 100–1000, boiling/condensing water ≈ 2500–50000+ W/(m²·K).",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=heat-transfer-coefficient-converter",
"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": "heat-transfer-coefficient-converter",
"arguments": {
"inputUnit": "W/(m²·K)",
"value": 50,
"outputUnit": "kcal/(m²·h·°C)",
"decimalPlaces": 6
}
}
}Questions or issues? Contact [email protected]