First time here? Check our help page!
1

Output Variable associated with ZoneHVAC:Baseboard:Convective:Electric not working

Hi,

I am trying to setup a Baseboard Heater in EnergyPlus using the code as follows:

ZoneHVAC:Baseboard:Convective:Electric,
  Zone A BASEBOARD,  !- Name
  Zone A Heating Availability Sch,  !- Availability Schedule Name
  HeatingDesignCapacity,   !- Heating Design Capacity Method
  5000,                    !- Heating Design Capacity {W}
  ,                        !- Heating Design Capacity Per Floor Area {W/m2}
  ,                        !- Fraction of Autosized Heating Design Capacity
  0.97;                    !- Efficiency

There are many outputs available for this class and I am interested in the output HVAC,Sum,Baseboard Electric Energy [J]. I checked my RDD file and it is available.

But, whenever I try to request this output, I get the following error:

The following Report Variables were requested but not generated -- check.rdd file
**   ~~~   ** Either the IDF did not contain these elements, the variable name is misspelled,

I checked everything but EPlus is still throwing that error. Please help to fix this.

Thank you for your time..

prp92's avatar
125
prp92
asked 2022-09-14 10:52:28 -0500
Julien Marrec's avatar
29.7k
Julien Marrec
updated 2022-09-14 10:57:15 -0500
edit flag offensive 0 remove flag close merge delete

Comments

Can you post the actual IDF snippet for your Output:Variable? I bet that's the issue.

Julien Marrec's avatar Julien Marrec (2022-09-14 10:57:42 -0500) edit

Hi @Julien

My Output code is as follows.

Output:Variable, Zone A, !- Key Value Baseboard Electric Energy, !- Variable Name Timestep; !- Reporting Frequency

prp92's avatar prp92 (2022-09-14 11:03:28 -0500) edit

Yeah so the the Key has to be the object's name, not the Zone it's in.

Julien Marrec's avatar Julien Marrec (2022-09-15 02:16:15 -0500) edit
add a comment see more comments

1 Answer

1

I suggest having Output:VariableDictionary in the IDF format so you can copy from the .RDD to your IDF file without error:

Output:VariableDictionary,
   IDF,                                    !- Key Field
   Unsorted;                               !- Sort Option

cf https://bigladdersoftware.com/epx/doc...

what you're looking for is either general:

Output:Variable,*,Baseboard Electric Energy,hourly;

or keyed:

Output:Variable,Zone A BASEBOARD,Baseboard Electric Energy,hourly;
Julien Marrec's avatar
29.7k
Julien Marrec
answered 2022-09-14 11:02:03 -0500, updated 2022-09-14 11:02:21 -0500
edit flag offensive 0 remove flag delete link

Comments

1

This works. Thank you so much..

prp92's avatar prp92 (2022-09-14 13:30:09 -0500) edit
add a comment see more comments