Last active
February 3, 2019 22:04
-
-
Save mvanlonden/d901fd5401c3d9a2bbc93a7cbf088e69 to your computer and use it in GitHub Desktop.
Structural system cost
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
floor_columns = (width / floor_column_grid_spacing) * \ | |
(length / floor_column_grid_spacing) | |
columns = floor_columns * stories + \ | |
(width / roof_column_grid_spacing) * (length / roof_column_grid_spacing) | |
columns_length = columns * ceiling_height | |
beams = length / joist_spacing * (stories + 1) | |
beams_length = beams * width | |
structural_framing_cost = (decking_cost * decking_area + column_cost * columns_length + | |
beam_cost * beams_length) * (1 + labor_factor) * (1 + supplier_margin) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment