Math & Numbers
Confort thermique selon ISO 7730 / ASHRAE 55 (Fanger) : PMV (vote moyen prévu, −3 froid..+3 chaud) et PPD (% prévu d'insatisfaits). Entrées : Ta, Tr, v_ar, HR φ, taux métabolique M (met, 1 met=58,2 W/m²), isolation vêtement Icl (clo, 1 clo=0,155 m²·K/W), travail externe W (défaut 0). Tcl résolu itérativement. Étiquette de sensation sur 7 niveaux.
Appelez cet outil depuis votre code en trois langages.
curl -X POST 'https://api.elysiatools.com/fr/api/tools/thermal-comfort-pmv' \
-H 'Content-Type: application/json' \
-d '{"ta":22,"tr":22,"tempUnit":"°C","var":0.1,"rh":50,"met":1.2,"clo":1,"work":0,"decimalPlaces":3}'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/thermal-comfort-pmv| Nom | Type | Requis | Description |
|---|---|---|---|
| ta | number | Oui | Dry-bulb air temperature Ta, in the selected Temperature Unit. |
| tr | number | Oui | Mean radiant temperature Tr, in the selected Temperature Unit. |
| tempUnit | select | Non | — |
| var | number | Oui | Relative air velocity v_ar in m/s. Typical office 0.1 m/s. 0–3 m/s. |
| rh | number | Oui |
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-thermal-comfort-pmv": {
"name": "thermal-comfort-pmv",
"description": "Confort thermique selon ISO 7730 / ASHRAE 55 (Fanger) : PMV (vote moyen prévu, −3 froid..+3 chaud) et PPD (% prévu d'insatisfaits). Entrées : Ta, Tr, v_ar, HR φ, taux métabolique M (met, 1 met=58,2 W/m²), isolation vêtement Icl (clo, 1 clo=0,155 m²·K/W), travail externe W (défaut 0). Tcl résolu itérativement. Étiquette de sensation sur 7 niveaux.",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=thermal-comfort-pmv",
"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": "thermal-comfort-pmv",
"arguments": {
"ta": 22,
"tr": 22,
"tempUnit": "°C",
"var": 0.1,
"rh": 50,
"met": 1.2,
"clo": 1,
"work": 0,
"decimalPlaces": 3
}
}
}| Relative humidity φ in % (0–100). |
| met | number | Oui | Metabolic rate M in met (1 met = 58.2 W/m²). Seated/resting 1.0, office standing 1.2, light work 1.6–2.0. |
| clo | number | Oui | Clothing insulation Icl in clo (1 clo = 0.155 m²·K/W). Summer light 0.5, winter business suit 1.0. |
| work | number | Non | External mechanical work W in met. Usually 0 for office / sedentary activity. |
| 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]