Smart inserters will take items to fill chest equally and also take from chest equally.
It can be expanded to any number of chests.
Diagram

Example in game


Ehm ... is it me that I don't see any const comb there?siggboy wrote: Edit: Oh I just see in your screenshot that you use the constant + arithmetic setup as well. It's not in your diagram above.
FMTK wrote:Ehm ... is it me that I don't see any const comb there?
Yes, it is youNeotix wrote:My loading station
https://i.gyazo.com/683ce147ef8a1336ae8 ... 1e20ac.png
No, why? The 1-combinator build works fine with the each/every condition.kann_ wrote:The 1 combinator solution need resource specific programming.
I think this "hack" is nice for the 1-combinator solution only if you want to use it for unloading. Otherwise I don't see any reason to do this.There is a third way that combines the benefits of both.
It is similar to the 2 combinator build with two changes:Basically, the +1/-1 operation is there to destroy the balance if all chests have the same item count. In my version the last inserter has this job.
- The last smart inserter is turned always on. (or replaced by fast inserter)
The arithmic combinator with +1 (for loading) or the -1 (for unloading) can be removed.
You don't have to worry that the last chest will have more items, because it is last in the line and resource starved anyway.
I use this build everywhere now.
I disagree.siggboy wrote:There is no 1-combinator solution for balanced unloading (from chest to belt), because you need to subtract 1 before you do the averaging, so the neat trick of combining division and subtraction in the 1-combinator build does not work there.
Yes, in practice that works fine. It avoids the problem that the unloader would lock up when all chests have the same item count.dragontamer5788 wrote:my_box - average > -1
This is easily accomplished with a "divided by negative-boxes" (for example, EACH / -6 in the case of a single-side wagon unloader). Then check if >-1 for each inserter.
The more efficient I get at building, the less I like buffers. Buffers "hide" bottlenecks.siggboy wrote:I think when Neotix posted his setup, his main application was actually a buffer of chests that you inline somewhere in your factory and that will have balanced contents in the chests. That also is the reason why the loaders and unloaders are all in the same wire diagram.
(Not a fan of that sort of thing either, inserting buffers into the production loops is quite some monkey business in my eyes.)