dragonfly-schema 1.11.3__tar.gz → 1.11.4__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (28) hide show
  1. {dragonfly-schema-1.11.3 → dragonfly-schema-1.11.4}/PKG-INFO +1 -1
  2. {dragonfly-schema-1.11.3 → dragonfly-schema-1.11.4}/dragonfly_schema/window_parameter.py +22 -0
  3. {dragonfly-schema-1.11.3 → dragonfly-schema-1.11.4}/dragonfly_schema.egg-info/PKG-INFO +1 -1
  4. {dragonfly-schema-1.11.3 → dragonfly-schema-1.11.4}/.coveragerc +0 -0
  5. {dragonfly-schema-1.11.3 → dragonfly-schema-1.11.4}/CODE_OF_CONDUCT.md +0 -0
  6. {dragonfly-schema-1.11.3 → dragonfly-schema-1.11.4}/CONTRIBUTING.md +0 -0
  7. {dragonfly-schema-1.11.3 → dragonfly-schema-1.11.4}/LICENSE +0 -0
  8. {dragonfly-schema-1.11.3 → dragonfly-schema-1.11.4}/MANIFEST.in +0 -0
  9. {dragonfly-schema-1.11.3 → dragonfly-schema-1.11.4}/README.md +0 -0
  10. {dragonfly-schema-1.11.3 → dragonfly-schema-1.11.4}/dev-requirements.txt +0 -0
  11. {dragonfly-schema-1.11.3 → dragonfly-schema-1.11.4}/docs.py +0 -0
  12. {dragonfly-schema-1.11.3 → dragonfly-schema-1.11.4}/dragonfly_schema/__init__.py +0 -0
  13. {dragonfly-schema-1.11.3 → dragonfly-schema-1.11.4}/dragonfly_schema/energy/__init__.py +0 -0
  14. {dragonfly-schema-1.11.3 → dragonfly-schema-1.11.4}/dragonfly_schema/energy/properties.py +0 -0
  15. {dragonfly-schema-1.11.3 → dragonfly-schema-1.11.4}/dragonfly_schema/model.py +0 -0
  16. {dragonfly-schema-1.11.3 → dragonfly-schema-1.11.4}/dragonfly_schema/radiance/__init__.py +0 -0
  17. {dragonfly-schema-1.11.3 → dragonfly-schema-1.11.4}/dragonfly_schema/radiance/gridpar.py +0 -0
  18. {dragonfly-schema-1.11.3 → dragonfly-schema-1.11.4}/dragonfly_schema/radiance/properties.py +0 -0
  19. {dragonfly-schema-1.11.3 → dragonfly-schema-1.11.4}/dragonfly_schema/roof.py +0 -0
  20. {dragonfly-schema-1.11.3 → dragonfly-schema-1.11.4}/dragonfly_schema/shading_parameter.py +0 -0
  21. {dragonfly-schema-1.11.3 → dragonfly-schema-1.11.4}/dragonfly_schema/skylight_parameter.py +0 -0
  22. {dragonfly-schema-1.11.3 → dragonfly-schema-1.11.4}/dragonfly_schema.egg-info/SOURCES.txt +0 -0
  23. {dragonfly-schema-1.11.3 → dragonfly-schema-1.11.4}/dragonfly_schema.egg-info/dependency_links.txt +0 -0
  24. {dragonfly-schema-1.11.3 → dragonfly-schema-1.11.4}/dragonfly_schema.egg-info/requires.txt +0 -0
  25. {dragonfly-schema-1.11.3 → dragonfly-schema-1.11.4}/dragonfly_schema.egg-info/top_level.txt +0 -0
  26. {dragonfly-schema-1.11.3 → dragonfly-schema-1.11.4}/requirements.txt +0 -0
  27. {dragonfly-schema-1.11.3 → dragonfly-schema-1.11.4}/setup.cfg +0 -0
  28. {dragonfly-schema-1.11.3 → dragonfly-schema-1.11.4}/setup.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: dragonfly-schema
3
- Version: 1.11.3
3
+ Version: 1.11.4
4
4
  Summary: Dragonfly Data-Model Objects
5
5
  Home-page: https://github.com/ladybug-tools/dragonfly-schema
6
6
  Author: Ladybug Tools
@@ -61,6 +61,17 @@ class SimpleWindowArea(_WindowParameterBase):
61
61
  'to, the window will fill the parent Wall at a 99 percent ratio.'
62
62
  )
63
63
 
64
+ rect_split: bool = Field(
65
+ True,
66
+ description='Boolean to note whether rectangular portions of base Face '
67
+ 'should be extracted before scaling them to create apertures. For '
68
+ 'pentagonal gabled geometries, this results in one rectangle and one '
69
+ 'triangle, which can often look more realistic and is a better input '
70
+ 'for engines like EnergyPlus that cannot model windows with more than 4 '
71
+ 'vertices. However, if a single pentagonal window is desired for such a '
72
+ 'gabled shape, this input can be set to False to produce such a result.'
73
+ )
74
+
64
75
 
65
76
  class SimpleWindowRatio(_WindowParameterBase):
66
77
  """A single window defined by an area ratio with the base surface."""
@@ -75,6 +86,17 @@ class SimpleWindowRatio(_WindowParameterBase):
75
86
  'area and the parent wall surface area.'
76
87
  )
77
88
 
89
+ rect_split: bool = Field(
90
+ True,
91
+ description='Boolean to note whether rectangular portions of base Face '
92
+ 'should be extracted before scaling them to create apertures. For '
93
+ 'pentagonal gabled geometries, this results in one rectangle and one '
94
+ 'triangle, which can often look more realistic and is a better input '
95
+ 'for engines like EnergyPlus that cannot model windows with more than 4 '
96
+ 'vertices. However, if a single pentagonal window is desired for such a '
97
+ 'gabled shape, this input can be set to False to produce such a result.'
98
+ )
99
+
78
100
 
79
101
  class RepeatingWindowRatio(_WindowParameterBase):
80
102
  """Repeating windows derived from an area ratio with the base wall."""
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: dragonfly-schema
3
- Version: 1.11.3
3
+ Version: 1.11.4
4
4
  Summary: Dragonfly Data-Model Objects
5
5
  Home-page: https://github.com/ladybug-tools/dragonfly-schema
6
6
  Author: Ladybug Tools