├── .github ├── ISSUE_TEMPLATE.md └── project-manager.yml ├── .gitignore ├── .releaserc.json ├── .travis.yml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── MANIFEST.in ├── README.md ├── deploy.sh ├── dev-requirements.txt ├── docs ├── README.md ├── _build │ ├── .nojekyll │ ├── README.md │ └── docs │ │ └── README.md ├── conf.py ├── index.rst └── modules.rst ├── honeybee_plus ├── __init__.py ├── _hbanalysissurface.py ├── config.json ├── config.py ├── dataoperation.py ├── energyplus │ ├── __init__.py │ ├── filemanager.py │ └── geometryrules.py ├── exception.py ├── futil.py ├── geometryoperation.py ├── hbdynamicsurface.py ├── hbfensurface.py ├── hbobject.py ├── hbshadesurface.py ├── hbsurface.py ├── hbzone.py ├── radiance │ ├── __init__.py │ ├── analysisgrid.py │ ├── analysisgridlite.py │ ├── analysispoint.py │ ├── analysispointlite.py │ ├── command │ │ ├── __init__.py │ │ ├── _commandbase.py │ │ ├── dctimestep.py │ │ ├── epw2wea.py │ │ ├── falsecolor.py │ │ ├── genBSDF.py │ │ ├── gendaylit.py │ │ ├── gendaymtx.py │ │ ├── gensky.py │ │ ├── genskyvec.py │ │ ├── getbbox.py │ │ ├── getinfo.py │ │ ├── mkpmap.py │ │ ├── objview.py │ │ ├── oconv.py │ │ ├── pcomb.py │ │ ├── pyRad │ │ │ ├── __init__.py │ │ │ ├── objview.py │ │ │ └── pyRadLib │ │ │ │ ├── __init__.py │ │ │ │ └── pyrad_proc.py │ │ ├── raBmp.py │ │ ├── raTiff.py │ │ ├── rcalc.py │ │ ├── rcollate.py │ │ ├── rcontrib.py │ │ ├── rfluxmtx.py │ │ ├── rmtxop.py │ │ ├── rpict.py │ │ ├── rtrace.py │ │ ├── vwrays.py │ │ └── xform.py │ ├── datatype.py │ ├── factory.py │ ├── geometry │ │ ├── __init__.py │ │ ├── bubble.py │ │ ├── cone.py │ │ ├── cup.py │ │ ├── cylinder.py │ │ ├── geometrybase.py │ │ ├── instance.py │ │ ├── mesh.py │ │ ├── polygon.py │ │ ├── ring.py │ │ ├── source.py │ │ ├── sphere.py │ │ └── tube.py │ ├── material │ │ ├── __init__.py │ │ ├── antimatter.py │ │ ├── ashik2.py │ │ ├── brtdfunc.py │ │ ├── bsdf.py │ │ ├── dielectric.py │ │ ├── glass.py │ │ ├── glow.py │ │ ├── illum.py │ │ ├── interface.py │ │ ├── light.py │ │ ├── materialbase.py │ │ ├── metal.py │ │ ├── metal2.py │ │ ├── metdata.py │ │ ├── metfunc.py │ │ ├── mirror.py │ │ ├── mist.py │ │ ├── plasdata.py │ │ ├── plasfunc.py │ │ ├── plastic.py │ │ ├── plastic2.py │ │ ├── prism1.py │ │ ├── prism2.py │ │ ├── spotlight.py │ │ ├── trans.py │ │ ├── trans2.py │ │ ├── transdata.py │ │ └── transfunc.py │ ├── mixture │ │ ├── __init__.py │ │ ├── mixdata.py │ │ ├── mixfunc.py │ │ ├── mixpict.py │ │ ├── mixtext.py │ │ └── mixturebase.py │ ├── parameters │ │ ├── __init__.py │ │ ├── _advancedparametersbase.py │ │ ├── _defaultset.py │ │ ├── _frozen.py │ │ ├── _parametersbase.py │ │ ├── dctimestep.py │ │ ├── falsecolor.py │ │ ├── genBsdf.py │ │ ├── gendaylit.py │ │ ├── gendaymtx.py │ │ ├── gensky.py │ │ ├── mkpmap.py │ │ ├── oconv.py │ │ ├── pcomb.py │ │ ├── raBmp.py │ │ ├── raTiff.py │ │ ├── rcalc.py │ │ ├── rcollate.py │ │ ├── rcontrib.py │ │ ├── rfluxmtx.py │ │ ├── rmtxop.py │ │ ├── rpict.py │ │ ├── rtrace.py │ │ ├── vwrays.py │ │ └── xform.py │ ├── pattern │ │ ├── __init__.py │ │ ├── brightdata.py │ │ ├── brightfunc.py │ │ ├── brighttext.py │ │ ├── colordata.py │ │ ├── colorfunc.py │ │ ├── colorpict.py │ │ ├── colortext.py │ │ └── patternbase.py │ ├── primitive.py │ ├── properties.py │ ├── radfile.py │ ├── radparser.py │ ├── recipe │ │ ├── __init__.py │ │ ├── _gridbasedbase.py │ │ ├── _imagebasedbase.py │ │ ├── _recipebase.py │ │ ├── annual │ │ │ ├── __init__.py │ │ │ └── gridbased.py │ │ ├── daylightcoeff │ │ │ ├── __init__.py │ │ │ ├── gridbased.py │ │ │ └── imagebased.py │ │ ├── daylightfactor │ │ │ ├── __init__.py │ │ │ └── gridbased.py │ │ ├── directreflection │ │ │ ├── __init__.py │ │ │ └── gridbased.py │ │ ├── fivephase │ │ │ ├── __init__.py │ │ │ └── gridbased.py │ │ ├── id.py │ │ ├── parameters.py │ │ ├── pointintime │ │ │ ├── __init__.py │ │ │ ├── gridbased.py │ │ │ └── imagebased.py │ │ ├── radiation │ │ │ ├── __init__.py │ │ │ └── gridbased.py │ │ ├── recipedcutil.py │ │ ├── recipeutil.py │ │ ├── recipexphaseutil.py │ │ ├── solaraccess │ │ │ ├── __init__.py │ │ │ └── gridbased.py │ │ └── threephase │ │ │ ├── __init__.py │ │ │ └── gridbased.py │ ├── resultcollection │ │ ├── __init__.py │ │ ├── database.py │ │ ├── imagecollection.py │ │ ├── pointintime.py │ │ ├── resultgrid.py │ │ └── timeseries.py │ ├── scene.py │ ├── sky │ │ ├── __init__.py │ │ ├── _pointintimesky.py │ │ ├── _skyBase.py │ │ ├── analemma.py │ │ ├── certainIlluminance.py │ │ ├── cie.py │ │ ├── climatebased.py │ │ ├── gendaylit.py │ │ ├── skymatrix.py │ │ ├── skyvector.py │ │ └── sunmatrix.py │ ├── staticscene.py │ ├── texture │ │ ├── __init__.py │ │ ├── texdata.py │ │ ├── texfunc.py │ │ └── texturebase.py │ └── view.py ├── room.py ├── schedule.py ├── server │ ├── __init__.py │ ├── client.py │ └── mpupload.py ├── surfaceproperties.py ├── surfacetype.py ├── utilcol.py ├── vectormath │ ├── __init__.py │ └── euclid.py └── windowgroup.py ├── requirements.txt ├── setup.cfg ├── setup.py ├── tests ├── __init__.py ├── assets │ ├── b00.xml │ ├── clear.xml │ ├── diffuse50.xml │ ├── readme.md │ └── sample.hdr ├── dev_tests │ ├── README.md │ └── materials_test.py ├── radiance_command_epw2wea_test.py ├── radiance_command_falsecolor_test.py ├── radiance_command_genBSDF_test.py ├── radiance_command_gendaylit_test.py ├── radiance_command_gensky_test.py ├── radiance_command_getinfo_test.py ├── radiance_command_oconv_test.py ├── radiance_command_raBmp_test.py ├── radiance_command_raTiff_test.py ├── radiance_command_rcollate.py ├── radiance_command_xform_test.py ├── radiance_datatype_test.py ├── radiance_geometry_sphere_test.py ├── radiance_material_bsdf_test.py ├── radiance_material_test.py ├── radiance_material_trans_test.py ├── radiance_parameters_advancedparameterbase_test.py ├── radiance_parameters_parameterbase_test.py ├── radiance_recipe_gridbased_test.py ├── radiance_recipe_solaraccess_test.py ├── radiance_sky_sunmtx_test.py ├── radiance_view_test.py ├── room │ ├── epws │ │ ├── USA_AK_Anchorage.Intl.AP.702730_TMY3.epw │ │ ├── USA_KY_London-Corbin-Magee.Field.724243_TMY3.epw │ │ ├── USA_MA_Boston-City.WSO_TMY.epw │ │ ├── USA_NC_Charlotte-Douglas.Intl.AP.723140_TMY3.epw │ │ └── USA_OH_Cleveland-Burke.Lakefront.AP.725245_TMY3.epw │ ├── facade_points.pts │ ├── glazing.rad │ ├── indoor_points.pts │ ├── readme.md │ ├── room.mat │ ├── room.oct │ ├── room.rad │ ├── test.epw │ ├── testroom.png │ ├── testrun │ │ └── readme.md │ ├── uniform.sky │ ├── viewExtNorthEast.vf │ ├── viewSouth1.vf │ └── xmls │ │ ├── ExtVenetianBlind_17tilt.xml │ │ ├── clear.xml │ │ ├── clear_t4_4.xml │ │ ├── clear_t4_6.xml │ │ └── diffuse50.xml └── room2 │ ├── geometry.rad │ ├── glazingEast.rad │ ├── glazingSkylight.rad │ ├── glazingSouth.rad │ ├── materials.rad │ ├── points.txt │ ├── views │ ├── external.vf │ ├── inwards.vf │ ├── south.vf │ ├── southEast.vf │ └── southEastUp.vf │ └── xmls │ ├── ExtVenetianBlind_17tilt.xml │ ├── clear.xml │ ├── clear_t4_4.xml │ ├── clear_t4_6.xml │ └── diffuse50.xml └── tox.ini /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/project-manager.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/.github/project-manager.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/.gitignore -------------------------------------------------------------------------------- /.releaserc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/.releaserc.json -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/.travis.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include honeybee/config.json 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/README.md -------------------------------------------------------------------------------- /deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/deploy.sh -------------------------------------------------------------------------------- /dev-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/dev-requirements.txt -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/_build/.nojekyll: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /docs/_build/README.md: -------------------------------------------------------------------------------- 1 | # place holder for documentation 2 | -------------------------------------------------------------------------------- /docs/_build/docs/README.md: -------------------------------------------------------------------------------- 1 | # place holder for documentation 2 | -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/modules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/docs/modules.rst -------------------------------------------------------------------------------- /honeybee_plus/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/__init__.py -------------------------------------------------------------------------------- /honeybee_plus/_hbanalysissurface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/_hbanalysissurface.py -------------------------------------------------------------------------------- /honeybee_plus/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/config.json -------------------------------------------------------------------------------- /honeybee_plus/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/config.py -------------------------------------------------------------------------------- /honeybee_plus/dataoperation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/dataoperation.py -------------------------------------------------------------------------------- /honeybee_plus/energyplus/__init__.py: -------------------------------------------------------------------------------- 1 | """Honeybee EnergyPlus libraries.""" 2 | -------------------------------------------------------------------------------- /honeybee_plus/energyplus/filemanager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/energyplus/filemanager.py -------------------------------------------------------------------------------- /honeybee_plus/energyplus/geometryrules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/energyplus/geometryrules.py -------------------------------------------------------------------------------- /honeybee_plus/exception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/exception.py -------------------------------------------------------------------------------- /honeybee_plus/futil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/futil.py -------------------------------------------------------------------------------- /honeybee_plus/geometryoperation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/geometryoperation.py -------------------------------------------------------------------------------- /honeybee_plus/hbdynamicsurface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/hbdynamicsurface.py -------------------------------------------------------------------------------- /honeybee_plus/hbfensurface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/hbfensurface.py -------------------------------------------------------------------------------- /honeybee_plus/hbobject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/hbobject.py -------------------------------------------------------------------------------- /honeybee_plus/hbshadesurface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/hbshadesurface.py -------------------------------------------------------------------------------- /honeybee_plus/hbsurface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/hbsurface.py -------------------------------------------------------------------------------- /honeybee_plus/hbzone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/hbzone.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/__init__.py: -------------------------------------------------------------------------------- 1 | """Honeybee Radiance libraries.""" 2 | -------------------------------------------------------------------------------- /honeybee_plus/radiance/analysisgrid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/analysisgrid.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/analysisgridlite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/analysisgridlite.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/analysispoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/analysispoint.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/analysispointlite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/analysispointlite.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/command/__init__.py: -------------------------------------------------------------------------------- 1 | """Radiance commands.""" 2 | -------------------------------------------------------------------------------- /honeybee_plus/radiance/command/_commandbase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/command/_commandbase.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/command/dctimestep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/command/dctimestep.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/command/epw2wea.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/command/epw2wea.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/command/falsecolor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/command/falsecolor.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/command/genBSDF.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/command/genBSDF.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/command/gendaylit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/command/gendaylit.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/command/gendaymtx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/command/gendaymtx.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/command/gensky.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/command/gensky.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/command/genskyvec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/command/genskyvec.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/command/getbbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/command/getbbox.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/command/getinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/command/getinfo.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/command/mkpmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/command/mkpmap.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/command/objview.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/command/objview.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/command/oconv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/command/oconv.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/command/pcomb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/command/pcomb.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/command/pyRad/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /honeybee_plus/radiance/command/pyRad/objview.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/command/pyRad/objview.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/command/pyRad/pyRadLib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /honeybee_plus/radiance/command/pyRad/pyRadLib/pyrad_proc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/command/pyRad/pyRadLib/pyrad_proc.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/command/raBmp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/command/raBmp.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/command/raTiff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/command/raTiff.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/command/rcalc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/command/rcalc.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/command/rcollate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/command/rcollate.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/command/rcontrib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/command/rcontrib.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/command/rfluxmtx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/command/rfluxmtx.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/command/rmtxop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/command/rmtxop.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/command/rpict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/command/rpict.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/command/rtrace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/command/rtrace.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/command/vwrays.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/command/vwrays.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/command/xform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/command/xform.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/datatype.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/datatype.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/factory.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/geometry/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/geometry/__init__.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/geometry/bubble.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/geometry/bubble.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/geometry/cone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/geometry/cone.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/geometry/cup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/geometry/cup.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/geometry/cylinder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/geometry/cylinder.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/geometry/geometrybase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/geometry/geometrybase.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/geometry/instance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/geometry/instance.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/geometry/mesh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/geometry/mesh.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/geometry/polygon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/geometry/polygon.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/geometry/ring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/geometry/ring.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/geometry/source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/geometry/source.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/geometry/sphere.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/geometry/sphere.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/geometry/tube.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/geometry/tube.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/material/__init__.py: -------------------------------------------------------------------------------- 1 | """Radiance Materials.""" 2 | -------------------------------------------------------------------------------- /honeybee_plus/radiance/material/antimatter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/material/antimatter.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/material/ashik2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/material/ashik2.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/material/brtdfunc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/material/brtdfunc.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/material/bsdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/material/bsdf.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/material/dielectric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/material/dielectric.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/material/glass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/material/glass.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/material/glow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/material/glow.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/material/illum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/material/illum.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/material/interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/material/interface.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/material/light.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/material/light.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/material/materialbase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/material/materialbase.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/material/metal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/material/metal.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/material/metal2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/material/metal2.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/material/metdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/material/metdata.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/material/metfunc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/material/metfunc.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/material/mirror.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/material/mirror.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/material/mist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/material/mist.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/material/plasdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/material/plasdata.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/material/plasfunc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/material/plasfunc.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/material/plastic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/material/plastic.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/material/plastic2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/material/plastic2.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/material/prism1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/material/prism1.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/material/prism2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/material/prism2.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/material/spotlight.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/material/spotlight.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/material/trans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/material/trans.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/material/trans2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/material/trans2.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/material/transdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/material/transdata.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/material/transfunc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/material/transfunc.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/mixture/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/mixture/__init__.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/mixture/mixdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/mixture/mixdata.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/mixture/mixfunc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/mixture/mixfunc.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/mixture/mixpict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/mixture/mixpict.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/mixture/mixtext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/mixture/mixtext.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/mixture/mixturebase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/mixture/mixturebase.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/parameters/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /honeybee_plus/radiance/parameters/_advancedparametersbase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/parameters/_advancedparametersbase.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/parameters/_defaultset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/parameters/_defaultset.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/parameters/_frozen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/parameters/_frozen.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/parameters/_parametersbase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/parameters/_parametersbase.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/parameters/dctimestep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/parameters/dctimestep.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/parameters/falsecolor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/parameters/falsecolor.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/parameters/genBsdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/parameters/genBsdf.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/parameters/gendaylit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/parameters/gendaylit.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/parameters/gendaymtx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/parameters/gendaymtx.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/parameters/gensky.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/parameters/gensky.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/parameters/mkpmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/parameters/mkpmap.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/parameters/oconv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/parameters/oconv.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/parameters/pcomb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/parameters/pcomb.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/parameters/raBmp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/parameters/raBmp.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/parameters/raTiff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/parameters/raTiff.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/parameters/rcalc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/parameters/rcalc.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/parameters/rcollate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/parameters/rcollate.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/parameters/rcontrib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/parameters/rcontrib.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/parameters/rfluxmtx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/parameters/rfluxmtx.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/parameters/rmtxop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/parameters/rmtxop.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/parameters/rpict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/parameters/rpict.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/parameters/rtrace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/parameters/rtrace.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/parameters/vwrays.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/parameters/vwrays.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/parameters/xform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/parameters/xform.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/pattern/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/pattern/__init__.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/pattern/brightdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/pattern/brightdata.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/pattern/brightfunc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/pattern/brightfunc.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/pattern/brighttext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/pattern/brighttext.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/pattern/colordata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/pattern/colordata.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/pattern/colorfunc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/pattern/colorfunc.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/pattern/colorpict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/pattern/colorpict.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/pattern/colortext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/pattern/colortext.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/pattern/patternbase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/pattern/patternbase.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/primitive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/primitive.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/properties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/properties.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/radfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/radfile.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/radparser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/radparser.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/recipe/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/recipe/__init__.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/recipe/_gridbasedbase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/recipe/_gridbasedbase.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/recipe/_imagebasedbase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/recipe/_imagebasedbase.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/recipe/_recipebase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/recipe/_recipebase.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/recipe/annual/__init__.py: -------------------------------------------------------------------------------- 1 | """Radiance annual daylight recipes.""" 2 | -------------------------------------------------------------------------------- /honeybee_plus/radiance/recipe/annual/gridbased.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/recipe/annual/gridbased.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/recipe/daylightcoeff/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/recipe/daylightcoeff/__init__.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/recipe/daylightcoeff/gridbased.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/recipe/daylightcoeff/gridbased.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/recipe/daylightcoeff/imagebased.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/recipe/daylightcoeff/imagebased.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/recipe/daylightfactor/__init__.py: -------------------------------------------------------------------------------- 1 | """Daylight factor recipes.""" 2 | -------------------------------------------------------------------------------- /honeybee_plus/radiance/recipe/daylightfactor/gridbased.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/recipe/daylightfactor/gridbased.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/recipe/directreflection/__init__.py: -------------------------------------------------------------------------------- 1 | """Recipes for direct reflection modeling.""" 2 | -------------------------------------------------------------------------------- /honeybee_plus/radiance/recipe/directreflection/gridbased.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/recipe/directreflection/gridbased.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/recipe/fivephase/__init__.py: -------------------------------------------------------------------------------- 1 | """Radiance five-phase recipes.""" 2 | -------------------------------------------------------------------------------- /honeybee_plus/radiance/recipe/fivephase/gridbased.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/recipe/fivephase/gridbased.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/recipe/id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/recipe/id.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/recipe/parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/recipe/parameters.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/recipe/pointintime/__init__.py: -------------------------------------------------------------------------------- 1 | """Point-in-time recipes.""" 2 | -------------------------------------------------------------------------------- /honeybee_plus/radiance/recipe/pointintime/gridbased.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/recipe/pointintime/gridbased.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/recipe/pointintime/imagebased.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/recipe/pointintime/imagebased.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/recipe/radiation/__init__.py: -------------------------------------------------------------------------------- 1 | """Annual radiation recipes.""" 2 | -------------------------------------------------------------------------------- /honeybee_plus/radiance/recipe/radiation/gridbased.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/recipe/radiation/gridbased.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/recipe/recipedcutil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/recipe/recipedcutil.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/recipe/recipeutil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/recipe/recipeutil.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/recipe/recipexphaseutil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/recipe/recipexphaseutil.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/recipe/solaraccess/__init__.py: -------------------------------------------------------------------------------- 1 | """Point-in-time recipes.""" 2 | -------------------------------------------------------------------------------- /honeybee_plus/radiance/recipe/solaraccess/gridbased.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/recipe/solaraccess/gridbased.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/recipe/threephase/__init__.py: -------------------------------------------------------------------------------- 1 | """Radiance three-phase recipes.""" 2 | -------------------------------------------------------------------------------- /honeybee_plus/radiance/recipe/threephase/gridbased.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/recipe/threephase/gridbased.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/resultcollection/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/resultcollection/__init__.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/resultcollection/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/resultcollection/database.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/resultcollection/imagecollection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/resultcollection/imagecollection.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/resultcollection/pointintime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/resultcollection/pointintime.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/resultcollection/resultgrid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/resultcollection/resultgrid.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/resultcollection/timeseries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/resultcollection/timeseries.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/scene.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/scene.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/sky/__init__.py: -------------------------------------------------------------------------------- 1 | """Honeybee skies.""" 2 | -------------------------------------------------------------------------------- /honeybee_plus/radiance/sky/_pointintimesky.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/sky/_pointintimesky.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/sky/_skyBase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/sky/_skyBase.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/sky/analemma.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/sky/analemma.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/sky/certainIlluminance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/sky/certainIlluminance.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/sky/cie.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/sky/cie.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/sky/climatebased.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/sky/climatebased.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/sky/gendaylit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/sky/gendaylit.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/sky/skymatrix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/sky/skymatrix.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/sky/skyvector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/sky/skyvector.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/sky/sunmatrix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/sky/sunmatrix.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/staticscene.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/staticscene.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/texture/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/texture/__init__.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/texture/texdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/texture/texdata.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/texture/texfunc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/texture/texfunc.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/texture/texturebase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/texture/texturebase.py -------------------------------------------------------------------------------- /honeybee_plus/radiance/view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/radiance/view.py -------------------------------------------------------------------------------- /honeybee_plus/room.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/room.py -------------------------------------------------------------------------------- /honeybee_plus/schedule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/schedule.py -------------------------------------------------------------------------------- /honeybee_plus/server/__init__.py: -------------------------------------------------------------------------------- 1 | """Honeybee server libraries.""" 2 | -------------------------------------------------------------------------------- /honeybee_plus/server/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/server/client.py -------------------------------------------------------------------------------- /honeybee_plus/server/mpupload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/server/mpupload.py -------------------------------------------------------------------------------- /honeybee_plus/surfaceproperties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/surfaceproperties.py -------------------------------------------------------------------------------- /honeybee_plus/surfacetype.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/surfacetype.py -------------------------------------------------------------------------------- /honeybee_plus/utilcol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/utilcol.py -------------------------------------------------------------------------------- /honeybee_plus/vectormath/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /honeybee_plus/vectormath/euclid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/vectormath/euclid.py -------------------------------------------------------------------------------- /honeybee_plus/windowgroup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/honeybee_plus/windowgroup.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | lbt-ladybug==0.25.78 2 | -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [bdist_wheel] 2 | universal = 1 3 | 4 | [metadata] 5 | license_file = LICENSE 6 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/assets/b00.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/tests/assets/b00.xml -------------------------------------------------------------------------------- /tests/assets/clear.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/tests/assets/clear.xml -------------------------------------------------------------------------------- /tests/assets/diffuse50.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/tests/assets/diffuse50.xml -------------------------------------------------------------------------------- /tests/assets/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/tests/assets/readme.md -------------------------------------------------------------------------------- /tests/assets/sample.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/tests/assets/sample.hdr -------------------------------------------------------------------------------- /tests/dev_tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/tests/dev_tests/README.md -------------------------------------------------------------------------------- /tests/dev_tests/materials_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/tests/dev_tests/materials_test.py -------------------------------------------------------------------------------- /tests/radiance_command_epw2wea_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/tests/radiance_command_epw2wea_test.py -------------------------------------------------------------------------------- /tests/radiance_command_falsecolor_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/tests/radiance_command_falsecolor_test.py -------------------------------------------------------------------------------- /tests/radiance_command_genBSDF_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/tests/radiance_command_genBSDF_test.py -------------------------------------------------------------------------------- /tests/radiance_command_gendaylit_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/tests/radiance_command_gendaylit_test.py -------------------------------------------------------------------------------- /tests/radiance_command_gensky_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/tests/radiance_command_gensky_test.py -------------------------------------------------------------------------------- /tests/radiance_command_getinfo_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/tests/radiance_command_getinfo_test.py -------------------------------------------------------------------------------- /tests/radiance_command_oconv_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/tests/radiance_command_oconv_test.py -------------------------------------------------------------------------------- /tests/radiance_command_raBmp_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/tests/radiance_command_raBmp_test.py -------------------------------------------------------------------------------- /tests/radiance_command_raTiff_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/tests/radiance_command_raTiff_test.py -------------------------------------------------------------------------------- /tests/radiance_command_rcollate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/tests/radiance_command_rcollate.py -------------------------------------------------------------------------------- /tests/radiance_command_xform_test.py: -------------------------------------------------------------------------------- 1 | # coding=utf-8 2 | -------------------------------------------------------------------------------- /tests/radiance_datatype_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/tests/radiance_datatype_test.py -------------------------------------------------------------------------------- /tests/radiance_geometry_sphere_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/tests/radiance_geometry_sphere_test.py -------------------------------------------------------------------------------- /tests/radiance_material_bsdf_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/tests/radiance_material_bsdf_test.py -------------------------------------------------------------------------------- /tests/radiance_material_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/tests/radiance_material_test.py -------------------------------------------------------------------------------- /tests/radiance_material_trans_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/tests/radiance_material_trans_test.py -------------------------------------------------------------------------------- /tests/radiance_parameters_advancedparameterbase_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/tests/radiance_parameters_advancedparameterbase_test.py -------------------------------------------------------------------------------- /tests/radiance_parameters_parameterbase_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/tests/radiance_parameters_parameterbase_test.py -------------------------------------------------------------------------------- /tests/radiance_recipe_gridbased_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/tests/radiance_recipe_gridbased_test.py -------------------------------------------------------------------------------- /tests/radiance_recipe_solaraccess_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/tests/radiance_recipe_solaraccess_test.py -------------------------------------------------------------------------------- /tests/radiance_sky_sunmtx_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/tests/radiance_sky_sunmtx_test.py -------------------------------------------------------------------------------- /tests/radiance_view_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/tests/radiance_view_test.py -------------------------------------------------------------------------------- /tests/room/epws/USA_AK_Anchorage.Intl.AP.702730_TMY3.epw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/tests/room/epws/USA_AK_Anchorage.Intl.AP.702730_TMY3.epw -------------------------------------------------------------------------------- /tests/room/epws/USA_KY_London-Corbin-Magee.Field.724243_TMY3.epw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/tests/room/epws/USA_KY_London-Corbin-Magee.Field.724243_TMY3.epw -------------------------------------------------------------------------------- /tests/room/epws/USA_MA_Boston-City.WSO_TMY.epw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/tests/room/epws/USA_MA_Boston-City.WSO_TMY.epw -------------------------------------------------------------------------------- /tests/room/epws/USA_NC_Charlotte-Douglas.Intl.AP.723140_TMY3.epw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/tests/room/epws/USA_NC_Charlotte-Douglas.Intl.AP.723140_TMY3.epw -------------------------------------------------------------------------------- /tests/room/epws/USA_OH_Cleveland-Burke.Lakefront.AP.725245_TMY3.epw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/tests/room/epws/USA_OH_Cleveland-Burke.Lakefront.AP.725245_TMY3.epw -------------------------------------------------------------------------------- /tests/room/facade_points.pts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/tests/room/facade_points.pts -------------------------------------------------------------------------------- /tests/room/glazing.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/tests/room/glazing.rad -------------------------------------------------------------------------------- /tests/room/indoor_points.pts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/tests/room/indoor_points.pts -------------------------------------------------------------------------------- /tests/room/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/tests/room/readme.md -------------------------------------------------------------------------------- /tests/room/room.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/tests/room/room.mat -------------------------------------------------------------------------------- /tests/room/room.oct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/tests/room/room.oct -------------------------------------------------------------------------------- /tests/room/room.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/tests/room/room.rad -------------------------------------------------------------------------------- /tests/room/test.epw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/tests/room/test.epw -------------------------------------------------------------------------------- /tests/room/testroom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/tests/room/testroom.png -------------------------------------------------------------------------------- /tests/room/testrun/readme.md: -------------------------------------------------------------------------------- 1 | ## Keep this folder clean! -------------------------------------------------------------------------------- /tests/room/uniform.sky: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/tests/room/uniform.sky -------------------------------------------------------------------------------- /tests/room/viewExtNorthEast.vf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/tests/room/viewExtNorthEast.vf -------------------------------------------------------------------------------- /tests/room/viewSouth1.vf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/tests/room/viewSouth1.vf -------------------------------------------------------------------------------- /tests/room/xmls/ExtVenetianBlind_17tilt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/tests/room/xmls/ExtVenetianBlind_17tilt.xml -------------------------------------------------------------------------------- /tests/room/xmls/clear.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/tests/room/xmls/clear.xml -------------------------------------------------------------------------------- /tests/room/xmls/clear_t4_4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/tests/room/xmls/clear_t4_4.xml -------------------------------------------------------------------------------- /tests/room/xmls/clear_t4_6.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/tests/room/xmls/clear_t4_6.xml -------------------------------------------------------------------------------- /tests/room/xmls/diffuse50.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/tests/room/xmls/diffuse50.xml -------------------------------------------------------------------------------- /tests/room2/geometry.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/tests/room2/geometry.rad -------------------------------------------------------------------------------- /tests/room2/glazingEast.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/tests/room2/glazingEast.rad -------------------------------------------------------------------------------- /tests/room2/glazingSkylight.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/tests/room2/glazingSkylight.rad -------------------------------------------------------------------------------- /tests/room2/glazingSouth.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/tests/room2/glazingSouth.rad -------------------------------------------------------------------------------- /tests/room2/materials.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/tests/room2/materials.rad -------------------------------------------------------------------------------- /tests/room2/points.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/tests/room2/points.txt -------------------------------------------------------------------------------- /tests/room2/views/external.vf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/tests/room2/views/external.vf -------------------------------------------------------------------------------- /tests/room2/views/inwards.vf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/tests/room2/views/inwards.vf -------------------------------------------------------------------------------- /tests/room2/views/south.vf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/tests/room2/views/south.vf -------------------------------------------------------------------------------- /tests/room2/views/southEast.vf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/tests/room2/views/southEast.vf -------------------------------------------------------------------------------- /tests/room2/views/southEastUp.vf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/tests/room2/views/southEastUp.vf -------------------------------------------------------------------------------- /tests/room2/xmls/ExtVenetianBlind_17tilt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/tests/room2/xmls/ExtVenetianBlind_17tilt.xml -------------------------------------------------------------------------------- /tests/room2/xmls/clear.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/tests/room2/xmls/clear.xml -------------------------------------------------------------------------------- /tests/room2/xmls/clear_t4_4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/tests/room2/xmls/clear_t4_4.xml -------------------------------------------------------------------------------- /tests/room2/xmls/clear_t4_6.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/tests/room2/xmls/clear_t4_6.xml -------------------------------------------------------------------------------- /tests/room2/xmls/diffuse50.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/tests/room2/xmls/diffuse50.xml -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ladybug-tools/honeybee/HEAD/tox.ini --------------------------------------------------------------------------------