Just modifed the Source with 2 lines. The problem (at least for not charging the coils to 100J capacity, was the limited input charge of "0W". this cant work properly, since it seems to not take "0W" as unlimited but rather as "0W". So i modified these lines:
entity.lua
local function make_station
-> energy_source =
{
type = "electric",
buffer_capacity = "100J",
usage_priority = "terciary",
-- Edited by SirWayNe 02.01.2016
input_flow_limit = "150W",
output_flow_limit = "0W"
-- input_flow_limit = "0W",
-- output_flow_limit = "0W"
},
local function make_rail_accumulator
-> energy_source =
{
type = "electric",
buffer_capacity = "100J",
usage_priority = "terciary",
-- Edited by SirWayNe 02.01.2016
input_flow_limit = "150W",
output_flow_limit = "0W"
-- input_flow_limit = "0W",
-- output_flow_limit = "0W"
},
Just testing this right away.