Retrieving incorrect information from json files

Hi @mostapha , and @chriswmackey,

I am trying to extract some basic information from the “honeybee_energy.properties.room module” such as progtram type and conditioning status of the rooms. While in the json file there is a specific program type to the room, but using the module it retreives as plenum zones for all rooms. Similar issue for conditioning status where it retreives all zones as ‘False’, and its not even stored in the json file, while I have set condition/uncondition statu inside LBT workflow and exported the model as hbjson file.

Code:

Json file:
image

What I get in the dataframe:
image

Thanks,
-AT

Your code is creating a new instance of the RoomEnergyProperties object. You should query for the existing one. Try this instead:

room.properties.energy.is_conditioned
2 Likes