Math & Numbers
Estime la charge thermique de chauffage par méthode simplifiée stationnaire : déperdition par l'enveloppe Q_trans=Σ(A_i·U_i·ΔT) (une ligne « surface,U »), infiltration d'air froid Q_inf=0,018·ACH·V·ΔT. Charge totale=Q_trans+Q_inf, multipliée par un facteur de sécurité optionnel (défaut 1,0). ΔT=intérieur-extérieur (>0). Température en °C/K/°F (différences), surface en m²/pi².
Appelez cet outil depuis votre code en trois langages.
curl -X POST 'https://api.elysiatools.com/fr/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}'Envoyez une requête POST avec vos entrées en JSON. Les paramètres de type fichier nécessitent un upload préalable.
POST https://api.elysiatools.com/fr/api/tools/heating-load-calculator| Nom | Type | Requis | Description |
|---|---|---|---|
| surfaces | textarea | Oui | 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 | Non | — |
| indoorTemp | number | Oui | Indoor design (comfort) temperature, in the selected Temperature Unit. |
| outdoorTemp | number | Oui | Outdoor design (winter) temperature, in the selected Temperature Unit. |
| tempUnit | select |
Ajoutez cet outil à votre serveur Model Context Protocol pour que les agents IA puissent le lister et l'appeler.
Ajoutez ce bloc à la configuration de votre client MCP :
{
"mcpServers": {
"elysiatools-heating-load-calculator": {
"name": "heating-load-calculator",
"description": "Estime la charge thermique de chauffage par méthode simplifiée stationnaire : déperdition par l'enveloppe Q_trans=Σ(A_i·U_i·ΔT) (une ligne « surface,U »), infiltration d'air froid Q_inf=0,018·ACH·V·ΔT. Charge totale=Q_trans+Q_inf, multipliée par un facteur de sécurité optionnel (défaut 1,0). ΔT=intérieur-extérieur (>0). Température en °C/K/°F (différences), surface en m²/pi².",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=heating-load-calculator",
"command": "",
"args": [],
"env": {},
"isActive": true,
"type": "sse"
}
}
}Après connexion au point d'accès SSE, listez les outils exposés :
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/list"
}Appelez l'outil par son id ; les arguments sont construits à partir de ses paramètres :
{
"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
}
}
}| Non |
| — |
| volume | number | Oui | Room (conditioned space) volume V in m³. |
| ach | number | Oui | Air-change rate ACH (1/h), cold-air infiltration/ventilation. Default 0.5. |
| safetyFactor | number | Non | Safety / pick-up factor applied to the total load. Default 1.0 (no margin); typical 1.1–1.2. |
| decimalPlaces | number | Non | — |
Résultat JSON
{
"key": {...},
"metadata": {
"key": "value"
},
"error": "Error message (optional)",
"message": "Notification message (optional)"
}Des questions ou un problème ? Contactez [email protected]