Skip to content

Instantly share code, notes, and snippets.

@mvanlonden
Last active February 3, 2019 22:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mvanlonden/d901fd5401c3d9a2bbc93a7cbf088e69 to your computer and use it in GitHub Desktop.
Save mvanlonden/d901fd5401c3d9a2bbc93a7cbf088e69 to your computer and use it in GitHub Desktop.
Structural system cost
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