dragonfly-radiance 0.3.230__tar.gz → 0.3.232__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.
Potentially problematic release.
This version of dragonfly-radiance might be problematic. Click here for more details.
- {dragonfly_radiance-0.3.230 → dragonfly_radiance-0.3.232}/PKG-INFO +2 -2
- {dragonfly_radiance-0.3.230 → dragonfly_radiance-0.3.232}/dragonfly_radiance/cli/translate.py +6 -6
- {dragonfly_radiance-0.3.230 → dragonfly_radiance-0.3.232}/dragonfly_radiance.egg-info/PKG-INFO +2 -2
- {dragonfly_radiance-0.3.230 → dragonfly_radiance-0.3.232}/dragonfly_radiance.egg-info/requires.txt +1 -1
- {dragonfly_radiance-0.3.230 → dragonfly_radiance-0.3.232}/requirements.txt +1 -1
- {dragonfly_radiance-0.3.230 → dragonfly_radiance-0.3.232}/CODE_OF_CONDUCT.md +0 -0
- {dragonfly_radiance-0.3.230 → dragonfly_radiance-0.3.232}/CONTRIBUTING.md +0 -0
- {dragonfly_radiance-0.3.230 → dragonfly_radiance-0.3.232}/LICENSE +0 -0
- {dragonfly_radiance-0.3.230 → dragonfly_radiance-0.3.232}/MANIFEST.in +0 -0
- {dragonfly_radiance-0.3.230 → dragonfly_radiance-0.3.232}/README.md +0 -0
- {dragonfly_radiance-0.3.230 → dragonfly_radiance-0.3.232}/dev-requirements.txt +0 -0
- {dragonfly_radiance-0.3.230 → dragonfly_radiance-0.3.232}/dragonfly_radiance/__init__.py +0 -0
- {dragonfly_radiance-0.3.230 → dragonfly_radiance-0.3.232}/dragonfly_radiance/__main__.py +0 -0
- {dragonfly_radiance-0.3.230 → dragonfly_radiance-0.3.232}/dragonfly_radiance/_extend_dragonfly.py +0 -0
- {dragonfly_radiance-0.3.230 → dragonfly_radiance-0.3.232}/dragonfly_radiance/cli/__init__.py +0 -0
- {dragonfly_radiance-0.3.230 → dragonfly_radiance-0.3.232}/dragonfly_radiance/gridpar.py +0 -0
- {dragonfly_radiance-0.3.230 → dragonfly_radiance-0.3.232}/dragonfly_radiance/properties/__init__.py +0 -0
- {dragonfly_radiance-0.3.230 → dragonfly_radiance-0.3.232}/dragonfly_radiance/properties/building.py +0 -0
- {dragonfly_radiance-0.3.230 → dragonfly_radiance-0.3.232}/dragonfly_radiance/properties/context.py +0 -0
- {dragonfly_radiance-0.3.230 → dragonfly_radiance-0.3.232}/dragonfly_radiance/properties/model.py +0 -0
- {dragonfly_radiance-0.3.230 → dragonfly_radiance-0.3.232}/dragonfly_radiance/properties/room2d.py +0 -0
- {dragonfly_radiance-0.3.230 → dragonfly_radiance-0.3.232}/dragonfly_radiance/properties/story.py +0 -0
- {dragonfly_radiance-0.3.230 → dragonfly_radiance-0.3.232}/dragonfly_radiance.egg-info/SOURCES.txt +0 -0
- {dragonfly_radiance-0.3.230 → dragonfly_radiance-0.3.232}/dragonfly_radiance.egg-info/dependency_links.txt +0 -0
- {dragonfly_radiance-0.3.230 → dragonfly_radiance-0.3.232}/dragonfly_radiance.egg-info/entry_points.txt +0 -0
- {dragonfly_radiance-0.3.230 → dragonfly_radiance-0.3.232}/dragonfly_radiance.egg-info/top_level.txt +0 -0
- {dragonfly_radiance-0.3.230 → dragonfly_radiance-0.3.232}/setup.cfg +0 -0
- {dragonfly_radiance-0.3.230 → dragonfly_radiance-0.3.232}/setup.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: dragonfly-radiance
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.232
|
|
4
4
|
Summary: Dragonfly extension for radiance simulation.
|
|
5
5
|
Home-page: https://github.com/ladybug-tools/dragonfly-radiance
|
|
6
6
|
Author: Ladybug Tools
|
|
@@ -14,7 +14,7 @@ Classifier: License :: OSI Approved :: GNU Affero General Public License v3
|
|
|
14
14
|
Classifier: Operating System :: OS Independent
|
|
15
15
|
Description-Content-Type: text/markdown
|
|
16
16
|
License-File: LICENSE
|
|
17
|
-
Requires-Dist: dragonfly-core==1.59.
|
|
17
|
+
Requires-Dist: dragonfly-core==1.59.2
|
|
18
18
|
Requires-Dist: honeybee-radiance==1.66.149
|
|
19
19
|
|
|
20
20
|

