Appendix G (LEED Energy) Recipe and Ironbug Integration

Yes, but I didn’t really expose the baseline_watts_per_area property on any LBT Grasshopper components. But you can do it with a little bit of Python inside a GHPython component. Here’s a sample:

from ladybug_rhino.grasshopper import all_required_inputs

if all_required_inputs(ghenv.Component):
    rooms = []
    for room in _rooms:
        room = room.duplicate()
        lighting = room.properties.energy.lighting
        if lighting is not None:
            lighting = lighting.duplicate()
            lighting.identifier = '{}_Ligthing'.format(room.identifier)
            lighting.baseline_watts_per_area = _baseline_lpd
            room.properties.energy.lighting = lighting
        rooms.append(room)

assign_baseline_lpd.gh (56.8 KB)

Hi @chriswmackey
Thank you for your feedback and help.
I noticed that in the HB Lighting component is present the Baseline input.


Does it works with the Appendix G recipe?

Thanks
Michele

Ah, you’re right. I guess I forgot what I had exposed on the Grasshopper component. You are right that it is the same baseline property so, yes, it works with the Appendix G recipe.