π Timecodes
0:00 β Introduction
0:36 β Bridge Collapse Video
1:04 β What Went Wrong During Bridge Design?
1:42 β What Is Post-Tensioning?
2:34 β FIGG Engineering and Its Design
2:47 β A Critical Part of the FIU Bridge
3:01 β How to Design the Bridge Components (Rebars)?
3:46 β Common-Sense Design of the FIU Bridge
4:23 β Python Code β Shear Interface Resistance
4:50 β FIGG Design of FIU Bridge
5:20 β Cracks
6:20 β David Interviews Danny Pate in Borneo
8:15 β How to Improve the Bridge Design
9:25 β Simulation β FIU Bridge Collapse
9:37 β Simulation β FIU Bridge Collapse (Slowed Down)
π References
NTSB Report: PB2019-101363 / HAR-19/02
Pedestrian Bridge Collapse Over SW 8th Street, Miami, Florida
Wikipedia Article
SheerForce Engineering Blog
ScienceDirect β Failure Assessment Studies
Virtual Scenario Reproduction of FIU Collapse
Post-Tensioned RC Truss Bridge Collapse Study
π΅ Las Ketchup β The Ketchup Song (Asereje)
https://youtu.be/AMT698ArSfQ
c = 0.0 # ksi β cohesion factor
A_cv = 882 # inΒ² β concrete area
mu = 1.0 # friction coefficient
A_vf = 17 # inΒ² β shear reinforcement area
f_y = 60 # ksi β yield strength
P_c = 1233 # kips β compressive force
V_ni = c * A_cv + mu * (A_vf * f_y + P_c)
phi = 0.9
V_ri = phi * V_ni
print("Interface Shear Capacity =", V_ri, "kips")
#FIU #BridgeCollapse #Engineering #Simulation #ForensicAnalysis