LB Adaptive Comfort - neutral_temp title

Just want to confirm, should the output title of neutral_temp be “Neutral Temperature” instead of “Operative Temperature”? Since Operative Temperature is (Air temperature + MRT)/2 according to py script below.

Please correct me if I’m wrong…

def t_operative(ta, tr):
 """Get operative temperature from air and radiant temperature.

Args:
    ta: Air temperature [C]
    tr: Mean radiant temperature [C]

Return:
    Operative temperature [C]
"""
return (ta + tr) / 2

1 Like

Anyone has thoughts?

Or maybe there can be an extra output for Operative Temperature?