First time here? Check our help page!
5

Use 1-minute interval weather data in EnergyPlus

The EPW file is hourly data. Is there a way to use 1-minuge interval weather data in EnergyPlus?

Yixing Chen's avatar
921
Yixing Chen
asked 2015-10-18 10:33:12 -0500
__AmirRoth__'s avatar
4.4k
__AmirRoth__
updated 2020-01-20 13:37:34 -0500
edit flag offensive 0 remove flag close merge delete

Comments

add a comment see more comments

2 Answers

4

Yes. Most epw files are hourly, but the format can be used with shorter intervals. If you have a one-minute epw file EneryPlus can use it. You need to use the same interval for the simulation timesteps.

Archmage's avatar
7.2k
Archmage
answered 2015-10-19 12:43:39 -0500
edit flag offensive 0 remove flag delete link

Comments

add a comment see more comments
3

I have one month 1-minute interval weather data. I tried to insert those data into the existing EPW file. And the simulation failed.

I checked the EPW format documentation. To do the 1-minute interval weather data, we need to change the row 8 (DATA PERIODS, N2 to 60.)

image description

That means we need to have the same interval across the EPW file.

And it also required the weather data interval to be the same as the time step.

        if ( NumIntervalsPerHour != 1 ) {
            if ( NumIntervalsPerHour != NumOfTimeStepInHour ) {
                ShowSevereError( RoutineName + "Number of intervals per hour on Weather file does not match specified number of Time Steps Per Hour" );
                ErrorsFound = true;
            }
        }
Yixing Chen's avatar
921
Yixing Chen
answered 2015-10-20 13:07:28 -0500, updated 2015-10-20 13:19:25 -0500
edit flag offensive 0 remove flag delete link

Comments

add a comment see more comments