First time here? Check out the Help page!
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!