honeybee-radiance 1.66.190__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 honeybee-radiance might be problematic. Click here for more details.
- honeybee_radiance/__init__.py +11 -0
- honeybee_radiance/__main__.py +4 -0
- honeybee_radiance/_extend_honeybee.py +93 -0
- honeybee_radiance/cli/__init__.py +88 -0
- honeybee_radiance/cli/dc.py +400 -0
- honeybee_radiance/cli/edit.py +529 -0
- honeybee_radiance/cli/glare.py +118 -0
- honeybee_radiance/cli/grid.py +859 -0
- honeybee_radiance/cli/lib.py +458 -0
- honeybee_radiance/cli/modifier.py +133 -0
- honeybee_radiance/cli/mtx.py +226 -0
- honeybee_radiance/cli/multiphase.py +1034 -0
- honeybee_radiance/cli/octree.py +640 -0
- honeybee_radiance/cli/postprocess.py +1186 -0
- honeybee_radiance/cli/raytrace.py +219 -0
- honeybee_radiance/cli/rpict.py +125 -0
- honeybee_radiance/cli/schedule.py +56 -0
- honeybee_radiance/cli/setconfig.py +63 -0
- honeybee_radiance/cli/sky.py +545 -0
- honeybee_radiance/cli/study.py +66 -0
- honeybee_radiance/cli/sunpath.py +331 -0
- honeybee_radiance/cli/threephase.py +255 -0
- honeybee_radiance/cli/translate.py +400 -0
- honeybee_radiance/cli/util.py +121 -0
- honeybee_radiance/cli/view.py +261 -0
- honeybee_radiance/cli/viewfactor.py +347 -0
- honeybee_radiance/config.json +6 -0
- honeybee_radiance/config.py +427 -0
- honeybee_radiance/dictutil.py +50 -0
- honeybee_radiance/dynamic/__init__.py +5 -0
- honeybee_radiance/dynamic/group.py +479 -0
- honeybee_radiance/dynamic/multiphase.py +557 -0
- honeybee_radiance/dynamic/state.py +718 -0
- honeybee_radiance/dynamic/stategeo.py +352 -0
- honeybee_radiance/geometry/__init__.py +13 -0
- honeybee_radiance/geometry/bubble.py +42 -0
- honeybee_radiance/geometry/cone.py +215 -0
- honeybee_radiance/geometry/cup.py +54 -0
- honeybee_radiance/geometry/cylinder.py +197 -0
- honeybee_radiance/geometry/geometrybase.py +37 -0
- honeybee_radiance/geometry/instance.py +40 -0
- honeybee_radiance/geometry/mesh.py +38 -0
- honeybee_radiance/geometry/polygon.py +174 -0
- honeybee_radiance/geometry/ring.py +214 -0
- honeybee_radiance/geometry/source.py +182 -0
- honeybee_radiance/geometry/sphere.py +178 -0
- honeybee_radiance/geometry/tube.py +46 -0
- honeybee_radiance/lib/__init__.py +1 -0
- honeybee_radiance/lib/_loadmodifiers.py +72 -0
- honeybee_radiance/lib/_loadmodifiersets.py +69 -0
- honeybee_radiance/lib/modifiers.py +58 -0
- honeybee_radiance/lib/modifiersets.py +63 -0
- honeybee_radiance/lightpath.py +204 -0
- honeybee_radiance/lightsource/__init__.py +1 -0
- honeybee_radiance/lightsource/_gendaylit.py +479 -0
- honeybee_radiance/lightsource/dictutil.py +49 -0
- honeybee_radiance/lightsource/ground.py +160 -0
- honeybee_radiance/lightsource/sky/__init__.py +7 -0
- honeybee_radiance/lightsource/sky/_skybase.py +177 -0
- honeybee_radiance/lightsource/sky/certainirradiance.py +232 -0
- honeybee_radiance/lightsource/sky/cie.py +378 -0
- honeybee_radiance/lightsource/sky/climatebased.py +501 -0
- honeybee_radiance/lightsource/sky/hemisphere.py +160 -0
- honeybee_radiance/lightsource/sky/skydome.py +113 -0
- honeybee_radiance/lightsource/sky/skymatrix.py +163 -0
- honeybee_radiance/lightsource/sky/strutil.py +34 -0
- honeybee_radiance/lightsource/sky/sunmatrix.py +212 -0
- honeybee_radiance/lightsource/sunpath.py +247 -0
- honeybee_radiance/modifier/__init__.py +3 -0
- honeybee_radiance/modifier/material/__init__.py +30 -0
- honeybee_radiance/modifier/material/absdf.py +477 -0
- honeybee_radiance/modifier/material/antimatter.py +54 -0
- honeybee_radiance/modifier/material/ashik2.py +51 -0
- honeybee_radiance/modifier/material/brtdfunc.py +81 -0
- honeybee_radiance/modifier/material/bsdf.py +292 -0
- honeybee_radiance/modifier/material/dielectric.py +53 -0
- honeybee_radiance/modifier/material/glass.py +431 -0
- honeybee_radiance/modifier/material/glow.py +246 -0
- honeybee_radiance/modifier/material/illum.py +51 -0
- honeybee_radiance/modifier/material/interface.py +49 -0
- honeybee_radiance/modifier/material/light.py +206 -0
- honeybee_radiance/modifier/material/materialbase.py +36 -0
- honeybee_radiance/modifier/material/metal.py +167 -0
- honeybee_radiance/modifier/material/metal2.py +41 -0
- honeybee_radiance/modifier/material/metdata.py +41 -0
- honeybee_radiance/modifier/material/metfunc.py +41 -0
- honeybee_radiance/modifier/material/mirror.py +340 -0
- honeybee_radiance/modifier/material/mist.py +86 -0
- honeybee_radiance/modifier/material/plasdata.py +58 -0
- honeybee_radiance/modifier/material/plasfunc.py +59 -0
- honeybee_radiance/modifier/material/plastic.py +354 -0
- honeybee_radiance/modifier/material/plastic2.py +58 -0
- honeybee_radiance/modifier/material/prism1.py +57 -0
- honeybee_radiance/modifier/material/prism2.py +48 -0
- honeybee_radiance/modifier/material/spotlight.py +50 -0
- honeybee_radiance/modifier/material/trans.py +518 -0
- honeybee_radiance/modifier/material/trans2.py +49 -0
- honeybee_radiance/modifier/material/transdata.py +50 -0
- honeybee_radiance/modifier/material/transfunc.py +53 -0
- honeybee_radiance/modifier/mixture/__init__.py +6 -0
- honeybee_radiance/modifier/mixture/mixdata.py +49 -0
- honeybee_radiance/modifier/mixture/mixfunc.py +54 -0
- honeybee_radiance/modifier/mixture/mixpict.py +52 -0
- honeybee_radiance/modifier/mixture/mixtext.py +66 -0
- honeybee_radiance/modifier/mixture/mixturebase.py +28 -0
- honeybee_radiance/modifier/modifierbase.py +40 -0
- honeybee_radiance/modifier/pattern/__init__.py +9 -0
- honeybee_radiance/modifier/pattern/brightdata.py +49 -0
- honeybee_radiance/modifier/pattern/brightfunc.py +47 -0
- honeybee_radiance/modifier/pattern/brighttext.py +81 -0
- honeybee_radiance/modifier/pattern/colordata.py +56 -0
- honeybee_radiance/modifier/pattern/colorfunc.py +47 -0
- honeybee_radiance/modifier/pattern/colorpict.py +54 -0
- honeybee_radiance/modifier/pattern/colortext.py +73 -0
- honeybee_radiance/modifier/pattern/patternbase.py +34 -0
- honeybee_radiance/modifier/texture/__init__.py +4 -0
- honeybee_radiance/modifier/texture/texdata.py +29 -0
- honeybee_radiance/modifier/texture/texfunc.py +26 -0
- honeybee_radiance/modifier/texture/texturebase.py +27 -0
- honeybee_radiance/modifierset.py +1091 -0
- honeybee_radiance/mutil.py +60 -0
- honeybee_radiance/postprocess/__init__.py +1 -0
- honeybee_radiance/postprocess/annual.py +108 -0
- honeybee_radiance/postprocess/annualdaylight.py +425 -0
- honeybee_radiance/postprocess/annualglare.py +201 -0
- honeybee_radiance/postprocess/annualirradiance.py +187 -0
- honeybee_radiance/postprocess/electriclight.py +119 -0
- honeybee_radiance/postprocess/en17037.py +261 -0
- honeybee_radiance/postprocess/leed.py +304 -0
- honeybee_radiance/postprocess/solartracking.py +90 -0
- honeybee_radiance/primitive.py +554 -0
- honeybee_radiance/properties/__init__.py +1 -0
- honeybee_radiance/properties/_base.py +390 -0
- honeybee_radiance/properties/aperture.py +197 -0
- honeybee_radiance/properties/door.py +198 -0
- honeybee_radiance/properties/face.py +123 -0
- honeybee_radiance/properties/model.py +1291 -0
- honeybee_radiance/properties/room.py +490 -0
- honeybee_radiance/properties/shade.py +186 -0
- honeybee_radiance/properties/shademesh.py +116 -0
- honeybee_radiance/putil.py +44 -0
- honeybee_radiance/reader.py +214 -0
- honeybee_radiance/sensor.py +166 -0
- honeybee_radiance/sensorgrid.py +1008 -0
- honeybee_radiance/view.py +1101 -0
- honeybee_radiance/writer.py +951 -0
- honeybee_radiance-1.66.190.dist-info/METADATA +89 -0
- honeybee_radiance-1.66.190.dist-info/RECORD +152 -0
- honeybee_radiance-1.66.190.dist-info/WHEEL +5 -0
- honeybee_radiance-1.66.190.dist-info/entry_points.txt +2 -0
- honeybee_radiance-1.66.190.dist-info/licenses/LICENSE +661 -0
- honeybee_radiance-1.66.190.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: honeybee-radiance
|
|
3
|
+
Version: 1.66.190
|
|
4
|
+
Summary: Daylight and light simulation extension for honeybee.
|
|
5
|
+
Home-page: https://github.com/ladybug-tools/honeybee-radiance
|
|
6
|
+
Author: Ladybug Tools
|
|
7
|
+
Author-email: info@ladybug.tools
|
|
8
|
+
License: AGPL-3.0
|
|
9
|
+
Classifier: Programming Language :: Python :: 2.7
|
|
10
|
+
Classifier: Programming Language :: Python :: 3.7
|
|
11
|
+
Classifier: Programming Language :: Python :: 3.8
|
|
12
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
16
|
+
Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
17
|
+
Classifier: Programming Language :: Python :: Implementation :: IronPython
|
|
18
|
+
Classifier: Operating System :: OS Independent
|
|
19
|
+
Description-Content-Type: text/markdown
|
|
20
|
+
License-File: LICENSE
|
|
21
|
+
Requires-Dist: honeybee-core==1.62.0
|
|
22
|
+
Requires-Dist: honeybee-radiance-folder==2.11.16
|
|
23
|
+
Requires-Dist: honeybee-radiance-command==1.22.5
|
|
24
|
+
Requires-Dist: honeybee-standards==2.0.7
|
|
25
|
+
Dynamic: author
|
|
26
|
+
Dynamic: author-email
|
|
27
|
+
Dynamic: classifier
|
|
28
|
+
Dynamic: description
|
|
29
|
+
Dynamic: description-content-type
|
|
30
|
+
Dynamic: home-page
|
|
31
|
+
Dynamic: license
|
|
32
|
+
Dynamic: license-file
|
|
33
|
+
Dynamic: requires-dist
|
|
34
|
+
Dynamic: summary
|
|
35
|
+
|
|
36
|
+
# honeybee-radiance
|
|
37
|
+
|
|
38
|
+

