Honeybee Radiance folder is a Python library to read, write and validate Radiance folder structure.
Project description
honeybee-radiance-folder
Honeybee Radiance Folder is a Python library to read, write and validate the Radiance folder structure.
Installation
pip install -U honeybee-radiance-folder
API Documentation
Usage
# create a Radiance Model folder
import os
from honeybee_radiance_folder import ModelFolder
rf = 'c:/ladybug/sample_folder'
folder = ModelFolder(rf)
folder.write(overwrite=True)
# check the folders and files created in model folder
for f in os.listdir(folder.model_folder(full=True)):
print(f)
aperture
folder.cfg
grid
scene
# load a Radiance folder
# in this case we are loading the folder from sample folder in radiance folder repository
# you can download it from here
# https://github.com/ladybug-tools/radiance-folder-structure/tree/master/project_folder
from honeybee_radiance_folder import ModelFolder
radiance_folder = r'./tests/assets/project_folder'
folder = ModelFolder(radiance_folder)
# get input files for scene
for f in folder.scene_files(black_out=False, rel_path=True):
print(f)
model/scene/context.mat
model/scene/context.rad
model/scene/partition.mat
model/scene/partition.rad
model/scene/partition_glass.mat
model/scene/partition_glass.rad
model/scene/room_envelope.mat
model/scene/room_envelope.rad
# and apertures
for f in folder.aperture_files(black_out=False, rel_path=True):
print(f)
model\aperture\aperture.mat
model\aperture\aperture.rad
# and finally get aperture groups - south window in this case
# and check each state
for count, ap in enumerate(folder.aperture_groups(interior=False)):
print('Aperture group %d: %s' % (count + 1, ap.identifier))
for state in ap.states:
print('- %s: %s' % (state.identifier, state.default))
Aperture group 1: south_window
- 0_clear: south_window..default..000.rad
- 1_diffuse: south_window..default..001.rad
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Close
Hashes for honeybee-radiance-folder-2.11.11.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | ac928e06f0e6e9f26f6722b870c32a0061d90d6542a81d63da3f6583d9ee82e6 |
|
MD5 | 4c7e1af575fa407453b11ab9839a590a |
|
BLAKE2b-256 | c1726cbd4abfd49f3bd032696a4e1a27a944d9586487f016c6fe8167b9bb7a18 |
Close
Hashes for honeybee_radiance_folder-2.11.11-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | ffa3c86393db81b84f1dc50810f4a6ba7a32cad219255e2e0b9c3849935f18e0 |
|
MD5 | d9acfb7ba4dc3d6360c5825dece3c7fd |
|
BLAKE2b-256 | acbf2b602bc53cf39a94cceca110a2074bb6a917e0ad753dadb6aabe63c34e1b |