Math & Numbers
按 ACI 211.1-91 体积法进行普通混凝土配合比设计。输入坍落度、骨料最大粒径、是否引气、水灰比 w/c、砂细度模数与粗骨料干振密度,输出每立方米水泥、水、砂、石用量及质量比。
用三种语言从你的代码中调用此工具。
curl -X POST 'https://api.elysiatools.com/zh/api/tools/concrete-mix-design' \
-H 'Content-Type: application/json' \
-d '{"slump":"75-100","maxSize":"19","air":"non-entrained","wcRatio":0.45,"finenessModulus":2.7,"caDensity":1600,"decimalPlaces":2}'以 JSON 形式 POST 提交输入参数。文件类型参数需先单独上传。
POST https://api.elysiatools.com/zh/api/tools/concrete-mix-design| 参数名 | 类型 | 必填 | 说明 |
|---|---|---|---|
| slump | select | 否 | — |
| maxSize | select | 否 | — |
| air | select | 否 | — |
| wcRatio | number | 是 | Mass ratio of water to cement. Typical range 0.35–0.65. |
| finenessModulus | number | 是 | Fineness modulus of the fine aggregate. ACI reference range 2.40–3.00. |
| caDensity |
将此工具加入你的 Model Context Protocol 服务,让 AI 智能体可以列出并调用它。
将以下内容加入你的 MCP 客户端配置:
{
"mcpServers": {
"elysiatools-concrete-mix-design": {
"name": "concrete-mix-design",
"description": "按 ACI 211.1-91 体积法进行普通混凝土配合比设计。输入坍落度、骨料最大粒径、是否引气、水灰比 w/c、砂细度模数与粗骨料干振密度,输出每立方米水泥、水、砂、石用量及质量比。",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=concrete-mix-design",
"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": "concrete-mix-design",
"arguments": {
"slump": "75-100",
"maxSize": "19",
"air": "non-entrained",
"wcRatio": 0.45,
"finenessModulus": 2.7,
"caDensity": 1600,
"decimalPlaces": 2
}
}
}有问题或反馈?请联系 [email protected]
| number |
| 否 |
| Dry-rodded unit weight of the coarse aggregate. Default 1600 kg/m³. |
| decimalPlaces | number | 否 | — |
JSON 结果
{
"key": {...},
"metadata": {
"key": "value"
},
"error": "Error message (optional)",
"message": "Notification message (optional)"
}