|
|
39
|
+
|
|
40
|
+
[](https://github.com/ladybug-tools/honeybee-radiance/actions)
|
|
41
|
+
[](https://coveralls.io/github/ladybug-tools/honeybee-radiance)
|
|
42
|
+
|
|
43
|
+
[](https://www.python.org/downloads/release/python-3100/)
|
|
44
|
+
[](https://www.python.org/downloads/release/python-370/)
|
|
45
|
+
[](https://www.python.org/downloads/release/python-270/)
|
|
46
|
+
[](https://github.com/IronLanguages/ironpython2/releases/tag/ipy-2.7.8/)
|
|
47
|
+
|
|
48
|
+
Radiance extension for honeybee.
|
|
49
|
+
|
|
50
|
+
Honeybee-radiance adds Radiance simulation functionalities to honeybee for daylight/radiation simulation.
|
|
51
|
+
|
|
52
|
+
## Installation
|
|
53
|
+
|
|
54
|
+
`pip install -U honeybee-radiance`
|
|
55
|
+
|
|
56
|
+
To check if the command line interface is installed correctly use `honeybee-radiance --help`.
|
|
57
|
+
|
|
58
|
+
## Documentation
|
|
59
|
+
|
|
60
|
+
[API documentation](https://www.ladybug.tools/honeybee-radiance/docs/)
|
|
61
|
+
|
|
62
|
+
## Local Development
|
|
63
|
+
|
|
64
|
+
1. Clone this repo locally
|
|
65
|
+
```console
|
|
66
|
+
git clone git@github.com:ladybug-tools/honeybee-radiance
|
|
67
|
+
|
|
68
|
+
# or
|
|
69
|
+
|
|
70
|
+
git clone https://github.com/ladybug-tools/honeybee-radiance
|
|
71
|
+
```
|
|
72
|
+
2. Install dependencies:
|
|
73
|
+
```console
|
|
74
|
+
cd honeybee-radiance
|
|
75
|
+
pip install -r dev-requirements.txt
|
|
76
|
+
pip install -r requirements.txt
|
|
77
|
+
```
|
|
78
|
+
|
|
79
|
+
3. Run Tests:
|
|
80
|
+
```console
|
|
81
|
+
python -m pytest tests/
|
|
82
|
+
```
|
|
83
|
+
|
|
84
|
+
4. Generate Documentation:
|
|
85
|
+
```console
|
|
86
|
+
sphinx-apidoc -f -e -d 4 -o ./docs ./honeybee_radiance
|
|
87
|
+
sphinx-build -b html ./docs ./docs/_build/docs
|
|
88
|
+
```
|
|
89
|
+
|
|
@@ -0,0 +1,152 @@
|
|
|
1
|
+
honeybee_radiance/__init__.py,sha256=IBQZ74Tzio7mlsEBuZ2u0-16SZzcCNyztW3QYt6Z5Hk,389
|
|
2
|
+
honeybee_radiance/__main__.py,sha256=02VTUn1Ft2UksmdUDmlyIeJ6Ksae_U9RIBu-2OOK6UM,86
|
|
3
|
+
honeybee_radiance/_extend_honeybee.py,sha256=Rp8oeWzrFbagNv1l3Wg2N_6NXJM63oq_VhYeK1PaTAM,3350
|
|
4
|
+
honeybee_radiance/config.json,sha256=GTgXaUZhYwPVFjL6UtvIHP4DK4bhQWM7cDWcpv3kRfU,156
|
|
5
|
+
honeybee_radiance/config.py,sha256=0AAyZoybLexiubYdllOLn0V7BnsXVoTQpL-rT-jTOH0,17434
|
|
6
|
+
honeybee_radiance/dictutil.py,sha256=wo_hrF20FKhlukOVXHTf684tZf8zAr4FCjTmLoKsJGk,2087
|
|
7
|
+
honeybee_radiance/lightpath.py,sha256=JJ26lSbRSMI2EXjaRKnq7oflnkutX8zSqFXmZGb4xa0,9582
|
|
8
|
+
honeybee_radiance/modifierset.py,sha256=FLfLpzAYLPcuvOe6aXS0KVp78dg0owJxVUvA8NkPT0k,43652
|
|
9
|
+
honeybee_radiance/mutil.py,sha256=f-bmpktcrGGgMGpf6Two0Pd0Vd99D70uV-_VKhhaUZI,2209
|
|
10
|
+
honeybee_radiance/primitive.py,sha256=WQvN3H5RbVXCIj_sPzHyl6I_ZTrMCeOrjUEJ8XlGGDs,19196
|
|
11
|
+
honeybee_radiance/putil.py,sha256=nN2c9EBPXCMXyB6ZqdVOHhIieZ3IpHBupbDuc4_sPt8,1651
|
|
12
|
+
honeybee_radiance/reader.py,sha256=7ZfiljtJ66Pa6gFxdL4WugjouxppVAuGSfuD5lndhRo,6763
|
|
13
|
+
honeybee_radiance/sensor.py,sha256=AaeTR2uuHZVz7NAfJp4piBgor0m52XEHGSZmMz0sOUs,5284
|
|
14
|
+
honeybee_radiance/sensorgrid.py,sha256=L91MSuxNEHA2t_5GVREkZDLIFSAbtpSwaEeIU9c_z9s,45146
|
|
15
|
+
honeybee_radiance/view.py,sha256=7JHW8jn3P1QN7R-kK237RmNwrXRj-c_ZM3r00eNahG8,42034
|
|
16
|
+
honeybee_radiance/writer.py,sha256=-XB9RlfmNa90FhGMvFSxoqqjRgT2PhxWZw0vFbYESkk,43840
|
|
17
|
+
honeybee_radiance/cli/__init__.py,sha256=meoxFTNMGD_lL9MGdYDTqP6PberxgyVxDiwuswMfaw4,2677
|
|
18
|
+
honeybee_radiance/cli/dc.py,sha256=YpgwQuEKXnEJXB0iyH8xaw8kZr4nw5throvZBfb0ewc,14899
|
|
19
|
+
honeybee_radiance/cli/edit.py,sha256=CBqBuB2fm_XihR7edxV3pjpTfi5QMJs8rmBfYwyjwCQ,27464
|
|
20
|
+
honeybee_radiance/cli/glare.py,sha256=TLkf2RMNAkiSAmu5DXy_TIjcK4XywT3Q86ofIgOviBQ,4031
|
|
21
|
+
honeybee_radiance/cli/grid.py,sha256=BdORKQ6ooA-z6CsVmsfCrYgeXbdMsavH_1MSUcrFgME,42989
|
|
22
|
+
honeybee_radiance/cli/lib.py,sha256=TbEbxDrk1yFbGLj0jfUhmr33pMRDI3YwN9Jfu88rhbc,20633
|
|
23
|
+
honeybee_radiance/cli/modifier.py,sha256=daNZZ14vyd7W49xRJIEIkW9mB7dYXKZFdjqX0Oq9DBc,5045
|
|
24
|
+
honeybee_radiance/cli/mtx.py,sha256=k9cyDz8lEV2yrusFGgu3RtnRzi1DjBnNAT7ctzSmlHg,7388
|
|
25
|
+
honeybee_radiance/cli/multiphase.py,sha256=vqbiL3hbLJb3Ulf90tgphbUx738Lg0Utq3dsFAw5dMQ,41338
|
|
26
|
+
honeybee_radiance/cli/octree.py,sha256=irTjKA787rVnO1ov78ENPnexcsYzn2lCgoT60bL6s9U,26740
|
|
27
|
+
honeybee_radiance/cli/postprocess.py,sha256=OyR4L4kOHOX7FpHTPY5hK506_qkETdmBV12SnweQ94I,44785
|
|
28
|
+
honeybee_radiance/cli/raytrace.py,sha256=OgDpaZdqzCW2HYgogkoyxbawiOvI3GKwJS9oD1n8qQo,7285
|
|
29
|
+
honeybee_radiance/cli/rpict.py,sha256=tiODaxQ0Ocs4UqfWZJ-s-Y5fF2H8yBVaW6DKt6dX-EE,4589
|
|
30
|
+
honeybee_radiance/cli/schedule.py,sha256=WlJF3SSalAFs7WoKqHIBYfzqqJaniv7pbBQBxmg6X-w,1718
|
|
31
|
+
honeybee_radiance/cli/setconfig.py,sha256=yWmfofzNFqHgoBjlgpkb5VdoDIjJ60NKolKufJjAFCw,2062
|
|
32
|
+
honeybee_radiance/cli/sky.py,sha256=UjYWs9VcgYpKs09N_8YO2xB3YfVmHnJYO97HuskN8zc,24448
|
|
33
|
+
honeybee_radiance/cli/study.py,sha256=bLkOWuFtBvIJzkCVAkpSbs0E5AzIibIEXr7dK-o2Pbc,1887
|
|
34
|
+
honeybee_radiance/cli/sunpath.py,sha256=SQCBQvsiPh9Mhq0aVR19omQbDyDPfoPOGQhB8kOh7Rk,13167
|
|
35
|
+
honeybee_radiance/cli/threephase.py,sha256=0Fu8iTAYtHmYQuf0S5OURkzbrcwOPATmyC25wKUBNzg,9478
|
|
36
|
+
honeybee_radiance/cli/translate.py,sha256=IOZsUsZTgrc6bcmFw2JJRM6RFyVrwTOJsWBepFLwE9U,19075
|
|
37
|
+
honeybee_radiance/cli/util.py,sha256=fpx_vQsOZVx19F2pHvLA7QVGdzhFXbgxWR_Qw8pRF9U,4077
|
|
38
|
+
honeybee_radiance/cli/view.py,sha256=rhpgDkJ_If4zjlATw7SQg-ZREHdKypLYA011F4SL8RQ,10744
|
|
39
|
+
honeybee_radiance/cli/viewfactor.py,sha256=ajqObkVTGCRR1W3H5H3r2MDKzsesJHbP2MhSrPY6Xks,14895
|
|
40
|
+
honeybee_radiance/dynamic/__init__.py,sha256=jFyZfEAO0FNWQdiRnaNg0PCxd8ik2ZcSWmtBnnYyO3g,214
|
|
41
|
+
honeybee_radiance/dynamic/group.py,sha256=rdE44eKe7_ThNgdU2lSQTWZlUrr8meVTbEBBuqRxoI0,20111
|
|
42
|
+
honeybee_radiance/dynamic/multiphase.py,sha256=3kxsEhHqzuCmIYcCXG4lXicSM7xKLm2NCdX49acEtqM,23756
|
|
43
|
+
honeybee_radiance/dynamic/state.py,sha256=sBSK4h54eW7IAkv5dABRJn4gDzBLphIRNuvPDQssoTE,29497
|
|
44
|
+
honeybee_radiance/dynamic/stategeo.py,sha256=Gcg_rcvqEP9UtExjYmv6f2M8V4ihD07jO-XTGiJtvss,13602
|
|
45
|
+
honeybee_radiance/geometry/__init__.py,sha256=u9BiCKOE2ZZcMhDBjpKNWJ7WLkre7SOYWzi8wE7-fxY,313
|
|
46
|
+
honeybee_radiance/geometry/bubble.py,sha256=a8rtXtO1nc6306h9YS3pm5m79CNcwtCZ00uGb50EAJo,1171
|
|
47
|
+
honeybee_radiance/geometry/cone.py,sha256=r-LeTqCFQ4Vk3YHU3-U_gxvIJNNkw8CxRdxKJfMRqWY,7852
|
|
48
|
+
honeybee_radiance/geometry/cup.py,sha256=zPFYlD4N1FaidNo561SVeK7l_o7-xnbhm6Rl6GFVy68,1657
|
|
49
|
+
honeybee_radiance/geometry/cylinder.py,sha256=ikF1Bp51l8HLoV3Wv26VWjCXhCmsP5li1qZ90eGPXDM,7031
|
|
50
|
+
honeybee_radiance/geometry/geometrybase.py,sha256=OvtmXbCliyJ03SrLR9W3rpJjsIo2n2pmRm_-OpGBDyk,1094
|
|
51
|
+
honeybee_radiance/geometry/instance.py,sha256=dKmfWJ3YtwVlDoW8xHTlr5MGT4uIv6XT06_xdcCBQxs,1547
|
|
52
|
+
honeybee_radiance/geometry/mesh.py,sha256=4CQZU5VrgUPAqtNbU16v3_5pg45Na3Z3vSW5LPFsadA,1504
|
|
53
|
+
honeybee_radiance/geometry/polygon.py,sha256=PlBf79E5IGA5Tz7c3bjTyn5wj4ybWGfVmzLvRYxCmF4,6215
|
|
54
|
+
honeybee_radiance/geometry/ring.py,sha256=96Ll84PRuEOYm1pMhHh6TDcBNL-iW2HJh4DfwOI2WeM,7630
|
|
55
|
+
honeybee_radiance/geometry/source.py,sha256=dXtfG7Z3PEuPNuyzfrQywUAOjWmbyaRdraQ1FjP-iqc,6155
|
|
56
|
+
honeybee_radiance/geometry/sphere.py,sha256=mzZ4MjPg_jvIPNGaiKFKhPSpy_axgB_3eFzd_V9V_xY,5922
|
|
57
|
+
honeybee_radiance/geometry/tube.py,sha256=ZBWAFZhsIRa8TCu3x8V4eAzLKhBNlvhk1r4ZU1HS9f0,1392
|
|
58
|
+
honeybee_radiance/lib/__init__.py,sha256=W7Rpd9Bf7NBcM7qdo3SXklQ6KatAWOCmegct908vpzE,72
|
|
59
|
+
honeybee_radiance/lib/_loadmodifiers.py,sha256=W-DdKa9SAKTNB-sF3nKSvHCKGKO7EgpigiyxYfJcnx0,2849
|
|
60
|
+
honeybee_radiance/lib/_loadmodifiersets.py,sha256=Q5M1oKRdzWRibC4HQ_gjj--Pu-R_X33-U1Hb-9og7Ic,2842
|
|
61
|
+
honeybee_radiance/lib/modifiers.py,sha256=9QQU6kAnQUH7WcbqkOwRVDeYKgwJ2wgDEEbCaaA1h7Y,2564
|
|
62
|
+
honeybee_radiance/lib/modifiersets.py,sha256=n2OsUWhdGjYXerXIbkjqwAWi9ghJIIAVIuwFg7c7hKQ,2542
|
|
63
|
+
honeybee_radiance/lightsource/__init__.py,sha256=bfvpNAvLnICHoK68X6BTLsut1pIZjK2I0f6V5nxPle4,39
|
|
64
|
+
honeybee_radiance/lightsource/_gendaylit.py,sha256=p--z01JaahyCLeIWUzgvmZG6975K3qpz_EuHEpF_QM8,18616
|
|
65
|
+
honeybee_radiance/lightsource/dictutil.py,sha256=swOvVztmT3ESBHIT1-1pLkJS1s52eQxbqAeJmJbtOrs,1941
|
|
66
|
+
honeybee_radiance/lightsource/ground.py,sha256=HUIYQZy4wY2VPZz92f8XNZV0iCNHLCLOGhJ-elznioQ,4833
|
|
67
|
+
honeybee_radiance/lightsource/sunpath.py,sha256=X0xsyZxX6q02Dl7HDL2xodpjJ-DbC816zVhi4PYMilU,8900
|
|
68
|
+
honeybee_radiance/lightsource/sky/__init__.py,sha256=gJK1Q6BSEpcn5vXNkXOCZON1t-b88B2nI7QgPF0jMy0,247
|
|
69
|
+
honeybee_radiance/lightsource/sky/_skybase.py,sha256=RRerwN9TDoTLb3seqTUPjM7m-ZukxkeLq936sFxdOUw,5524
|
|
70
|
+
honeybee_radiance/lightsource/sky/certainirradiance.py,sha256=Da_KfNhxbGE6SMNMriCXwDlbKB9CE0kRUWn927fjGnA,8398
|
|
71
|
+
honeybee_radiance/lightsource/sky/cie.py,sha256=NUpA6K2tRsnpIQQ6mecjWCtsjllTt-EMrRXy0dCvlLk,16380
|
|
72
|
+
honeybee_radiance/lightsource/sky/climatebased.py,sha256=X8h3mXDhCJpB8TNk3yfFQO4cl_gORPDcQwJhp4kJ1V0,22947
|
|
73
|
+
honeybee_radiance/lightsource/sky/hemisphere.py,sha256=pRMFuMgXTa86Xr6Xy6DQlM0715oP7-iydG-Q73QVeSM,4970
|
|
74
|
+
honeybee_radiance/lightsource/sky/skydome.py,sha256=2tL91_aVtOafuQsT52UFcwlLyD84S8gbqe6OSWCDG8s,3179
|
|
75
|
+
honeybee_radiance/lightsource/sky/skymatrix.py,sha256=Xa-Adn7FiZuTWPLPZ7eTmiJLuzHhm3rCyRdcgTqFaIw,6026
|
|
76
|
+
honeybee_radiance/lightsource/sky/strutil.py,sha256=SvpZQlVuySXQWF59jpW1DjkuS-m8zOP3aHwC9vGoiIk,1384
|
|
77
|
+
honeybee_radiance/lightsource/sky/sunmatrix.py,sha256=MwM8zcIvIQJUDEiUboouOUieumOMiT1xOjKorfvQ9L8,7251
|
|
78
|
+
honeybee_radiance/modifier/__init__.py,sha256=P8MUesU5h4Nzns-zA8b5cVsWZlqOc_OMyDc_aJCcmtI,62
|
|
79
|
+
honeybee_radiance/modifier/modifierbase.py,sha256=Q-CgR-_Bn3Lkmyzd4TXMU7nr3lFfBZIsQ6Kg4Hsmp3Y,1040
|
|
80
|
+
honeybee_radiance/modifier/material/__init__.py,sha256=ywUUMqFNPc0n0Afv4y9P53hbr9R6WVpwFF-8d3XWk6g,821
|
|
81
|
+
honeybee_radiance/modifier/material/absdf.py,sha256=mspAncTLJ8CO86ZJLvt2Vk9YTrYyk6JGPzrqelvYvuc,18220
|
|
82
|
+
honeybee_radiance/modifier/material/antimatter.py,sha256=MDFRZEbOenZNENg29QNhNEA6b-BFtwsbZ5nDX7AytII,2044
|
|
83
|
+
honeybee_radiance/modifier/material/ashik2.py,sha256=GbQvhXSRT_PU2gYGTdssrpqJEjpiFErTHIOvTcjhptU,1881
|
|
84
|
+
honeybee_radiance/modifier/material/brtdfunc.py,sha256=5LujxTF_cHBNHXvuGrYa1fwuNQz6MOkKV5e62FVwjdk,3690
|
|
85
|
+
honeybee_radiance/modifier/material/bsdf.py,sha256=DNSTyu86vBSuNwVrexIk7XleNq6lo7sQYTSQaXNztXM,11813
|
|
86
|
+
honeybee_radiance/modifier/material/dielectric.py,sha256=gex30D5CSqSN2ICQGudEiDMaZHieADJPZ3kDFVEGHr0,2016
|
|
87
|
+
honeybee_radiance/modifier/material/glass.py,sha256=h7rEmTzR3kPtSKPt_i08ziuDhkt1wD8oB7VZkVJLH4o,17288
|
|
88
|
+
honeybee_radiance/modifier/material/glow.py,sha256=9llUfBPzU4T6Tg40HIQivkiwWNyaC9nj88y-da94Pa8,9704
|
|
89
|
+
honeybee_radiance/modifier/material/illum.py,sha256=gZxH9HquG19aGZQapxvoX91KEBtbHnFJEnqWUg38Ego,1895
|
|
90
|
+
honeybee_radiance/modifier/material/interface.py,sha256=GfSNwkFAjmuzzuE6at7yqAMc2VAxFYCkeyNjQcKVCYo,1725
|
|
91
|
+
honeybee_radiance/modifier/material/light.py,sha256=51-Tcqg7breqbqHL-UjAkgWkTyqANeT4IpTGKEesYoY,7440
|
|
92
|
+
honeybee_radiance/modifier/material/materialbase.py,sha256=u3n4SQZt0HiMRLAJ9Mv-Ae731ZOv40OVQD_CNplRjrQ,967
|
|
93
|
+
honeybee_radiance/modifier/material/metal.py,sha256=XN0Mxoghk3bVsx2neQD_edmEP4sFH2qLVbfa5TycwFk,7602
|
|
94
|
+
honeybee_radiance/modifier/material/metal2.py,sha256=G63Uvn4aS5OENsgm4ZEA9JaGi7nq2ZKEI6DDuyAgmrY,1461
|
|
95
|
+
honeybee_radiance/modifier/material/metdata.py,sha256=UuJPA5u7uOF4ecZ6sDRHwNEnAPsGtr6YCXX70lEuuI8,1535
|
|
96
|
+
honeybee_radiance/modifier/material/metfunc.py,sha256=IuesqHVbx9FqnYfkGzPsFrPiydjAndgv9qTQKfrLGaI,1502
|
|
97
|
+
honeybee_radiance/modifier/material/mirror.py,sha256=O3aUItkgFv6yJugwLiyPQGLir0Kf5syf_k40YPmZV5w,13642
|
|
98
|
+
honeybee_radiance/modifier/material/mist.py,sha256=eCqJOHBnKxmyG_EMdP7q-agu3h2UoelOa4TOX1bBa9s,4501
|
|
99
|
+
honeybee_radiance/modifier/material/plasdata.py,sha256=xZBi5_F_chKhpAYCgN6YbsIlcnK7i5hF4dmdkgdlScI,2286
|
|
100
|
+
honeybee_radiance/modifier/material/plasfunc.py,sha256=Mr0RbILsllRT4JryvV7CDDOmzl2v9gCbSqObvsEwpDU,2523
|
|
101
|
+
honeybee_radiance/modifier/material/plastic.py,sha256=LQV2LenMubgpWOZvKhqQNYe1--69wkSOFMT_zBxGlx0,14190
|
|
102
|
+
honeybee_radiance/modifier/material/plastic2.py,sha256=CD8Y8BCiia9WLNaS39P_xeeVl8tg1p9mbE00eW85MwU,2501
|
|
103
|
+
honeybee_radiance/modifier/material/prism1.py,sha256=-rXrkPmrfstp2HEC9k2EEZ4wpQMbNUcnfypld2hoik4,2232
|
|
104
|
+
honeybee_radiance/modifier/material/prism2.py,sha256=MBNUVByMGJdGfpniyFCEjrlu3oZiPwa4HiW0nNJ_t7A,1623
|
|
105
|
+
honeybee_radiance/modifier/material/spotlight.py,sha256=cf4g82IZnZmRjKQiXtzyxsNzkH4MnFsoM28dbGAZ554,1808
|
|
106
|
+
honeybee_radiance/modifier/material/trans.py,sha256=X4fqfMAMi2VEB-YdrqYPGBGN-NekTdLukdmrHtCrJMY,22200
|
|
107
|
+
honeybee_radiance/modifier/material/trans2.py,sha256=rhp54AwNWEPuVrbwOPtn8zuwA2-T2crT3-Vlsoidtkw,1709
|
|
108
|
+
honeybee_radiance/modifier/material/transdata.py,sha256=qFpgi2xWl87kA64BZ0pHglNKizy-WuQZwwVoqlcYxxE,1708
|
|
109
|
+
honeybee_radiance/modifier/material/transfunc.py,sha256=Z4Q_kVYpjfp-AvU8yDj-nrbaTMDyeHh71Sqos2PJre4,1929
|
|
110
|
+
honeybee_radiance/modifier/mixture/__init__.py,sha256=YliO7m8wTZY7dD1itF9kwnTo91difS5tz4HkBrPDI_g,142
|
|
111
|
+
honeybee_radiance/modifier/mixture/mixdata.py,sha256=K9mar6pZ9GtLW8ESFUzOEJ9bexEjlHqGZtVP-AUo-Kg,1617
|
|
112
|
+
honeybee_radiance/modifier/mixture/mixfunc.py,sha256=kv4KTLsmKVeI9C-0LtZlW79O3YL-hJrFXib92oNQFa0,2048
|
|
113
|
+
honeybee_radiance/modifier/mixture/mixpict.py,sha256=RjBTDr4gADHAHSNFQlyCsLvfClLE4XL0RnVustUCBHA,1736
|
|
114
|
+
honeybee_radiance/modifier/mixture/mixtext.py,sha256=UYDznTx-TnsT4U1QckoaeTh7xd1QNQY8q-ccG31TL0Q,1954
|
|
115
|
+
honeybee_radiance/modifier/mixture/mixturebase.py,sha256=GNBFRAq_yaiGGtRfOnZvaLAg6afVWxzyJgIiYQ-0k1o,708
|
|
116
|
+
honeybee_radiance/modifier/pattern/__init__.py,sha256=lNEpT8saNZ0pQzZFWKH10BGTqBFfno5QVeG8lBrxaT4,263
|
|
117
|
+
honeybee_radiance/modifier/pattern/brightdata.py,sha256=GgfQzDrciK9b9pL60zOhqRKaZkbZdMeIx8X0KrtZByo,1602
|
|
118
|
+
honeybee_radiance/modifier/pattern/brightfunc.py,sha256=0wq6n0tacdCA-TgQtuig3s-T_D9VzLhMIuDiScOipoI,1564
|
|
119
|
+
honeybee_radiance/modifier/pattern/brighttext.py,sha256=de5dvLMtbzi-pMxo4GLXVShiehGkoK0HRK0-S9N_QMw,3113
|
|
120
|
+
honeybee_radiance/modifier/pattern/colordata.py,sha256=Ws0yRyaFXCSlzxHpvMuheFyq08WGs5BM64lNQTTYoic,2175
|
|
121
|
+
honeybee_radiance/modifier/pattern/colorfunc.py,sha256=5mYwpdI5hVvshoTheVPUMfjbEnthsuc4F981xfBrS1o,1581
|
|
122
|
+
honeybee_radiance/modifier/pattern/colorpict.py,sha256=LzB_2NJ-s6DRfcBG6dWTGAZdgep2wQhlEdbLgwzbXOY,1966
|
|
123
|
+
honeybee_radiance/modifier/pattern/colortext.py,sha256=Px6qGx8sZk-7DUu4MIf_lrDp7KT4d0b2wXWAnzvzOZ0,2394
|
|
124
|
+
honeybee_radiance/modifier/pattern/patternbase.py,sha256=Ja-3TUtL5CznGh_ZckNB3HlHC4XTmXYNUKSDYcjVjXI,787
|
|
125
|
+
honeybee_radiance/modifier/texture/__init__.py,sha256=F6kHwM48ORlKHbMB1zdfWroZ40Y7jP2jsaQS7Sif474,84
|
|
126
|
+
honeybee_radiance/modifier/texture/texdata.py,sha256=uzpJC5f-NGIQf8QqqhgbUTDQUKeFJmMS6SZ61pr1M5c,767
|
|
127
|
+
honeybee_radiance/modifier/texture/texfunc.py,sha256=0grE7K-zLAmLXOo8Ea4k7Vn3iTFSV9m-vVagHP0d-Ps,603
|
|
128
|
+
honeybee_radiance/modifier/texture/texturebase.py,sha256=lgx3DNM8hve3OLNZZzU1N41NjgmlJkH0fuhs7qyEiSA,690
|
|
129
|
+
honeybee_radiance/postprocess/__init__.py,sha256=qPexco44me6FQD4aCFRpRF3tS9uVnFtM_UJ2VWRA2g0,54
|
|
130
|
+
honeybee_radiance/postprocess/annual.py,sha256=iOIgOBuIjB2uobJI85GfGOlvDXHNR9fStgcbU3ezueU,3627
|
|
131
|
+
honeybee_radiance/postprocess/annualdaylight.py,sha256=DMJS00didUY24BlxaV0QhEGzxLkBbQSpZMY3pOXKFwM,17326
|
|
132
|
+
honeybee_radiance/postprocess/annualglare.py,sha256=JvdWoIMAZ4i_h2GCu-rz1udhnVL97fC3RKZ9EZC9NOk,8099
|
|
133
|
+
honeybee_radiance/postprocess/annualirradiance.py,sha256=XRuasI5WM1rmUcUGHhc8VRup4gXToqigjJQJTGe7BBI,7164
|
|
134
|
+
honeybee_radiance/postprocess/electriclight.py,sha256=BuePxSoXSvHMuv_soTDqZrYPTmO3KaKgDZ7yhn9USvc,5790
|
|
135
|
+
honeybee_radiance/postprocess/en17037.py,sha256=UNRCjA2ZpwNucksD77KPHNW_s_KBg-MH5nuV9jMdISo,9654
|
|
136
|
+
honeybee_radiance/postprocess/leed.py,sha256=xx6FzWwVJ2Si1Ku48OaIPK3xLTyZgS0m4Z-5g1oi5OI,14004
|
|
137
|
+
honeybee_radiance/postprocess/solartracking.py,sha256=YyNhV3rKQK7Jr7GkcnmokbZhfRTPxBpeELosDc2-SF0,4291
|
|
138
|
+
honeybee_radiance/properties/__init__.py,sha256=q3aQxX4w8OYtYe2XUIbVaJDeWalkC05Kr6qP4TI3oy0,36
|
|
139
|
+
honeybee_radiance/properties/_base.py,sha256=k6sm2CyQfNRH5MS8nIJLKI69Bur7kTu6MoSwnW6ja4Y,14779
|
|
140
|
+
honeybee_radiance/properties/aperture.py,sha256=e_dT2pB5Wsooj258ORcW-4ZC0l56I2tC5-qydG9VzNQ,8613
|
|
141
|
+
honeybee_radiance/properties/door.py,sha256=_wspewqsMWTHKShRrM5ssTL_x9ZWA-qa7AtNFBaDx9o,8477
|
|
142
|
+
honeybee_radiance/properties/face.py,sha256=JofunT-mFfWAoJMAlfYZBCxjzBNqxN1ZuLJ6lCkW_Fs,4917
|
|
143
|
+
honeybee_radiance/properties/model.py,sha256=DvVC4LKT0sipIWIX6233aotGAReChEwxJEWOxXhExaI,58393
|
|
144
|
+
honeybee_radiance/properties/room.py,sha256=2mFdkmuYPbSycQW-Qg3U3pWOXlHEInuyjy72jokp0M4,22823
|
|
145
|
+
honeybee_radiance/properties/shade.py,sha256=vjjgTqQ_VhFgB8ww7dSQdavEqpOGp39X4o8e0mjHj9o,8124
|
|
146
|
+
honeybee_radiance/properties/shademesh.py,sha256=DXi2HyEGjNgm2ttEFGACMnx4V3ZBjVVOj2zKv_WNBf4,4559
|
|
147
|
+
honeybee_radiance-1.66.190.dist-info/licenses/LICENSE,sha256=hIahDEOTzuHCU5J2nd07LWwkLW7Hko4UFO__ffsvB-8,34523
|
|
148
|
+
honeybee_radiance-1.66.190.dist-info/METADATA,sha256=r3oRktTQ0Tg7zmJKeC6Pfrh7uaEXxioEIIAP-gsKRm4,3074
|
|
149
|
+
honeybee_radiance-1.66.190.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
150
|
+
honeybee_radiance-1.66.190.dist-info/entry_points.txt,sha256=sULPVElFbJ9t-w0OKxa7yYykDyhSZBVevYJ94vS5Xl0,69
|
|
151
|
+
honeybee_radiance-1.66.190.dist-info/top_level.txt,sha256=OPoNneYFtyQs1-eZ64QEd3xnditGQGig2UeZs2Nu2bo,18
|
|
152
|
+
honeybee_radiance-1.66.190.dist-info/RECORD,,
|