Math & Numbers
按简化稳态法估算供暖热负荷:围护结构传热 Q_trans=Σ(A_i·U_i·ΔT)(每行输入「面积,U 值」),冷风渗透 Q_inf=0.018·ACH·V·ΔT(0.018 W·h/(m³·K)≈ρ·c_p/3600)。总热负荷=Q_trans+Q_inf,再乘可选安全系数(默认 1.0,可设 1.1–1.2)。ΔT=室内-室外(供暖时 >0)。温度支持 °C/K/°F(仅用于差值),面积支持 m²/ft²。
用三种语言从你的代码中调用此工具。
curl -X POST 'https://api.elysiatools.com/zh/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}'以 JSON 形式 POST 提交输入参数。文件类型参数需先单独上传。
POST https://api.elysiatools.com/zh/api/tools/heating-load-calculator| 参数名 | 类型 | 必填 | 说明 |
|---|---|---|---|
| surfaces | textarea | 是 | 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 | 否 | — |
| indoorTemp | number | 是 | Indoor design (comfort) temperature, in the selected Temperature Unit. |
| outdoorTemp | number | 是 | Outdoor design (winter) temperature, in the selected Temperature Unit. |
| tempUnit | select | 否 |
将此工具加入你的 Model Context Protocol 服务,让 AI 智能体可以列出并调用它。
将以下内容加入你的 MCP 客户端配置:
{
"mcpServers": {
"elysiatools-heating-load-calculator": {
"name": "heating-load-calculator",
"description": "按简化稳态法估算供暖热负荷:围护结构传热 Q_trans=Σ(A_i·U_i·ΔT)(每行输入「面积,U 值」),冷风渗透 Q_inf=0.018·ACH·V·ΔT(0.018 W·h/(m³·K)≈ρ·c_p/3600)。总热负荷=Q_trans+Q_inf,再乘可选安全系数(默认 1.0,可设 1.1–1.2)。ΔT=室内-室外(供暖时 >0)。温度支持 °C/K/°F(仅用于差值),面积支持 m²/ft²。",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=heating-load-calculator",
"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": "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
}
}
}有问题或反馈?请联系 [email protected]
| — |
| volume | number | 是 | Room (conditioned space) volume V in m³. |
| ach | number | 是 | Air-change rate ACH (1/h), cold-air infiltration/ventilation. Default 0.5. |
| safetyFactor | number | 否 | Safety / pick-up factor applied to the total load. Default 1.0 (no margin); typical 1.1–1.2. |
| decimalPlaces | number | 否 | — |
JSON 结果
{
"key": {...},
"metadata": {
"key": "value"
},
"error": "Error message (optional)",
"message": "Notification message (optional)"
}