Using Eppy to export IDF objects
I am trying to pre-process an IDF file (exported from DesignBuilder or OpenStudio) to use it with jEPlus. Thanks to the help I received on this forum I have managed to replace selected parameters with jEPlus variables, which is great.
My next step is to 'assemble' an IDF file, by:
- extracting objects from an IDF files
- saving them as a separate IDF files (or INP input file) to be subsequently called by EP-macro, within jEPlus.
For instance, I would like to use the geometry built with DesignBuilder - by extracting idf.idfobjects['BUILDINGSURFACE:DETAILED']
- and copy this in a new file where all other objects are called through EP-macro (i.e. schedules, materials, output variables etc).
Also, could these objets be exported in a different format, (i.e. CSV) in order to visualise them?
I have tried to use the commands .saveas()
and .to_csv
in eppy but neither of those seem to work.
Comments