structural-analysis
- Repo stars 0
- Author repo 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.
- Fluxly category
- Other
- Author-declared agents
- No explicit declaration found; this is not inferred or tested compatibility
- Static check
- 88 / 100 · heuristic scan, not runtime safety proof
- Author / version / license
- @00000star · no license declared
- Fluxly token estimate
- Lean
- Fluxly setup estimate
- Plug-and-play
- External API key
- No requirement detected
- Detected OS requirements
- Unspecified
- Runtime requirements
- Unspecified
- Detected file/system behavior
-
- Read-only
- Detected network behavior
- Local-only
- Install commands
- None (reference only)
Profile is derived at build time from SKILL.md and install vectors. Subject to drift from author intent.
Heads up: 未限定 allowed-tools,默认拥有全部工具权限。
The current SKILL.md does not define a fixed output example. 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. Evidence boundary and execution chain
Author text anchors workflow facts; Fluxly only indexes current sections, terms, files, and commands.
sections -> Built-in Helper Functions → Usage
terms -> Run structural engineering calculations with real physics. · Always use SI units: meters, Newtons, Pascals.
files/cmd -> beamdeflectionsimplysupported(F, L, E, I, x) · beammaxstress(M, c, I) · safetyfactor(strength, stress) · eulerbuckling(E, I, L, K) · momentofinertiarect(b, h) · momentofinertiacircle(d)
body sha256 -> 870e499be4da
Decide Fit First
Design Intent
How To Use It
Boundaries And Review