Closed GoogleCodeExporter closed 9 years ago
Ok. As I understood you want to have the ability to change the usage data that
measureit receive from the Envi.
How should this logical work?
Does measureit increase or reduce every data it receives automatically from an
defined factor per sensor / clamp?
And what happens at you home that you are having "stray magnetic fields" :)
Original comment by lalelu...@gmail.com
on 19 Aug 2013 at 9:26
if value received by enviR <= floor then return 0.
if value received by enviR >= ceil and ceil != -1 then return ceil
new value = value received by enviR*gradient + offset;
if new value <= floor then return 0.
if new value >= ceil and ceil != -1 then return ceil
return new value
Should be applied per clamp then per sensor.
Examples
floor = 100W Ceil = 5000W Offset = -50 Gradient = 1.1
Value sent by enviR = 50W then return 0 as below floor.
Value sent by enviR = 6000W then return 5000 as above ceil
Value sent by enviR = 120 multiplied by 1.1 and subtract 50 return 0 as below
floor
Value sent by enviR = 150 multiplied by 1.1 and subtract 50 return 115
Value sent by enviR = 4900 multiplied by 1.1 and subtract 50 return 5000 as
above Ceil
Value sent by enviR = 2500 multiplied by 1.1 and subtract 50 return 2700
floor = 0W Ceil = -1 Offset = 0 Gradient = 1.0
These are the default values and will not cause the data to change at all.
Stray magnetic fields affect my thirst and make me drink more beers!
Original comment by sireland...@gmail.com
on 21 Aug 2013 at 12:26
After some thought I would be happy if you made this a low priority feature
request :-) I'll do some more investigation and hard code some values into the
grabber myself to see how successful the idea is. Others may want to comment if
they see any value in this idea. It would be an advanced feature used probably
only by me!
Steve
Original comment by sireland...@gmail.com
on 22 Aug 2013 at 4:34
Hi,
I would appreciate such feature as well! In my setups I also can see some
"floor" values in the reading of my transmitter/clamps. The IAMs however are
more accurate.
It would be nice to have such possibility for calibration.
But as Steve said: Only a nice to have...
Cheers,
Norbert
Original comment by ngorza...@googlemail.com
on 22 Aug 2013 at 5:24
[deleted comment]
The floor would definitely be a good feature. But I would definitely "not" want
the 'floor' subtracted from my generation values.
With my 2nd EnviR using COSM via the CurrentCost Bridge, I am able to set rules
in the settings page.
I have a rule that is "if (out && power < 80) power = 0; power *= 1.02;" so if
my generation is <80W then it = 0W and it multiplies my power value by 1.02 and
that keeps things reasonable accurate.
I once did a blog post on the "sleeping" consumption of PV Inverters here >>
http://wotid.com/blog/night-time-sleeping-load-consumption-of-my-grid-connected-
inverters/
Original comment by wot...@gmail.com
on 24 Aug 2013 at 12:15
Original comment by lalelu...@gmail.com
on 19 Apr 2014 at 9:40
Moved to github
https://github.com/lalelunet/measureit/issues/6
Original comment by lalelu...@gmail.com
on 25 Jul 2014 at 8:29
Not sure what to do with this.. :/
Moved to github
https://github.com/lalelunet/measureit/issues/9
Original comment by lalelu...@gmail.com
on 25 Jul 2014 at 9:29
Original issue reported on code.google.com by
sireland...@gmail.com
on 19 Aug 2013 at 4:51