Skip to content

Commit

Permalink
fix(receiver info): set automated path for matrices to False
Browse files Browse the repository at this point in the history
  • Loading branch information
mostaphaRoudsari committed Feb 13, 2022
1 parent 6776c59 commit 8baf896
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions honeybee_radiance_folder/folder.py
Original file line number Diff line number Diff line change
Expand Up @@ -505,7 +505,7 @@ def aperture_groups_states(self, full=False, interior=False):
apt_group_folder, self._config['APERTURE-GROUP']['states'])
return parse_states(states_file)

def combined_receivers(self, folder='receivers', auto_mtx_path=True):
def combined_receivers(self, folder='receivers', auto_mtx_path=False):
"""Write combined receiver files to folder.
This function writes a combined receiver file of the aperture groups for all
Expand Down Expand Up @@ -560,7 +560,7 @@ def combined_receivers(self, folder='receivers', auto_mtx_path=True):
}
)

receivers_info_file = os.path.join(rec_folder, 'receivers_info.json')
receivers_info_file = os.path.join(rec_folder, 'receivers.json')

with open(receivers_info_file, 'w') as outf:
outf.write(json.dumps(receivers_info))
Expand Down

0 comments on commit 8baf896

Please sign in to comment.