dragonfly-radiance 0.3.229__py2.py3-none-any.whl → 0.3.231__py2.py3-none-any.whl

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.

@@ -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/--plenum', ' /-p', help='Flag to indicate whether '
25
- 'ceiling/floor plenums should be auto-generated for the Rooms.',
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, no_plenum, no_ceil_adjacency,
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
- add_plenum = not no_plenum
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
- add_plenum=add_plenum, solve_ceiling_adjacencies=ceil_adjacency)
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
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: dragonfly-radiance
3
- Version: 0.3.229
3
+ Version: 0.3.231
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.0
17
+ Requires-Dist: dragonfly-core==1.59.1
18
18
  Requires-Dist: honeybee-radiance==1.66.149
19
19
 
20
20
  ![Dragonfly](https://www.ladybug.tools/assets/img/dragonfly.png)
@@ -3,16 +3,16 @@ dragonfly_radiance/__main__.py,sha256=ly6FLNs9Rxq7G_TcItza_9faTXQ48nzZlXgXKd-2n_
3
3
  dragonfly_radiance/_extend_dragonfly.py,sha256=eYxw_KAtcMBFQAlAFXOY_aUrWbeP-lsxAepMxyorquo,1965
4
4
  dragonfly_radiance/gridpar.py,sha256=3u04rncp2Oy-ckpwwvTAZbvriy8J560Vxk0fjCx-bNo,25643
5
5
  dragonfly_radiance/cli/__init__.py,sha256=7Zx_-nOm0gIioPH5XtVyrTfGPwzniTUF3vqcCp4RLn4,423
6
- dragonfly_radiance/cli/translate.py,sha256=w2ljust9uJ5hQDICwGwIYsPA_NhhHG4TbXTjHhIkf2Y,3525
6
+ dragonfly_radiance/cli/translate.py,sha256=xW5oBc30KtVGqtJsJuQoJJmLIJ8ZDAK2m_edDY8og5w,3567
7
7
  dragonfly_radiance/properties/__init__.py,sha256=h-O2WRFI5r12owvSQUrSgdLmlhM7shJAvzLFGryG3rk,37
8
8
  dragonfly_radiance/properties/building.py,sha256=nRjezCr7JLMD6fsmQhYBb2GNUtrgtKV2Tli8l9tJ1Fg,6283
9
9
  dragonfly_radiance/properties/context.py,sha256=WshH9BOhqbwvxmILRugTMfbvTMl8u5QzIETbJiORTUk,5250
10
10
  dragonfly_radiance/properties/model.py,sha256=mO4RB8l7fAtBi2JMOgDYmr1FZQsEfJ37DakmHA_XBWo,12529
11
11
  dragonfly_radiance/properties/room2d.py,sha256=I_JcNqOjhwov-U0wiFc9JeMmTX1Wukc-jPmU0khpEI4,9125
12
12
  dragonfly_radiance/properties/story.py,sha256=htHHyAh8tNdQCGJGMvbI9Xo3RAdHdC8JPE1fnEPY-44,4519
13
- dragonfly_radiance-0.3.229.dist-info/LICENSE,sha256=hIahDEOTzuHCU5J2nd07LWwkLW7Hko4UFO__ffsvB-8,34523
14
- dragonfly_radiance-0.3.229.dist-info/METADATA,sha256=Irf4cd8I17RD2nNQG56oP0LqmuNdh56oqI3PJd1MQ4o,2328
15
- dragonfly_radiance-0.3.229.dist-info/WHEEL,sha256=AHX6tWk3qWuce7vKLrj7lnulVHEdWoltgauo8bgCXgU,109
16
- dragonfly_radiance-0.3.229.dist-info/entry_points.txt,sha256=7KZdeDvrwJ-ZB0LiTJ3TBkYJAmLl6_uSXXhZnLGct4g,71
17
- dragonfly_radiance-0.3.229.dist-info/top_level.txt,sha256=uvkDZDtPEVgdj7rWsDAl4vcUIuWT7GFBBVmFK4pNE4s,19
18
- dragonfly_radiance-0.3.229.dist-info/RECORD,,
13
+ dragonfly_radiance-0.3.231.dist-info/LICENSE,sha256=hIahDEOTzuHCU5J2nd07LWwkLW7Hko4UFO__ffsvB-8,34523
14
+ dragonfly_radiance-0.3.231.dist-info/METADATA,sha256=GRKQHEEKuCqpJQrSToVqFwUXklO5PChEXCp9vHDv2hY,2328
15
+ dragonfly_radiance-0.3.231.dist-info/WHEEL,sha256=AHX6tWk3qWuce7vKLrj7lnulVHEdWoltgauo8bgCXgU,109
16
+ dragonfly_radiance-0.3.231.dist-info/entry_points.txt,sha256=7KZdeDvrwJ-ZB0LiTJ3TBkYJAmLl6_uSXXhZnLGct4g,71
17
+ dragonfly_radiance-0.3.231.dist-info/top_level.txt,sha256=uvkDZDtPEVgdj7rWsDAl4vcUIuWT7GFBBVmFK4pNE4s,19
18
+ dragonfly_radiance-0.3.231.dist-info/RECORD,,