profile formula being altered when importing system profile
Posted: Tue Jan 18, 2011 12:03 pm
I've tried to add a system profile manually by adding the profile to the appropriate .pdb and .pro files. However when I then import these profiles from the system folder to a project, I find a slight difference.
the formula I'd like to use: controller is on if room temp is less than 20C and CO2 concentration is greater than 450ppm
manually added system profile:
PERCENT,DAY_3605,DAY HEATING
(int(ta<20) & (int(co2)>450), 00.00,
(int(ta<20) & (int(co2)>450), 24.00,
the formula as imported into a project:
PERCENT,DAY_3605,DAY HEATING,0,0,
0.01*((int(int(ta))<20) & (int(int(co2))>450)), 0.00,
0.01*((int(int(ta))<20) & (int(int(co2))>450)), 24.00,
As you can see there is an additional '0.01*' added before the formula, - any thoughts on why this might be?
Thanks
Tom
the formula I'd like to use: controller is on if room temp is less than 20C and CO2 concentration is greater than 450ppm
manually added system profile:
PERCENT,DAY_3605,DAY HEATING
(int(ta<20) & (int(co2)>450), 00.00,
(int(ta<20) & (int(co2)>450), 24.00,
the formula as imported into a project:
PERCENT,DAY_3605,DAY HEATING,0,0,
0.01*((int(int(ta))<20) & (int(int(co2))>450)), 0.00,
0.01*((int(int(ta))<20) & (int(int(co2))>450)), 24.00,
As you can see there is an additional '0.01*' added before the formula, - any thoughts on why this might be?
Thanks
Tom