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

Zone Contaminant Source or Sink CO2 Gain seems to be wrong

asked 2017-09-11 01:26:45 -0500

updated 2017-09-11 01:35:33 -0500

In my multizone Energyplus model with AFN I have no gas equipment and the Carbon Dioxide Generation Rate in the people schedule in every zone is set to 0. The only CO2 sources are ZoneContaminantSourceAndSink:Carbondioxide objects.(1 in every zone)

While the output variable values from "Contaminant Source or Sink CO2 Gain Volume Flow Rate" correspond to the input schedule (right y-axis) in the "ZoneContaminantSourceAndSink:Carbondioxide" object, the "Zone Contaminant Source or Sink CO2 Gain" (left y-axis) doesn't correspond to anything. Shouldn't it be the same as the Contaminant Source or Sink CO2 Gain Volume Flow Rate? (Because there are no other sources in the zone)

Is this expected behavior or am I missing something?

image description

image description

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
2

answered 2017-09-11 03:06:14 -0500

Chandan Sharma's avatar

updated 2017-09-11 03:09:34 -0500

Following code snippet shows how these output variables are calculated

    for ( Loop = 1; Loop <= TotCO2Gen; ++Loop ) {
        NZ = ZoneCO2Gen( Loop ).ZonePtr;
        ZoneCO2Gen( Loop ).CO2GainRate = ZoneCO2Gen( Loop ).CO2DesignRate * GetCurrentScheduleValue( ZoneCO2Gen( Loop ).SchedPtr );
        ZnRpt( NZ ).CO2Rate += ZoneCO2Gen( Loop ).CO2GainRate;
    }

where ZnRpt( ).CO2Rate = Zone Contaminant Source or Sink CO2 Gain Volume Flow Rate [m3/s] and ZoneCO2Gen( ).CO2GainRate = Contaminant Source or Sink CO2 Gain Volume Flow Rate [m3/s]

Reporting during warmup convergence for timestep frequency would verify that ZoneCO2Gen( ).CO2GainRate is design generation rate multiplied by schedule value. And ZnRpt( ).CO2Rate is the sum of ZoneCO2Gen( ).CO2GainRate in successive timesteps. Also, above code doesn't take into account inputs from People or GasEquipment objects. So even if CO2 inputs in these objects are changed, it should not make any difference into above output variables.Agree though that documentation for the variables is confusing.

edit flag offensive delete link more

Comments

@Chandan Sharma Thank you for your explanation. I think confusing is an understatement. I'll post a ticket to ask for an adjustment of the manual.

BBel's avatar BBel  ( 2017-09-11 03:24:17 -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: 2017-09-11 01:26:45 -0500

Seen: 234 times

Last updated: Sep 11 '17