Structural 分析
- 作者仓库星标 0
- 作者仓库 AGI_engineering_forge
Structural Analysis Tool
Run structural engineering calculations with real physics.
Built-in Helper Functions
beam_deflection_simply_supported(F, L, E, I, x)— Point load deflectionbeam_max_stress(M, c, I)— Maximum bending stress σ = Mc/Isafety_factor(strength, stress)— Factor of safetyeuler_buckling(E, I, L, K)— Critical buckling loadmoment_of_inertia_rect(b, h)— I = bh³/12moment_of_inertia_circle(d)— I = πd⁴/64
Usage
python3 /workspace/bridge.py structural_analysis '
F = 5000 # 5kN load
L = 1.5 # 1.5m span
E = 200e9 # Steel
b, h = 0.04, 0.08 # 40x80mm beam
I = moment_of_inertia_rect(b, h)
delta = beam_deflection_simply_supported(F, L, E, I)
sigma = beam_max_stress(F*L/4, h/2, I)
sf = safety_factor(250e6, sigma)
print(f"Deflection: {delta*1000:.3f} mm")
print(f"Max stress: {sigma/1e6:.1f} MPa")
print(f"Safety factor: {sf:.2f}")
'
Always use SI units: meters, Newtons, Pascals. Always compute and report safety factors.
- 流狐分类
- 通用
- 作者声明 Agent
- 未找到明确声明;不据此推断已兼容或已测试
- 静态检查
- 88 / 100 · 启发式扫描,不代表运行安全
- 作者 / 版本 / 许可
- @00000star · 未声明 license
- 流狐 Token 估算
- 低消耗
- 流狐接入估算
- 即装即用
- 是否需要外部 API Key
- 未发现要求
- 检测到的系统要求
- 未声明
- 底层运行要求
- 未声明
- 检测到的文件与系统行为
-
- 只读
- 检测到的网络行为
- 仅限本地
- 安装命令数
- 无(仅作为资料)
档案由构建时根据 SKILL.md 与安装命令自动衍生,可能与作者实际意图存在差异。
需要注意: 未限定 allowed-tools,默认拥有全部工具权限。
作者没有在当前 SKILL.md 中定义固定输出样例。 Built-in Helper Functions
beamdeflectionsimplysupported(F, L, E, I, x) — Point load deflection beammaxstress(M, c, I) — Maximum bending stress σ = Mc/I safetyfactor(strength, stress) — Factor of safety
Usage
Always use SI units: meters, Newtons, Pascals. Always compute and report safety factors.
# Structural Analysis Tool
Run structural engineering calculations with real physics.
## Built-in Helper Functions
- `beam_deflection_simply_supported(F, L, E, I, x)` — Point load deflection
- `beam_max_stress(M, c, I)` — Maximum bending stress σ = Mc/I
- `safety_factor(strength, stress)` — Factor of safety
- `euler_buckling(E, I, L, K)` — Critical buckling load
- `moment_of_inertia_rect(b, h)` — I = bh³/12
- `moment_of_inertia_circle(d)` — I = πd⁴/64
## Usage
```bash
python3 /workspace/bridge.py structural_analysis '
F = 5000 # 5kN load
L = 1.5 # 1.5m span
E = 200e9 # Steel
b, h = 0.04, 0.08 # 40x80mm beam
I = moment_of_inertia_rect(b, h)
delta = beam_deflection_simply_supported(F, L, E, I)
sigma = beam_max_stress(F*L/4, h/2, I)
sf = safety_factor(250e6, sigma)
print(f"Deflection: {delta*1000:.3f} mm")
print(f"Max stress: {sigma/1e6:.1f} MPa")
print(f"Safety factor: {sf:.2f}")
'
```
Always use SI units: meters, Newtons, Pascals. Always compute and report safety factors. 证据边界与执行链路
作者原文负责流程事实;流狐只索引当前章节、要点、文件与命令。
章节 -> Built-in Helper Functions → Usage
要点 -> Run structural engineering calculations with real physics. · Always use SI units: meters, Newtons, Pascals.
文件/命令 -> beamdeflectionsimplysupported(F, L, E, I, x) · beammaxstress(M, c, I) · safetyfactor(strength, stress) · eulerbuckling(E, I, L, K) · momentofinertiarect(b, h) · momentofinertiacircle(d)
内容 SHA-256 -> 870e499be4da
原文结构
适用与边界
原文中的明确线索
beamdeflectionsimplysupported(F, L, E, I, x)、beammaxstress(M, c, I)、safetyfactor(strength, stress)、eulerbuckling(E, I, L, K)、momentofinertiarect(b, h)、momentofinertiacircle(d)