Question-and-Answer Resource for the Building Energy Modeling Community
Get started with the Help page
Ask Your Question
1

Convert Joule to Wh, when 'Reporting Frequency' is different from 'Hourly'

asked 2020-09-18 18:05:41 -0500

rainbow's avatar

updated 2020-09-20 09:00:01 -0500

I'm running some simulations by asking EnergyPlus (through the IDF) to output Output:Meter,Electricity:HVAC (an output meter which measures the electric energy consumption in Joule).

If I choose an 'hourly' reporting frequency, like this:

Output:Meter,Electricity:HVAC,hourly; !- [J]

I guess that I can obtain Wh from J in this way:

Wh = J / 3600 s,

E.g.: 4 J ==> 0.11111 Wh

But, if I choose a reporting frequency equals to 'timestep', like this:

Output:Meter,Electricity:HVAC,timestep; !- [J]

where 'timestep' = 4 (so there are 4 timesteps per hour, hence I have 15-minutes timesteps):
how can I convert that value of energy measured in Joule (but "sampled" every 15-minutes) to a value measured in Wh?

Is it sufficient to divide it by a factor of 3600, and then divide it by 4 (n°timesteps per hour), to finally obtain an energy value expressed in Wh?

edit retag flag offensive close merge delete

1 Answer

Sort by » oldest newest most voted
3

answered 2020-09-19 17:07:56 -0500

Your equation converting $J$ to $Wh$ is correct for the hourly output from EnergyPlus, which could be rewritten as

$Wh_{hourly} = J_{hourly} * \frac{1 hr}{3600 s}$

If you compare the timestep output to the hourly output, you will see that EnergyPlus is already accounting for less energy consumed each timestep. For example, if the hourly HVAC electricity use was $400 J$, using 4 timesteps per hour would give a timestep output of $100 J$ (assuming constant HVAC consumption). Because of this, you should use the same equation above for converting the $J$ timestep output from EnergyPlus into $Wh$.

$Wh_{timestep} = J_{timestep}* \frac{1 hr}{3600 s}$

edit flag offensive delete link more

Comments

Ok, thanks for your clarity!

rainbow's avatar rainbow  ( 2020-09-21 02:31:51 -0500 )edit

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Careers

Question Tools

1 follower

Stats

Asked: 2020-09-18 18:05:41 -0500

Seen: 627 times

Last updated: Sep 19 '20