Math & Numbers
静强度安全系数 n = σ_极限 / σ_工作。可选极限类型:屈服 σ_y(延性设计)或抗拉 σ_uts。内置碳钢/合金钢/铝/铜/奥氏体不锈钢/钛的典型强度,亦可自定义 σ_极限。判定:n<1 失效、1≤n<1.5 边缘、n≥1.5 安全。
用三种语言从你的代码中调用此工具。
curl -X POST 'https://api.elysiatools.com/zh/api/tools/safety-factor-calculator' \
-H 'Content-Type: application/json' \
-d '{"material":"carbonSteel","limitType":"yield","customLimit":0,"appliedStress":150,"decimalPlaces":4}'以 JSON 形式 POST 提交输入参数。文件类型参数需先单独上传。
POST https://api.elysiatools.com/zh/api/tools/safety-factor-calculator| 参数名 | 类型 | 必填 | 说明 |
|---|---|---|---|
| material | select | 否 | Material preset supplies typical σ_y / σ_uts. Choose 'Custom' to enter σ_limit yourself. |
| limitType | select | 否 | Use yield strength σ_y (ductile design, recommended) or ultimate tensile strength σ_uts. |
| customLimit | number | 否 | Material limit σ (MPa). Required only when Material is 'Custom'; otherwise derived from the preset. |
| appliedStress | number | 是 | Actual working stress in the part, in MPa. |
| decimalPlaces | number | 否 |
将此工具加入你的 Model Context Protocol 服务,让 AI 智能体可以列出并调用它。
将以下内容加入你的 MCP 客户端配置:
{
"mcpServers": {
"elysiatools-safety-factor-calculator": {
"name": "safety-factor-calculator",
"description": "静强度安全系数 n = σ_极限 / σ_工作。可选极限类型:屈服 σ_y(延性设计)或抗拉 σ_uts。内置碳钢/合金钢/铝/铜/奥氏体不锈钢/钛的典型强度,亦可自定义 σ_极限。判定:n<1 失效、1≤n<1.5 边缘、n≥1.5 安全。",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=safety-factor-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": "safety-factor-calculator",
"arguments": {
"material": "carbonSteel",
"limitType": "yield",
"customLimit": 0,
"appliedStress": 150,
"decimalPlaces": 4
}
}
}有问题或反馈?请联系 [email protected]
| — |
JSON 结果
{
"key": {...},
"metadata": {
"key": "value"
},
"error": "Error message (optional)",
"message": "Notification message (optional)"
}