Math & Numbers
完全约束杆件在均匀温升/温降下的热应力 σ_th = E·α·ΔT。内置碳钢/合金钢/铝/铜/奥氏体不锈钢/钛的典型 E 与 α,亦可自定义。ΔT 以 K 或 °C 输入(数值相同),结果以 MPa 输出。约定:ΔT>0(升温→欲膨胀被约束→受压);工具报告应力大小与压/拉方向。
用三种语言从你的代码中调用此工具。
curl -X POST 'https://api.elysiatools.com/zh/api/tools/thermal-stress-calculator' \
-H 'Content-Type: application/json' \
-d '{"material":"carbonSteel","customE":0,"customAlpha":0,"deltaT":100,"decimalPlaces":4}'以 JSON 形式 POST 提交输入参数。文件类型参数需先单独上传。
POST https://api.elysiatools.com/zh/api/tools/thermal-stress-calculator| 参数名 | 类型 | 必填 | 说明 |
|---|---|---|---|
| material | select | 否 | Material preset supplies typical E and α. Choose 'Custom' to enter both yourself. |
| customE | number | 否 | Young's modulus E in MPa. Required only when Material is 'Custom'. |
| customAlpha | number | 否 | Coefficient of linear thermal expansion α in 1/K. Required only when Material is 'Custom'. Typical: steel ≈ 12e-6, aluminum ≈ 23e-6. |
| deltaT | number | 是 | Temperature change ΔT in K or °C (same magnitude). Positive = heating (→ compressive thermal stress), negative = cooling (→ tensile). |
| decimalPlaces | number |
将此工具加入你的 Model Context Protocol 服务,让 AI 智能体可以列出并调用它。
将以下内容加入你的 MCP 客户端配置:
{
"mcpServers": {
"elysiatools-thermal-stress-calculator": {
"name": "thermal-stress-calculator",
"description": "完全约束杆件在均匀温升/温降下的热应力 σ_th = E·α·ΔT。内置碳钢/合金钢/铝/铜/奥氏体不锈钢/钛的典型 E 与 α,亦可自定义。ΔT 以 K 或 °C 输入(数值相同),结果以 MPa 输出。约定:ΔT>0(升温→欲膨胀被约束→受压);工具报告应力大小与压/拉方向。",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=thermal-stress-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": "thermal-stress-calculator",
"arguments": {
"material": "carbonSteel",
"customE": 0,
"customAlpha": 0,
"deltaT": 100,
"decimalPlaces": 4
}
}
}有问题或反馈?请联系 [email protected]
| 否 |
| — |
JSON 结果
{
"key": {...},
"metadata": {
"key": "value"
},
"error": "Error message (optional)",
"message": "Notification message (optional)"
}