nikhilgupta10 / GridLAB-D

Other
1 stars 0 forks source link

#416 Unexpected House behavior with/without appliances, #2170

Closed nikhilgupta10 closed 7 years ago

nikhilgupta10 commented 7 years ago

Hello,

I am trying to model a simple house, which parent is a triplex_meter. A recorder keeps track of the 'measured_power' parameter of the triplex_meter during 24 hours.

When I add implicit_lights to that model, I would expect the measured power to increase. The problem is, the measured power is ~2 times lower when I add lights to the house than when there are no appliances!

clock {
    timezone PST+8PDT;
    starttime '2001-07-02 00:00:00 PDT';
    stoptime '2001-07-04 00:00:00 PDT';
}

module powerflow;
module residential {
    implicit_enduses LIGHTS;
}
module tape;

object triplex_meter {
    name Meter;
    nominal_voltage 120.0;
    phases AS;
}

object house {

    name House;
    parent Meter;   

}

object recorder {

    name MeterCorder;
    parent Meter;
    property measured_power;
    file output.csv;
    interval 3600;
    limit 48;

}

,

nikhilgupta10 commented 7 years ago

nikhilgupta10 imported these comments from Sourceforge: The user dchassin does not exist anymore. Therefore assigning this to afisher1. "mhauer":This is normal. If residential::implicit_enduses is left blank, it is automatically populated with 'ALL'. Setting the implicit enduses to 'lights' only will remove the implicit load for the waterheater, plugs, occupants (just heat), dishwasher, microwave, freezer, refrigerator, range, evcharger, clothes dryer, and clothes washer.

,

"mhauer": * status changed from new to closed