Math & Numbers
Sépare charge sensible et latente d'un processus de climatisation : puissance totale Qt=ṁ_da·(h1−h2), sensible Qs=ṁ_da·cp_ma·(T1−T2) (cp_ma≈1,006+1,86·W), latente Ql=Qt−Qs, SHR=Qs/Qt. États décrits par bulbe sec T et rapport W ; enthalpie h=1,006·T+W·(2501+1,86·T). Trois modes : états entrée/sortie, depuis Qt/Qs, ou depuis Qt/SHR.
Appelez cet outil depuis votre code en trois langages.
curl -X POST 'https://api.elysiatools.com/fr/api/tools/sensible-latent-heat-split' \
-H 'Content-Type: application/json' \
-d '{"mode":"state","t1":26,"w1":10.5,"t2":13,"w2":8.8,"humidityUnit":"g/kg","mda":0.5,"flowUnit":"kg/s","qt":0,"qs":0,"shr":0,"capacityUnit":"kW","decimalPlaces":4}'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/sensible-latent-heat-split| Nom | Type | Requis | Description |
|---|---|---|---|
| mode | select | Non | Full air-state split, from Qt & Qs, or from Qt & SHR. |
| t1 | number | Non | Entering (return / coil-on) dry-bulb temperature in °C. Used in 'state' mode. |
| w1 | number | Non | Entering humidity ratio W1, in the selected Humidity Unit. Used in 'state' mode. |
| t2 | number | Non | Leaving (supply / coil-off) dry-bulb temperature in °C. Used in 'state' mode. |
| w2 | number | Non |
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-sensible-latent-heat-split": {
"name": "sensible-latent-heat-split",
"description": "Sépare charge sensible et latente d'un processus de climatisation : puissance totale Qt=ṁ_da·(h1−h2), sensible Qs=ṁ_da·cp_ma·(T1−T2) (cp_ma≈1,006+1,86·W), latente Ql=Qt−Qs, SHR=Qs/Qt. États décrits par bulbe sec T et rapport W ; enthalpie h=1,006·T+W·(2501+1,86·T). Trois modes : états entrée/sortie, depuis Qt/Qs, ou depuis Qt/SHR.",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=sensible-latent-heat-split",
"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": "sensible-latent-heat-split",
"arguments": {
"mode": "state",
"t1": 26,
"w1": 10.5,
"t2": 13,
"w2": 8.8,
"humidityUnit": "g/kg",
"mda": 0.5,
"flowUnit": "kg/s",
"qt": 0,
"qs": 0,
"shr": 0,
"capacityUnit": "kW",
"decimalPlaces": 4
}
}
}| Leaving humidity ratio W2, in the selected Humidity Unit. Used in 'state' mode. |
| humidityUnit | select | Non | — |
| mda | number | Non | Dry-air mass flow rate ṁ_da, in the selected Flow Unit. Used in 'state' mode. |
| flowUnit | select | Non | — |
| qt | number | Non | Total cooling capacity Qt. Enter in the selected Capacity Unit. Used in 'qt' and 'shr' modes. |
| qs | number | Non | Sensible cooling capacity Qs. Enter in the selected Capacity Unit. Used in 'qt' mode. |
| shr | number | Non | Sensible Heat Ratio SHR = Qs / Qt (0–1). Used in 'shr' mode. |
| capacityUnit | select | Non | — |
| 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]