4

Getting Eppy Results

Hi,

I'm working with EnergyPlus and Eppy for a project at university. I've got an example file to run within spyder, although I don't get any results. Is there a way to print the results?

Thanks Ben Sykes

BenGsykes's avatar
61
BenGsykes
asked 2018-02-15 11:41:59 -0500
edit flag offensive 0 remove flag close merge delete

Comments

Define results? Do you want to inspect the IDF file after modification? Or are you talking about the simulation results?

Julien Marrec's avatar Julien Marrec (2018-02-16 02:30:38 -0500) edit

Sorry Julien, I mean the simulation results. The file seems to run, but I get nothing in the terminal or the console. Sorry for the confusion, still learning the system. Thanks Ben

BenGsykes's avatar BenGsykes (2018-02-16 04:03:28 -0500) edit

Normally I use esoreader to parse the output while staying in the python ecosystem

Jamie Bull's avatar Jamie Bull (2018-02-17 09:42:18 -0500) edit
add a comment see more comments

1 Answer

3

As far as I know Eppy doesn't include any results viewing capability. Check the run folder, you should have the HTML, SQL (if requested), etc. You can query these using python but you'll need to write your own code.

You can also look at the HTML in your browser, and you could view the SQL file in a third party tool such as DView, which comes with OpenStudio or in standalone version here

Julien Marrec's avatar
29.7k
Julien Marrec
answered 2018-02-16 09:05:54 -0500, updated 2018-02-16 09:06:33 -0500
edit flag offensive 0 remove flag delete link

Comments

1

Here's the documentation for viewing outputs: https://eppy.readthedocs.io/en/latest...

MatthewSteen's avatar MatthewSteen (2018-02-16 10:04:57 -0500) edit

Is there a way to change the name of the output files when running energyplus simulation use eppy? The default name is eplusout, it will be great if another name can be assigned. Thanks

Amy Lee's avatar Amy Lee (2021-06-28 12:13:45 -0500) edit

@Amy Lee, read the docs: https://eppy.readthedocs.io/en/latest... or just do help(idf.run) Pass output_prefix, eg idf.run(output_prefix='myfile')

Julien Marrec's avatar Julien Marrec (2021-06-30 04:23:15 -0500) edit

Thank you :)

Amy Lee's avatar Amy Lee (2021-06-30 10:31:28 -0500) edit
add a comment see more comments