Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -140,17 +140,6 @@ class EnergyPlusSimSettings(BuildingSimSettings):
multiple_choice=True,
for_frontend=True
)
correct_space_boundaries = BooleanSetting(
default=True,
description='Apply geometric correction to space boundaries.',
for_frontend=True
)
close_space_boundary_gaps = BooleanSetting(
default=True,
description='Close gaps in the set of space boundaries by adding '
'additional 2b space boundaries.',
for_frontend=True
)
add_natural_ventilation = BooleanSetting(
default=True,
description='Add natural ventilation to the building. Natural '
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -104,4 +104,4 @@ class TEASERSimSettings(BuildingSimSettings):
'prepare_regression_tests.py script.',
for_frontend=False,
mandatory=False
)
)
2 changes: 2 additions & 0 deletions bim2sim/plugins/PluginTEASER/test/regression/test_teaser.py
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,8 @@ def test_run_kitfzkhaus(self):
project.sim_settings.zoning_criteria = (
ZoningCriteria.combined_single_zone)
project.sim_settings.ahu_tz_overwrite = False
project.sim_settings.close_space_boundary_gaps = False
project.sim_settings.correct_space_boundaries = False
answers = ()
handler = DebugDecisionHandler(answers)
for decision, answer in handler.decision_answer_mapping(project.run()):
Expand Down
21 changes: 2 additions & 19 deletions bim2sim/sim_settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -600,23 +600,6 @@ def check_mandatory(self):
for_frontend=True
)

add_space_boundaries = BooleanSetting(
default=False,
description='Add space boundaries. Only required for building '
'performance simulation and co-simulations.',
for_frontend=True
)
correct_space_boundaries = BooleanSetting(
default=False,
description='Apply geometric correction to space boundaries.',
for_frontend=True
)
close_space_boundary_gaps = BooleanSetting(
default=False,
description='Close gaps in the set of space boundaries by adding '
'additional 2b space boundaries.',
for_frontend=True
)
stories_to_load_guids = GuidListSetting(
default=[],
description='List of IFC GUIDs for the specific stories that should '
Expand Down Expand Up @@ -1103,7 +1086,7 @@ def __init__(self):
for_frontend=True
)
correct_space_boundaries = BooleanSetting(
default=False,
default=True,
description='Apply geometric correction to space boundaries.',
for_frontend=True
)
Expand All @@ -1125,7 +1108,7 @@ def __init__(self):
for_frontend=True
)
close_space_boundary_gaps = BooleanSetting(
default=False,
default=True,
description='Close gaps in the set of space boundaries by adding '
'additional 2b space boundaries.',
for_frontend=True
Expand Down