Currently, even if everything on the _input side is explicitly correct in terms of adjacencies and intersection:
example below
"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
Currently, even if everything on the _input side is explicitly correct in terms of adjacencies and intersection: example below "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:
to utilize existing doe2 story from df story, and minimize rework/refactor
Will be included in next PR