ladybug-tools / dragonfly-doe2

:dragon: :tokyo_tower: Dragonfly extension for energy simulation with DOE2
https://www.ladybug.tools/dragonfly-doe2/docs/
GNU Affero General Public License v3.0
3 stars 5 forks source link

Separate adjacent room clusters on same floor #41

Open TfedUD opened 2 years ago

TfedUD commented 2 years ago

Currently, even if everything on the _input side is explicitly correct in terms of adjacencies and intersection: example below image "adjacent clustered rooms on the same floor" will not work correctly into eQuest, partially a 'typical workaround' for eQuest oddness, need to: refer to df-core commit. Need implement something like:

for story in building.stories:
   if len(adj_group) > 1:
      pseudo_stories = [ Story(group) for group in story.adj_groups ]
      # Add an additional  {i} in the name for "pseudo story names" to account for "story_1_group{n}" or whatever to not make eQuest mad
      #thoughts not real code

to utilize existing doe2 story from df story, and minimize rework/refactor

Will be included in next PR