poker_proposeZone
Proposes material zones for 3D bodies with physical validation, specifying material type and density parameters for structural analysis.
Instructions
材料ゾーンを提案します(物理検証付き)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| body_name | Yes | ゾーンが適用される立体名 | |
| density | No | 密度 (g/cm³) | |
| material | Yes | 材料名(例:CONCRETE, STEEL, VOID) |
Input Schema (JSON Schema)
{
"properties": {
"body_name": {
"description": "ゾーンが適用される立体名",
"type": "string"
},
"density": {
"description": "密度 (g/cm³)",
"maximum": 30,
"minimum": 0.001,
"type": "number"
},
"material": {
"description": "材料名(例:CONCRETE, STEEL, VOID)",
"type": "string"
}
},
"required": [
"body_name",
"material"
],
"type": "object"
}