Skip to content

Commit

Permalink
fix(annual-daylight): remove --sun-modifiers option
Browse files Browse the repository at this point in the history
It was an experimental option that I added to honeybee-radiance command but it turned out not to be useful and I removed it since.
  • Loading branch information
mostaphaRoudsari committed Feb 23, 2021
1 parent e70c074 commit 96c8545
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lbt_recipes/annual_daylight/flow/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ def params_folder(self):
return os.path.join(self.execution_folder, self._input_params['params_folder']).replace('\\', '/')

def command(self):
return 'honeybee-radiance sky mtx sky.wea --name sky --north {north} --sky-type {sky_type} --{cumulative} --{sun_up_hours} --{output_type} --sun-modifiers suns.mod --output-format {output_format} --sky-density {sky_density}'.format(north=self.north, sky_type=self.sky_type, cumulative=self.cumulative, sun_up_hours=self.sun_up_hours, output_type=self.output_type, output_format=self.output_format, sky_density=self.sky_density)
return 'honeybee-radiance sky mtx sky.wea --name sky --north {north} --sky-type {sky_type} --{cumulative} --{sun_up_hours} --{output_type} --output-format {output_format} --sky-density {sky_density}'.format(north=self.north, sky_type=self.sky_type, cumulative=self.cumulative, sun_up_hours=self.sun_up_hours, output_type=self.output_type, output_format=self.output_format, sky_density=self.sky_density)

def output(self):
return {
Expand Down Expand Up @@ -524,7 +524,7 @@ def params_folder(self):
return os.path.join(self.execution_folder, self._input_params['params_folder']).replace('\\', '/')

def command(self):
return 'honeybee-radiance sky mtx sky.wea --name sky --north {north} --sky-type {sky_type} --{cumulative} --{sun_up_hours} --{output_type} --sun-modifiers suns.mod --output-format {output_format} --sky-density {sky_density}'.format(north=self.north, sky_type=self.sky_type, cumulative=self.cumulative, sun_up_hours=self.sun_up_hours, output_type=self.output_type, output_format=self.output_format, sky_density=self.sky_density)
return 'honeybee-radiance sky mtx sky.wea --name sky --north {north} --sky-type {sky_type} --{cumulative} --{sun_up_hours} --{output_type} --output-format {output_format} --sky-density {sky_density}'.format(north=self.north, sky_type=self.sky_type, cumulative=self.cumulative, sun_up_hours=self.sun_up_hours, output_type=self.output_type, output_format=self.output_format, sky_density=self.sky_density)

def output(self):
return {
Expand Down

0 comments on commit 96c8545

Please sign in to comment.