get_analysis_results
Retrieve bridge analysis results for deformation, force, stress, or reaction by specifying result type, element IDs, and construction stage. Filter by load case and paginate for efficient querying.
Instructions
Get analysis results from the bridge model (获取分析结果).
Args:
result_type: Type of result to retrieve (结果类型):
'deformation' (变形), 'force' (内力), 'stress' (应力), 'reaction' (反力)
ids: Node/Element IDs to query (查询的节点/单元编号)
stage_id: Construction stage (施工阶段): -1=operation(运营), 0=envelope(包络),
n=stage n (第n阶段)
case_name: Load case name for operation stage (运营阶段荷载工况名).
For stage_id=-1, the tool automatically adds "ST:" prefix if missing.
(运营阶段查询时工具会自动添加 "ST:" 前缀)
limit: Max items per page, default 100 (单页条数上限)
offset: Pagination offset (翻页偏移)
Returns:
Deformation results (变形): List of dicts with keys
{node_id, dx, dy, dz, rx, ry, rz} (lowercase, in meters/radians)
Force results (内力): List of dicts with keys
{element_id, force_i: {Fx, Fy, Fz, Mx, My, Mz}, force_j: {...}}
(nested structure, forces in kN, moments in kN·m)
Stress/Reaction: Similar nested dict structures
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| ids | No | ||
| limit | No | ||
| offset | No | ||
| stage_id | No | ||
| case_name | No | ||
| result_type | Yes |