Math & Numbers
对空调过程做显热/潜热分离:总冷量 Qt=ṁ_da·(h1−h2),显热 Qs=ṁ_da·cp_ma·(T1−T2)(cp_ma≈1.006+1.86·W),潜热 Ql=Qt−Qs,显热比 SHR=Qs/Qt。进出状态由干球温度 T 与含湿量 W 描述,焓 h=1.006·T+W·(2501+1.86·T)。支持三种模式:进出状态全分离、由 Qt/Qs 求 SHR 与 Ql、由 Qt/SHR 求 Qs 与 Ql。
用三种语言从你的代码中调用此工具。
curl -X POST 'https://api.elysiatools.com/zh/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}'以 JSON 形式 POST 提交输入参数。文件类型参数需先单独上传。
POST https://api.elysiatools.com/zh/api/tools/sensible-latent-heat-split| 参数名 | 类型 | 必填 | 说明 |
|---|---|---|---|
| mode | select | 否 | Full air-state split, from Qt & Qs, or from Qt & SHR. |
| t1 | number | 否 | Entering (return / coil-on) dry-bulb temperature in °C. Used in 'state' mode. |
| w1 | number | 否 | Entering humidity ratio W1, in the selected Humidity Unit. Used in 'state' mode. |
| t2 | number | 否 | Leaving (supply / coil-off) dry-bulb temperature in °C. Used in 'state' mode. |
| w2 | number | 否 | Leaving humidity ratio W2, in the selected Humidity Unit. Used in 'state' mode. |
将此工具加入你的 Model Context Protocol 服务,让 AI 智能体可以列出并调用它。
将以下内容加入你的 MCP 客户端配置:
{
"mcpServers": {
"elysiatools-sensible-latent-heat-split": {
"name": "sensible-latent-heat-split",
"description": "对空调过程做显热/潜热分离:总冷量 Qt=ṁ_da·(h1−h2),显热 Qs=ṁ_da·cp_ma·(T1−T2)(cp_ma≈1.006+1.86·W),潜热 Ql=Qt−Qs,显热比 SHR=Qs/Qt。进出状态由干球温度 T 与含湿量 W 描述,焓 h=1.006·T+W·(2501+1.86·T)。支持三种模式:进出状态全分离、由 Qt/Qs 求 SHR 与 Ql、由 Qt/SHR 求 Qs 与 Ql。",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=sensible-latent-heat-split",
"command": "",
"args": [],
"env": {},
"isActive": true,
"type": "sse"
}
}
}连接到 SSE 端点后,列出已开放的工具:
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/list"
}通过工具 id 调用,参数由其参数表构建:
{
"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
}
}
}有问题或反馈?请联系 [email protected]
| humidityUnit | select | 否 | — |
| mda | number | 否 | Dry-air mass flow rate ṁ_da, in the selected Flow Unit. Used in 'state' mode. |
| flowUnit | select | 否 | — |
| qt | number | 否 | Total cooling capacity Qt. Enter in the selected Capacity Unit. Used in 'qt' and 'shr' modes. |
| qs | number | 否 | Sensible cooling capacity Qs. Enter in the selected Capacity Unit. Used in 'qt' mode. |
| shr | number | 否 | Sensible Heat Ratio SHR = Qs / Qt (0–1). Used in 'shr' mode. |
| capacityUnit | select | 否 | — |
| decimalPlaces | number | 否 | — |
JSON 结果
{
"key": {...},
"metadata": {
"key": "value"
},
"error": "Error message (optional)",
"message": "Notification message (optional)"
}