Tutorial:Circuit network cookbook

From Official Factorio Wiki
Jump to navigation Jump to search

Introduction

WORK IN PROGRESS!!

This page provides examples of simple circuit network designs that others can use, combine and modify. They are designed to be as easy to understand as possible.

Some of these designs are mine and some are based on ones I have seen on the forums or Reddit.

Oil Setups

LgtOilCracking.png

Light Oil Cracking

  • This circuit provides balanced light oil and petroleum gas production by cracking excess light oil into gas.
  • The Small pump is connected to the Storage tank by a Red Wire.
  • The small pump has an enabled condition set to Light Oil > 2000.
HvyOilCracking.png

Heavy Oil Cracking

  • This circuit extends on the previous circuit by adding heavy oil cracking to provide lubricant as well.
  • The Small pump has an enabled condition set to Lubricant > 2000.
BalancedPlasticSulfur.png

Petroleum split evenly between plastic and sulphuric acid

  • This circuit buffers gas in the tank until there is at least 100, then it lets the tank drain until there is less than 50 and the cycle repeats.
  • It has a few elements that work together to do achieve this.
  • Firstly the Small pump is connected to the Wooden chest by a Red wire and the enabled condition on the Small pump is set to Raw wood > 0.
  • Both of the basic inserters are connected to the Storage tank by Red Wires.
  • The enabled condition on the left inserter is Petroleum gas > 100
  • The enabled condition on the right inserter is Petroleum gas < 50.
  • You will need to insert a single "Raw wood" into the chest to make it all work.
  • It is also possible to do this with combinators instead of the inserters, belt and the Wood chest.

Lights

ConditionalLights.png

Conditional Lights

  • In this circuit we connect a series of lights to a Storage Tank.
  • By setting different conditions on each light we can build an indicator strip.
  • The first light is lit when gas > 100.
  • The others light up when gas is greater than 200, 300, 400 & 500 respectively.
ColoredLights.png

Colored Lights

  • To light a lamp with a color rather than white, you need to do two things.
  • 1. Send a colored signal to the lamp
  • 2. Select the "Use colors" checkbox on the lamp.
  • In this case we want to convert a Petroleum gas singal into a pink signal.
  • We can do this with an Arithmetic combinator, setting the input to Petroleum Gas + 0 (the constant 0 not the signal 0) and set the output to the Pink signal (on the bottom row of the last tab of signals.)

Misc

MulitipleChestsAndPoles.png

Multiple Storages

  • If you connect multiple chests to a pole, the pole displays the sum of items in all the chests.
  • This also works with Storage tanks.
  • and roboports
ConstantComb.png

Constant combinator

  • With a constant combinator you can generate any signals you my need.
  • In this example we have generated a signal of 50 Laser turrets and 200 Piercing round magazine.
  • Constant combinators are not of mcuh use on their own but we shall use them later.

Inserters

LimitItemsPlacedIntoAChest.png

Limit items placed into a chest

  • The Basic inserter is connected to the Wooden chest using a Red wire.
  • The inserter's enabled condition is Advanced Circuit < 10.
  • In reality this means the inserter may place more than 10 Advanced circuits in the chest because it could pick up-to 3 at once.
  • This effect can be even greater with Stack inserters because of their large carrying capacity.
  • This technique still gives far greater control than limiting the inventory on the chest.
SmartOutpostUnloader.png

Keeping outpost stocked with specified items

  • This circuit keeps a storage chest at an outpost stocked with customised levels of different items.
  • For example you could keep an outpost stocked with 50 laser turrets and 200 piercing magazine rounds but not have to worry about it being over filled.
  • The storage chest is attached to the input of the Arithmetric combinator (left side in the picture) with a Red wire.
  • Another couple of Red wires join the output of the Arithmetric combinator (right side) to the constant combinator and to the filter stack inserter.
  • The Arithmetric combinator multiples each input value (from the storage chest) by "-1".
  • Finally the filter stack inserter's mode of operation is set to "Set filters".
  • So the input to the filter stack inserter is <Constant combinator> - <Storage chest contents> and the filter is set to filter the item is greatest demand.

Balanced train unloader

Balanced Solar panel / Accumulator Production