|
{dragonfly_radiance-0.3.230 → dragonfly_radiance-0.3.232}/dragonfly_radiance/cli/translate.py
RENAMED
|
@@ -21,9 +21,9 @@ def translate():
|
|
|
21
21
|
'multipliers on each Building story will be passed along to the '
|
|
22
22
|
'generated Honeybee Room objects or if full geometry objects should be '
|
|
23
23
|
'written for each story in the building.', default=True, show_default=True)
|
|
24
|
-
@click.option('--no-plenum
|
|
25
|
-
'ceiling/floor
|
|
26
|
-
default=True, show_default=True)
|
|
24
|
+
@click.option('--plenum/--no-plenum', '-p/-np', help='Flag to indicate whether '
|
|
25
|
+
'ceiling/floor plenum depths assigned to Room2Ds should generate '
|
|
26
|
+
'distinct 3D Rooms in the translation.', default=True, show_default=True)
|
|
27
27
|
@click.option('--no-ceil-adjacency/--ceil-adjacency', ' /-a', help='Flag to indicate '
|
|
28
28
|
'whether adjacencies should be solved between interior stories when '
|
|
29
29
|
'Room2Ds perfectly match one another in their floor plate. This ensures '
|
|
@@ -40,7 +40,7 @@ def translate():
|
|
|
40
40
|
@click.option('--output-file', '-f', help='Optional Rad file to output the Rad string '
|
|
41
41
|
'of the translation. By default this will be printed out to stdout',
|
|
42
42
|
type=click.File('w'), default='-', show_default=True)
|
|
43
|
-
def model_to_rad(model_file, multiplier,
|
|
43
|
+
def model_to_rad(model_file, multiplier, plenum, no_ceil_adjacency,
|
|
44
44
|
blk, minimal, output_file):
|
|
45
45
|
"""Translate a Dragonfly Model file to a Radiance string.
|
|
46
46
|
|
|
@@ -55,11 +55,11 @@ def model_to_rad(model_file, multiplier, no_plenum, no_ceil_adjacency,
|
|
|
55
55
|
model = Model.from_file(model_file)
|
|
56
56
|
|
|
57
57
|
# convert Dragonfly Model to Honeybee
|
|
58
|
-
|
|
58
|
+
no_plenum = not plenum
|
|
59
59
|
ceil_adjacency = not no_ceil_adjacency
|
|
60
60
|
hb_models = model.to_honeybee(
|
|
61
61
|
object_per_model='District', use_multiplier=multiplier,
|
|
62
|
-
|
|
62
|
+
exclude_plenums=no_plenum, solve_ceiling_adjacencies=ceil_adjacency)
|
|
63
63
|
hb_model = hb_models[0]
|
|
64
64
|
|
|
65
65
|
# create the strings for modifiers and geometry
|
{dragonfly_radiance-0.3.230 → dragonfly_radiance-0.3.232}/dragonfly_radiance.egg-info/PKG-INFO
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: dragonfly-radiance
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.232
|
|
4
4
|
Summary: Dragonfly extension for radiance simulation.
|
|
5
5
|
Home-page: https://github.com/ladybug-tools/dragonfly-radiance
|
|
6
6
|
Author: Ladybug Tools
|
|
@@ -14,7 +14,7 @@ Classifier: License :: OSI Approved :: GNU Affero General Public License v3
|
|
|
14
14
|
Classifier: Operating System :: OS Independent
|
|
15
15
|
Description-Content-Type: text/markdown
|
|
16
16
|
License-File: LICENSE
|
|
17
|
-
Requires-Dist: dragonfly-core==1.59.
|
|
17
|
+
Requires-Dist: dragonfly-core==1.59.2
|
|
18
18
|
Requires-Dist: honeybee-radiance==1.66.149
|
|
19
19
|
|
|
20
20
|

|
{dragonfly_radiance-0.3.230 → dragonfly_radiance-0.3.232}/dragonfly_radiance.egg-info/requires.txt
RENAMED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
dragonfly-core==1.59.
|
|
1
|
+
dragonfly-core==1.59.2
|
|
2
2
|
honeybee-radiance==1.66.149
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
dragonfly-core==1.59.
|
|
1
|
+
dragonfly-core==1.59.2
|
|
2
2
|
honeybee-radiance==1.66.149
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{dragonfly_radiance-0.3.230 → dragonfly_radiance-0.3.232}/dragonfly_radiance/_extend_dragonfly.py
RENAMED
|
File without changes
|
{dragonfly_radiance-0.3.230 → dragonfly_radiance-0.3.232}/dragonfly_radiance/cli/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
{dragonfly_radiance-0.3.230 → dragonfly_radiance-0.3.232}/dragonfly_radiance/properties/__init__.py
RENAMED
|
File without changes
|
{dragonfly_radiance-0.3.230 → dragonfly_radiance-0.3.232}/dragonfly_radiance/properties/building.py
RENAMED
|
File without changes
|
{dragonfly_radiance-0.3.230 → dragonfly_radiance-0.3.232}/dragonfly_radiance/properties/context.py
RENAMED
|
File without changes
|
{dragonfly_radiance-0.3.230 → dragonfly_radiance-0.3.232}/dragonfly_radiance/properties/model.py
RENAMED
|
File without changes
|
{dragonfly_radiance-0.3.230 → dragonfly_radiance-0.3.232}/dragonfly_radiance/properties/room2d.py
RENAMED
|
File without changes
|
{dragonfly_radiance-0.3.230 → dragonfly_radiance-0.3.232}/dragonfly_radiance/properties/story.py
RENAMED
|
File without changes
|
{dragonfly_radiance-0.3.230 → dragonfly_radiance-0.3.232}/dragonfly_radiance.egg-info/SOURCES.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{dragonfly_radiance-0.3.230 → dragonfly_radiance-0.3.232}/dragonfly_radiance.egg-info/top_level.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|