2

Why do meters for variables in W units get ignored?

In my EnergyPlus model, I have created several Meter:Custum objects to sum several output variables.

Some of them [The ones that are rates and so in W units] return a warning message and the meter is ignored in the output data.

The message:

** Warning ** DetermineMeterIPUnits: Meter units not recognized for IP Units conversion=[W].
   **   ~~~   ** ..on Meter:Custom="TEST6".
   **   ~~~   ** ..requests for IP units from this meter will be ignored.
   ** Warning ** Meter:Custom="TEST6", variable not summed variable Output Variable or Meter Name="PLANT SUPPLY SIDE COOLING DEMAND RATE".
   **   ~~~   ** ...will not be shown with the Meter results; units for meter=W, units for this variable=W.
   ** Warning ** Meter:Custom="TEST6", no items assigned 
   **   ~~~   ** ...will not be shown with the Meter results. This may be caused by a Meter:Custom be assigned to another Meter:Custom.

The custom meter object:

Meter:Custom,
    Test6,                   !- Name
    Generic,                 !- Fuel Type
    *,                        !- Key Name 1
    Plant Supply Side Cooling Demand Rate;  !- Output Variable or Meter Name 1

I have used the following object to set unit conversion:

OutputControl:Table:Style,
    All,                     !- Column Separator
    JtoKWH;                  !- Unit Conversion

I would like to understand I do I get this error and the meters. Why is this? Shall I set a different unit conversion?

Vasco Zeferina's avatar
197
Vasco Zeferina
asked 2020-07-01 14:43:23 -0500
Aaron Boranian's avatar
14.1k
Aaron Boranian
updated 2020-07-01 15:42:06 -0500
edit flag offensive 0 remove flag close merge delete

Comments

Are you trying to convert the ESO/MTR results into IP units? This is an option in EP-Launch or it can be done using EnergyPlus command line options.

Aaron Boranian's avatar Aaron Boranian (2020-07-01 15:46:23 -0500) edit
add a comment see more comments

1 Answer

3

Meters can only be created using "summed" variables (not rate variables)

This warning says it all: Warning ** Meter:Custom="TEST6", variable not summed variable Output Variable or Meter Name="PLANT SUPPLY SIDE COOLING DEMAND RATE".

FYI, I believe documentation and possibly error message will make this more clear in the next release.

Linda

lklawrie's avatar
450
lklawrie
answered 2020-07-02 14:34:23 -0500
edit flag offensive 0 remove flag delete link

Comments

Thanks. It is clear now.

Vasco Zeferina's avatar Vasco Zeferina (2020-07-02 17:20:27 -0500) edit
add a comment see more comments