From 8edd0d1783e931b849a4dfdf106ccad43cda38b3 Mon Sep 17 00:00:00 2001 From: Chris Mackey Date: Thu, 21 Apr 2022 14:39:34 -0400 Subject: [PATCH] fix(deps): Trigger new release with updated deps --- README.md | 6 +++--- pollination/lbt_honeybee/edit.py | 9 +++++++++ 2 files changed, 12 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 22efb6d..609ea89 100644 --- a/README.md +++ b/README.md @@ -11,9 +11,9 @@ the Python libraries. ## Sources -- `lbt-honeybee` Python package. [PyPI](https://pypi.org/project/lbt-honeybee/), [source](https://github.com/ladybug-tools/lbt-honeybee) +* `lbt-honeybee` Python package. [PyPI](https://pypi.org/project/lbt-honeybee/), [source](https://github.com/ladybug-tools/lbt-honeybee) This package includes the following extensions for honeybee: -- `honeybee-radiance` Python package. [PyPI](https://pypi.org/project/honeybee-radiance/), [source](https://github.com/ladybug-tools/honeybee-radiance) -- `honeybee-energy` Python package. [PyPI](https://pypi.org/project/honeybee-energy/), [source](https://github.com/ladybug-tools/honeybee-energy) +* `honeybee-radiance` Python package. [PyPI](https://pypi.org/project/honeybee-radiance/), [source](https://github.com/ladybug-tools/honeybee-radiance) +* `honeybee-energy` Python package. [PyPI](https://pypi.org/project/honeybee-energy/), [source](https://github.com/ladybug-tools/honeybee-energy) diff --git a/pollination/lbt_honeybee/edit.py b/pollination/lbt_honeybee/edit.py index 86b982d..cac711c 100644 --- a/pollination/lbt_honeybee/edit.py +++ b/pollination/lbt_honeybee/edit.py @@ -26,6 +26,14 @@ class ModelModifiersFromConstructions(Function): spec={'type': 'string', 'enum': ['dynamic', 'static']} ) + dynamic_shade = Inputs.str( + description='A switch to note whether dynamic shade transmittance schedules ' + 'should be translated to dynamic shade groups or just a static, fully-opaque ' + 'construction should be used.', + default='dynamic', + spec={'type': 'string', 'enum': ['dynamic', 'static']} + ) + exterior_offset = Inputs.float( description='A number for the distance at which the exterior Room faces should ' 'be offset in meters. This is used to account for the fact that the exterior ' @@ -38,6 +46,7 @@ class ModelModifiersFromConstructions(Function): def model_modifiers_from_constructions(self): return 'honeybee-energy edit modifiers-from-constructions model.hbjson ' \ '--{{self.use_visible}} --{{self.dynamic_behavior}}-groups ' \ + '--{{self.dynamic_shade}}-groups ' \ '--exterior-offset {{self.exterior_offset}} --output-file new_model.hbjson' new_model = Outputs.file(