Issue running energyplus using eppy idf.run()

I'm having a problem running the following chunk of code in Jupyter Notebook:

i=[0,1,2,3]
from eppy.runner import run_functions
for i in i:
    OA.Economizer_Control_Type = ECT[i]
    idf1.saveas('C:/Users/mdahdolan/Dropbox/Work and Studies/Economizer 
    Study/Python/1A_Small_Office.idf')
    print(OA.Economizer_Control_Type)
idf1.run(verbose='v')

and I'm getting this error:

[1]: https://i.stack.imgur.com/bEI6B.jpg

Upvotes: 0

Views: 290

Answers (1)

developer_hatch
developer_hatch

Reputation: 16214

You have issues with the path in the function saveas(), check that the route is available, exists and you can reach it without privileges ;)

Upvotes: 0

Related Questions