create_nodes
Add bridge model nodes from coordinate lists, with options to merge duplicate points and split elements at intersections for accurate structural modeling.
Instructions
Create nodes in the bridge model from an explicit coordinate list (创建节点).
Prefer `create_nodes_linear` when nodes are evenly spaced along a line
— it is far more concise for typical bridge models.
Args:
node_data: List of node coordinates. Format: [[x,y,z], ...] or [[id,x,y,z], ...]
节点坐标列表,格式: [[x,y,z],...] 或 [[id,x,y,z],...]
intersected: Whether to split elements at intersection points (是否交叉分割, 默认关)
is_merged: Whether to merge duplicate nodes at the same position (是否合并重合节点)
merge_error: Merge tolerance in model units, default 1e-3 (合并容差,默认1mm)
numbering_type: Node numbering strategy: 1=sequential (编号方式: 1=顺序编号)
start_id: Starting node ID when auto-numbering (起始节点编号)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| start_id | No | ||
| is_merged | No | ||
| node_data | Yes | ||
| intersected | No | ||
| merge_error | No | ||
| numbering_type | No |