First time here? Check out the Help page!
1 | initial version |
If I was on a linux/mac machine I would use bash:
From command line:
for f in *idf; do runenergyplus $f WFILE; done
Where WFILE is the path to your weather file
You can put this into a script if you want.
This will work on windows too but you will have to install cygwin first.
2 | No.2 Revision |
If I was on a linux/mac machine I would use bash:
From command line:
for f in *idf; do runenergyplus $f WFILE; done
Where WFILE is the path to your weather file
If you want to run on all IDFs and all EPWs
for f in *idf; for w in *epw; do runenergyplus $f $w; done
You can put this into a script if you want.
This will work on windows too but you will have to install cygwin first.