Editing
Structural Engineering
(section)
Jump to navigation
Jump to search
Warning:
You are not logged in. Your IP address will be publicly visible if you make any edits. If you
log in
or
create an account
, your edits will be attributed to your username, along with other benefits.
Anti-spam check. Do
not
fill this in!
== <span style="color: #FFFFFF;">Applying</span> == '''Modeling 'Beam Deflection' (The limit of a cantilever):''' <syntaxhighlight lang="python"> def calculate_beam_stiffness(length, force, elasticity, inertia): """ Shows how much a beam 'bends' (deflects) at its end. Deflection = (F * L^3) / (3 * E * I) Note: Length is cubed (L^3)! Double the length = 8x the bend! """ deflection = (force * (length ** 3)) / (3 * elasticity * inertia) return deflection # Testing two balconies print(f"2m Balcony bend: {calculate_beam_stiffness(2, 500, 200, 10):.3f} mm") print(f"4m Balcony bend: {calculate_beam_stiffness(4, 500, 200, 10):.3f} mm") # This shows why architects can't have 'infinite' cantilevers # without massive (deep) beams. </syntaxhighlight> ; Structural Systems : '''Suspension Bridge''' β Using massive steel cables in '''Tension''' to support a deck over long distances. : '''Exoskeleton''' β Moving the structural supports to the outside of the building (e.g., The Gherkin in London). : '''Tuned Mass Damper''' β A massive weight (like a pendulum) at the top of a skyscraper that moves in the opposite direction of the wind to stop the building from swaying. : '''Seismic Isolation''' β Building a structure on giant "rubber pads" so the ground can shake without moving the building. </div> <div style="background-color: #8B4500; color: #FFFFFF; padding: 20px; border-radius: 8px; margin-bottom: 15px;">
Summary:
Please note that all contributions to BloomWiki may be edited, altered, or removed by other contributors. If you do not want your writing to be edited mercilessly, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource (see
BloomWiki:Copyrights
for details).
Do not submit copyrighted work without permission!
Cancel
Editing help
(opens in new window)
Navigation menu
Personal tools
Not logged in
Talk
Contributions
Create account
Log in
Namespaces
Page
Discussion
English
Views
Read
Edit
View history
More
Search
Navigation
Main page
Recent changes
Random page
Help about MediaWiki
Tools
What links here
Related changes
Special pages
Page information