Skip to content

Commit

Permalink
fix(deps): Trigger new release with updated deps
Browse files Browse the repository at this point in the history
  • Loading branch information
chriswmackey authored and Chris Mackey committed Apr 21, 2022
1 parent a30c289 commit 8edd0d1
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
9 changes: 9 additions & 0 deletions pollination/lbt_honeybee/edit.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 '
Expand All @@ -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(
Expand Down

0 comments on commit 8edd0d1

Please sign in to comment.