Skip to content

Instantly share code, notes, and snippets.

@mvanlonden
Last active February 3, 2019 22:42
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/b7420c3eba9665a6f9cdafc50976fa45 to your computer and use it in GitHub Desktop.
Save mvanlonden/b7420c3eba9665a6f9cdafc50976fa45 to your computer and use it in GitHub Desktop.
labor_factor = .13
window_cost = 1600
sliding_door_cost = 10000
window_spacing = 15 # ft per window
windows = perimeter / window_spacing * stories
sliding_doors_per_story = 2
sliding_doors = stories * sliding_doors_per_story
glazing_cost = (windows * window_cost + sliding_doors *
sliding_door_cost) * (1 + labor_factor)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment