`nest` deprecated
Absolutely love this tutorial, thanks for connecting the dots on D3's data structures and Vue's reactivity!
One thing I noticed while working through was that the nest function has been deprecated in favor of group and rollup. I was able to arrive at the same result with some changes in the Chart component:
// replace this:
const nestedTweets = d3
.nest()
.key(d => d.user)
.entries(this.tweetData);
// with this:
const nestedTweets = d3.group(this.tweetData, d => d.user)
// replace this:
const packableTweets = { id: 'All Tweets', values: nestedTweets }
return d3
.hierarchy(packableTweets, d => d.values)
.sum(d =>
d.retweets ? d.retweets.length + d.favorites.length + 1 : 1
)
// with this:
return d3
.hierarchy(nestedTweets)
.sum(d =>
d.retweets ? d.retweets.length + d.favorites.length + 1 : 1
)
Hi, This is caused by the EVSE slowly increasing the charge current, and the EV usually waiting 10-40 seconds before actually drawing current. I think the easiest solution would be to add a delay of let's say 60 seconds before increasing the charge current. This way the EV can start drawing current, at the lowest setting (MIN) and this high initial current draw will not occur.
With the git version you could enable automatic StartCurrent detection - this will charge the first 40secs at 6 A
Where can find firnware with fixed initial current issue?
Where can find firnware with fixed initial current issue?
The fork "kletteroli" has a fix. It is working for my Leaf/E-NV200.
Is this still relevant in v3.6.0?
Yes. I think it's good to re-introduce this in our current version. So that it starts charging at 6A for 40s (in Solar mode). And then starts increasing the charge current.
Here is a test firmware which will start charging at 6A (or MinCurrent) for 40 seconds, and then starts increasing the charge current. firmware.zip
This has been implemented in v3.6.2 Closing this now.