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)