Last active
February 3, 2019 22:42
-
-
Save mvanlonden/b7420c3eba9665a6f9cdafc50976fa45 to your computer and use it in GitHub Desktop.
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
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