Page 1 of 1

Mixed smelting (4 products, fully beaconed)

Posted: Sat Jul 29, 2017 8:01 am
by teratronum
I have designed mixed smelting facility that is tileable, and can safely smelt steel and stone bricks without getting stuck.
img1.png
img1.png (903.73 KiB) Viewed 5212 times
The idea is to use stack inserters with overriden stack size. Each inserter is connected to its own chest (green wire) and is disabled unless there are enough items in a chest for one full stack. Iron plate inserter have stack size 10, stone inserter - stack size 12, and iron/copper ore inserters default sizes, as there is no need to limit them.
img2.png
img2.png (257.15 KiB) Viewed 5212 times
img3.png
img3.png (201.54 KiB) Viewed 5212 times
To control smelting all inserters are connected with red wire to a small control unit.
img5.png
img5.png (175.67 KiB) Viewed 5212 times
img4.png
img4.png (129.82 KiB) Viewed 5212 times
img7.png
img7.png (238.27 KiB) Viewed 5212 times
It takes 1 on ore signal on input and emits -10m signals on all other channels.

Upper there is some messy thing that decides what to smelt based on logistic network contens. Constant combinator on the top is input for desired quantities of each product. It can pobably be made cleaner.
img6.png
img6.png (1.29 MiB) Viewed 5212 times
blueprint

Re: Mixed smelting (4 products, fully beaconed)

Posted: Sat Jul 29, 2017 9:01 am
by DaveMcW
You can make it a lot simpler.
smart-furnace.jpg
smart-furnace.jpg (161.36 KiB) Viewed 5206 times

Re: Mixed smelting (4 products, fully beaconed)

Posted: Sat Jul 29, 2017 10:33 am
by teratronum
This simple setup can jam, as inserter will take less then 1 stack if there are not enough items in the chest.
With one inserter you have to both enable/disable it and set filters, which is not possible without combinators.

Re: Mixed smelting (4 products, fully beaconed)

Posted: Sun Jul 30, 2017 10:12 pm
by The Eriksonn
if you set the filter to nothing it is the same as disabeling it.

Re: Mixed smelting (4 products, fully beaconed)

Posted: Thu Aug 31, 2017 9:33 pm
by MBas
Your setup is not optimal anyway. In case of steel, there is a possibility to get 2 or 4 steels only. In that case, there is no benefit from productiviy modules. You pay for the energy but the purple bar just diminish after switch to another smelting process. I highly recomend you to "open" any change of insert condition after each 10 finished products. 5 is not enough becouse 25 steel plates on input is not multiple of 10.

And why so huge combinator jungle? You can simpy place 4 decider combinators like:

1. copper plate <= everything : copper ore set to 1
2. iron plate <= everything : iron ore set to 1
3. steel <= everything : iron plate set to 1
4. brick <= everything : stone set to 1

where combintors input is your stats of cooper plates, iron plates, steel and bricks. You can send output to one filter inserter and set "set filters". You can also simply fake -10M of any product to combinators input, if you want to ban anything for case you have lower raw resources than 10 in the input chest.

You can also have only two chests (one input, one output) and place one extra filter inserter for iron plates between them (with condition that target chest has less than 100 iron plates). It helps to your logistic network significantly.

Re: Mixed smelting (4 products, fully beaconed)

Posted: Fri Nov 10, 2017 7:12 pm
by IGotBaconSoda
Do you have an updated version of this? Been trying to tackle this problem myself (logic with batch production) with as few combinators as possible.