Math & Numbers
Estimate the heating (heat-loss) load of a room by the simplified steady-state method. Envelope transmission loss Q_trans = Σ(A_i·U_i·ΔT) over surfaces entered one per line as 'area,U' (U in W/(m²·K)). Cold-air infiltration loss Q_inf = 0.018·ACH·V·ΔT (W), where 0.018 W·h/(m³·K) ≈ ρ·c_p/3600. Total load = Q_trans + Q_inf, optionally multiplied by a safety factor (default 1.0). ΔT = indoor - outdoor (heating, >0). Temperature in °C/K/°F (only differences matter), area in m²/ft².
Call this tool from your code in three languages.
curl -X POST 'https://api.elysiatools.com/en/api/tools/heating-load-calculator' \
-H 'Content-Type: application/json' \
-d '{"surfaces":"50, 0.5\n10, 1.8","areaUnit":"m2","indoorTemp":20,"outdoorTemp":-5,"tempUnit":"°C","volume":120,"ach":0.5,"safetyFactor":1.1,"decimalPlaces":2}'Send a POST request with your inputs as JSON. File parameters require a separate upload first.
POST https://api.elysiatools.com/en/api/tools/heating-load-calculator| Name | Type | Required | Description |
|---|---|---|---|
| surfaces | textarea | Yes | One envelope surface per line as 'area,U-value'. U in W/(m²·K). Area in the selected Area Unit. Example line: 50, 0.5 |
| areaUnit | select | No | — |
| indoorTemp | number | Yes | Indoor design (comfort) temperature, in the selected Temperature Unit. |
| outdoorTemp | number | Yes | Outdoor design (winter) temperature, in the selected Temperature Unit. |
| tempUnit | select |
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-heating-load-calculator": {
"name": "heating-load-calculator",
"description": "Estimate the heating (heat-loss) load of a room by the simplified steady-state method. Envelope transmission loss Q_trans = Σ(A_i·U_i·ΔT) over surfaces entered one per line as 'area,U' (U in W/(m²·K)). Cold-air infiltration loss Q_inf = 0.018·ACH·V·ΔT (W), where 0.018 W·h/(m³·K) ≈ ρ·c_p/3600. Total load = Q_trans + Q_inf, optionally multiplied by a safety factor (default 1.0). ΔT = indoor - outdoor (heating, >0). Temperature in °C/K/°F (only differences matter), area in m²/ft².",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=heating-load-calculator",
"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": "heating-load-calculator",
"arguments": {
"surfaces": "50, 0.5\n10, 1.8",
"areaUnit": "m2",
"indoorTemp": 20,
"outdoorTemp": -5,
"tempUnit": "°C",
"volume": 120,
"ach": 0.5,
"safetyFactor": 1.1,
"decimalPlaces": 2
}
}
}| — |
| volume | number | Yes | Room (conditioned space) volume V in m³. |
| ach | number | Yes | Air-change rate ACH (1/h), cold-air infiltration/ventilation. Default 0.5. |
| safetyFactor | number | No | Safety / pick-up factor applied to the total load. Default 1.0 (no margin); typical 1.1–1.2. |
| decimalPlaces | number | No | — |
JSON result
{
"key": {...},
"metadata": {
"key": "value"
},
"error": "Error message (optional)",
"message": "Notification message (optional)"
}Questions or issues? Contact [email protected]