find_entities
Locate bridge nodes or elements by coordinates or properties like material, section, or span; retrieve types, weights, or supports for analysis.
Instructions
Locate nodes/elements by coordinates or attributes (按坐标或属性定位节点/单元).
Args:
by: Search mode (查找方式):
"node_at_point" (按坐标找节点, 需 x/y/z, 可选 tolerance),
"elements_at_point" (按坐标找单元, 需 x/y/z, 可选 tolerance),
"elements_by_material" (按材料名找单元, 需 name),
"elements_by_section" (按截面号找单元, 需 index),
"element_type" (查单元类型, 需 ids),
"element_weight" (查单元重量, 需 ids),
"span_supports" (跨径支承信息, 需 span_info_name),
"span_elements" (跨径单元信息, 需 span_info_name)
x, y, z: Coordinates for point search (坐标)
tolerance: Search tolerance (容差)
name: Material name (材料名)
index: Section ID (截面号)
ids: Element IDs (单元编号)
span_info_name: Span info name (跨径信息名)
limit: Max items per page (单页条数上限)
offset: Pagination offset (翻页偏移)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| x | No | ||
| y | No | ||
| z | No | ||
| by | Yes | ||
| ids | No | ||
| name | No | ||
| index | No | ||
| limit | No | ||
| offset | No | ||
| tolerance | No | ||
| span_info_name | No |