nikhilgupta10 / GridLAB-D

Other
1 stars 0 forks source link

#772 multirecorder is sensitive to whitespace, #2509

Closed nikhilgupta10 closed 7 years ago

nikhilgupta10 commented 7 years ago

when I declare:

object multi_recorder{

name MeterCorder;
property meterTS:measured_power, meter1:measured_current_A;
file cable_test_output.csv;
interval 3600;
limit 1440;

}

I get:
ERROR [2014-01-01 00:00:00 GMT] : multirecorder: unable to find object ' meter1'
ERROR [2014-01-01 00:00:00 GMT] : recorder 8 'meterTS:measured_power, meter1:measured_current_A' contains a property reference that was not found

Without a whitespace it works:

object multi_recorder{

name MeterCorder;
property meterTS:measured_power,meter1:measured_current_A;
file cable_test_output.csv;
interval 3600;
limit 1440;

}

This behaviour is unlike the recorder class, so I consider it a bug.

,

nikhilgupta10 commented 7 years ago

nikhilgupta10 imported these comments from Sourceforge: "jcfuller": * status changed from new to closed

CLOSED due to repeated ticket (see ticket 702).

,

"dchassin":- Milestone: Unscheduled --> Knothole Interim ,