Skip to content

Commit

Permalink
fix(simulation): Remove PROJECT-DATA for compatibility with DOE2.2 47h2
Browse files Browse the repository at this point in the history
  • Loading branch information
chriswmackey committed Jun 12, 2024
1 parent 42b7dc4 commit 44dbc57
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
2 changes: 0 additions & 2 deletions honeybee_doe2/simulation.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,8 +118,6 @@ def to_inp(self):
sp_str.append(header_comment_minor('Compliance Data'))
sp_str.append(header_comment_minor('Site and Building Data'))
sp_str.append(self.site.to_inp())
# add the end tag for the project data
sp_str.append('PROJECT-DATA\n ..\n')
return '\n'.join(sp_str)

def to_dict(self):
Expand Down
1 change: 0 additions & 1 deletion tests/simulation_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,6 @@ def test_simulation_par_to_inp():
assert title in inp_str
assert DEFAULT_RUN_PERIOD in inp_str
assert DEFAULT_SITE_DATA in inp_str
assert inp_str.endswith('PROJECT-DATA\n ..\n')


def test_simulation_par_init():
Expand Down

0 comments on commit 44dbc57

Please sign in to comment.