Issue running energyplus using eppy idf.run()

291 views Asked by At

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

1

There are 1 answers

1
developer_hatch On

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