Skip to content

Commit

Permalink
Switch default ts decimals back to 3.
Browse files Browse the repository at this point in the history
  • Loading branch information
joseph-robertson committed Jan 26, 2023
1 parent ae74eab commit 6942c8b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion buildstockbatch/workflow_generator/residential_hpxml.py
Expand Up @@ -342,7 +342,7 @@ def create_osw(self, sim_id, building_id, upgrade_idx):
sim_out_rep_args['include_timeseries_unmet_hours'] = False

if 'timeseries_num_decimal_places' in sim_out_rep_args_avail:
sim_out_rep_args['timeseries_num_decimal_places'] = 5
sim_out_rep_args['timeseries_num_decimal_places'] = 3

sim_out_rep_args.update(workflow_args['simulation_output_report'])

Expand Down
Expand Up @@ -393,7 +393,7 @@ def test_residential_hpxml(mocker):
assert simulation_output_step['arguments']['include_timeseries_airflows'] is False
assert simulation_output_step['arguments']['include_timeseries_weather'] is False
assert simulation_output_step['arguments']['timeseries_timestamp_convention'] == 'end'
# assert simulation_output_step['arguments']['timeseries_num_decimal_places'] == 5
# assert simulation_output_step['arguments']['timeseries_num_decimal_places'] == 3
assert simulation_output_step['arguments']['add_timeseries_dst_column'] is True
assert simulation_output_step['arguments']['add_timeseries_utc_column'] is True

Expand Down

0 comments on commit 6942c8b

Please sign in to comment.