Question-and-Answer Resource for the Building Energy Modeling Community
Get started with the Help page
Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

Hi! Can you share the Python script to see the problem?

You need to add two entries in the api.runtime.run_energyplus, the first one is an state that you need to create as:

state = api.state_manager.new_state()

And the second one is a list with five elements. Two of them are always the same ('d' and 'w') and the other three are the paths into your output directory, epw file and IDF/epjson file:

run_energyplus( state, ‘-d’, ‘/path/to/output/directory’, ‘-w’, ‘/path/to/weather.epw’, ‘/path/to/input.idf’ ] )

I hope that this help you!