Is it possible to remove the energy plus simulation log while running it from eppy?
I am running large energyplus iterations from python. And I want to remove the simulation logs
Comments
What do you mean by simulation log. Are you referring to the outputs that E+ makes to the console/screen ?
yes the output it makes on the screen as it is simulating the model
there has been a recent pull request that may be your solution. see https://github.com/santoshphilip/eppy... and https://github.com/santoshphilip/eppy... It is now in the develop branch of eppy
Hi,
I'm actually the guy who made that pull request.
If you're talking about some red
EnergyPlus Completed Successfully
messages, it appears that later versions of E+ log them as errors.The solution is to redirect
stderr
tonull
.You can either clone the developer version of eppy and use that, or you can just get the updated
runfunctions.py
file from thedevelop
branch and replace your original file with it. Do not forget to set theverbose
mode tos
after before restarting!I’ll make a new release of eppy that will include this pull request