Manufacturing (Non-Automotive)AI Implementation & Best Practices
AI layout optimisation for manufacturing plants: from a drawing on the wall to a layout that earns every move
AI layout optimisation for manufacturing plants is the use of machine learning and mathematical search to decide where machines, cells, buffers, storage and aisles sit, and how material moves between them. Models generate and rank candidate arrangements; simulation and encoded safety rules certify them; and people, standards and shutdown windows decide which ones are ever built.

Key takeaways
- Plant layout optimisation is a search problem, not a prediction problem. Its classical formulation — the quadratic assignment problem — is NP-hard, and as the authors of a 2023 deep-reinforcement-learning study on it state plainly, no method is known that solves instances larger than about 30 locations exactly. Anything above that size is a ranked shortlist, never a proven optimum.
- Sort every layout change by reversibility before you sort it by value. Slotting, staging and AMR traffic rules can change in a shift and be undone in a shift; moving a machine waits for a shutdown window; walls, docks and cleanroom grading are a capital project. AI should be allowed to run the first tier continuously, propose the second, and only ever advise on the third.
- The binding constraint is almost never the optimiser. It is the spatial model: a plant's machine-readable geometry drifts away from the floor within months, and once the model is wrong every candidate layout generated from it is confidently wrong too. Track model-to-floor divergence as a first-class KPI or the whole capability rots quietly.
- Hard constraints — egress and aisle clearance, hygienic or ATEX zoning, cleanroom grading, crane envelopes, floor loading — belong in the generator as filters, not in the objective function as penalties. A tool that proposes crossing a high-care boundary once will be switched off permanently, and it will deserve to be.
- The forecast is not the outcome. A layout change is only proved by a post-move measurement against a comparable unchanged area, with disruption, requalification and ramp-back priced in the same figure as the capital cost. Programmes that stop at the business case are the reason plant engineering distrusts the next proposal.
Abbreviations used on this page
- MES
- Manufacturing execution system
- ERP
- Enterprise resource planning
- WMS
- Warehouse management system
- CMMS
- Computerised maintenance management system
- RTLS
- Real-time location system (typically UWB or BLE tags on assets and MHE)
- AGV
- Automated guided vehicle — fixed-path material transport
- AMR
- Autonomous mobile robot — free-path material transport
- MHE
- Material handling equipment (forklifts, tuggers, conveyors, AMRs)
- DES
- Discrete-event simulation
- FLP
- Facility layout problem — the formal problem of placing departments to minimise flow cost
- QAP
- Quadratic assignment problem — the classical mathematical formulation of the FLP
- OEE
- Overall equipment effectiveness (availability × performance × quality)
Free · 8 questions · ~3 minutes
Score your plant on the layout ladder
Eight questions, one at a time, about three minutes. Answer them and we build your personalised layout report — your rung on the ladder, your score on each of the four dimensions, and the specific thing standing between you and the next rung — and send it to your inbox. Your answers double as the scoping note for a first hall.
0 of 8 answered
Pick an option to continue
Report ready
Your personalised layout report is ready
Tell us where to send it. Your rung appears on screen straight away, and the full report — dimension scores, the specific gap holding you at that rung, and a 90-day plan scoped to one hall — arrives in your inbox.
Your result
Your full report is on its way to your inbox.
Stage 1 · Drawn
The layout exists as a drawing rather than a model, material flow is described from memory, and layout decisions are made in a workshop.
Your next moveBuild the two inputs for one hall: a machine-readable as-built geometry, and a from-to material-flow matrix derived from MES and WMS transactions rather than from memory.
Stage 2 · Measured
Material flow is quantified from transactions and telemetry, so layout arguments now carry evidence — but the plant still generates its options by hand.
Your next moveBuild a discrete-event simulation of one hall, calibrate it until it reproduces last quarter's actual throughput, and encode the hard constraints — clearance, egress, zoning, services — as rules the model enforces.
Stage 3 · Simulated
A calibrated model of the plant exists, so candidate layouts are evaluated rather than argued — and the hard constraints are written down as rules.
Your next movePut a candidate generator in front of the simulation — a solver with a learned surrogate to screen arrangements — and make the encoded constraint set a hard filter that runs before any human sees a candidate.
Stage 4 · Optimised
Layout generation is a standing capability: candidates are generated, screened against encoded constraints, certified in simulation, and priced with their disruption.
Your next moveMove value into the reversible layer: put storage assignment, staging, kitting points and AMR traffic rules under a bounded, continuously re-optimised policy, so the layout improves between shutdowns rather than only at them.
Stage 5 · Adaptive
The reversible layer of the layout re-optimises continuously inside a written policy, while physical moves are scheduled from certified evidence.
Your next moveTreat the policy bounds and the spatial model as versioned, reviewed artefacts with owners and audit cadences — and specify mobility into the next capital cycle so more of the plant can move cheaply.
0 / 24
Spatial model fidelity
— / 6
Flow evidence
— / 6
Constraint encoding
— / 6
Move economics
— / 6
Your score maps to a rung on the layout ladder. The dimension breakdown matters more than the total: the lowest dimension is what actually caps the plant, and in layout work it is almost never the one people expect. Your lowest-scoring dimension is —, and that is where the next investment belongs.
Your score maps to a rung on the layout ladder. The dimension breakdown matters more than the total: the lowest dimension is what actually caps the plant, and in layout work it is almost never the one people expect.Your four dimensions score evenly, so there is no single weak link to attack — follow the stage’s next move above rather than picking a dimension.
Want this checked against your actual floor?
We walk one hall with your plant engineering and industrial engineering leads, sample the spatial model against the floor, extract a real from-to matrix from your MES and WMS, and leave you with a costed 90-day plan for your weakest dimension. No obligation, and you keep the plan either way.
How the score maps to a stage
- 0–4 — Stage 1, Drawn. The layout exists as a drawing rather than a model, material flow is described from memory, and layout decisions are made in a workshop.
- 5–10 — Stage 2, Measured. Material flow is quantified from transactions and telemetry, so layout arguments now carry evidence — but the plant still generates its options by hand.
- 11–16 — Stage 3, Simulated. A calibrated model of the plant exists, so candidate layouts are evaluated rather than argued — and the hard constraints are written down as rules.
- 17–21 — Stage 4, Optimised. Layout generation is a standing capability: candidates are generated, screened against encoded constraints, certified in simulation, and priced with their disruption.
- 22–24 — Stage 5, Adaptive. The reversible layer of the layout re-optimises continuously inside a written policy, while physical moves are scheduled from certified evidence.
What AI layout optimisation actually does in a plant
A definition, the three things the software really has to produce, and the path a candidate layout travels from evidence to floor.
AI layout optimisation in a manufacturing plant is the use of machine learning and mathematical search to decide where things go and how material moves between them — which machines sit in which bay, where cells face, how big the buffers are, where staging and kitting happen, which way the aisles run and where the vehicles are allowed to drive. It is a search and simulation problem, not a prediction problem: the model is not forecasting a number, it is proposing arrangements and being told, by a simulator and by a rulebook, which ones are feasible and which are good.
The classical formulation is the facility layout problem, usually written as a quadratic assignment problem (opens in a new tab) — place n departments in n locations so that the sum of flow multiplied by distance is minimised. It is NP-hard, and the practical ceiling is lower than most buyers assume: the authors of a 2023 study applying deep reinforcement learning to it note that, unlike the travelling salesman problem, no method is known that solves instances larger than about 30 locations exactly. Every real plant is larger than that. So the honest output of any layout tool is a ranked shortlist with a stated evaluation, never a proven optimum, and a vendor claiming otherwise is describing something that does not exist.
That constraint shapes everything downstream. Because the search cannot be exhaustive and its scores cannot be trusted absolutely, the value of a layout capability sits in three artefacts rather than in the optimiser: an accurate machine-readable model of the floor, a measured from-to matrix of what actually moves, and a set of hard constraints written so a machine can check them. Given those three, several different search methods work adequately. Missing any one of them, no search method works at all — it produces confident arrangements that are wrong in ways nobody on the floor can immediately articulate but everybody can immediately feel.
How a candidate layout travels from evidence to floor
The three lanes are evidence, generation and execution. Most plants build the first lane and stop; the value is released in the third, and the loop back from reconciliation to the spatial model is what keeps the whole thing from decaying. Note where the risk sits: not in the optimiser, but in the divergence between the model and the floor.
- Data & feeds
- Human in the loop
- AI / model
- System-of-record action
- Where value leaks
The process, in words
- Evidence lane: the plant's real geometry is captured as a machine-readable as-built model rather than a commissioning drawing; MES and WMS transactions plus RTLS or AMR telemetry produce a from-to matrix of what actually moves, by product family and shift; and each move is priced from MHE hours, labour and lost throughput so distance can be traded against capital and floor space.
- Generation lane: the encoded constraint set defines the feasible region before any search begins. A solver with a learned surrogate ranks thousands of arrangements cheaply, the constraint screen removes anything that breaches egress, clearance, zoning or loading rules, discrete-event simulation certifies the survivors against the current mix, and engineering and EHS review a shortlist that already carries a move sequence and a reversion plan.
- Execution lane: soft-layer changes — slotting, staging, AMR traffic rules — run immediately under a written policy because they are reversible within a shift. Cell and structural moves wait for an approved shutdown window. Both feed as-built reconciliation, which corrects the spatial model. Skip the reconciliation and model-to-floor divergence grows until the generator is optimising a plant that no longer exists.
Step-by-step insights
- The as-built model is the load-bearing artefact, not the optimiser
- Almost every failed layout programme fails here, and it fails silently. A plant makes hundreds of small undocumented changes a year — a bench moved a metre, a rack added, a conduit rerouted, a pallet position taken permanently by a tote stack — and none of them individually matters. Collectively they mean the model's clearances, adjacencies and free areas stop being true, and a candidate generator will happily place a machine in a space that is occupied by something nobody recorded. The failure mode is not an error message; it is a proposal that survives review and then cannot be built. Reconciliation is dull, cheap and the single highest-return discipline on this page: update the model from the work order, and sample the floor against the model on a cadence so you know your divergence rate rather than assuming it is zero.
- The from-to matrix must be transactional, not observational
- Observation weeks measure what an observer can see and what happens while they are watching, which biases toward day shift, toward visible congestion, and toward whatever the plant is running that week. Transaction history from the MES and WMS measures what moved, from where, to where and when, across every shift and every product family, and it is already recorded. The practical work is joining rather than collecting: mapping storage locations and work centres onto coordinates in the spatial model, then aggregating movements into a matrix segmented by product family and shift. Segmentation is what stops the matrix lying: a plant with two product families running on alternating weeks has two different flow patterns, and the average of the two describes neither.
- Constraints are filters, and regulated constraints are hard filters
- There is a persistent temptation to express constraints as penalties in the objective function, because it makes the search mathematically tidier and lets the optimiser trade a small breach for a large gain. Do not do this for anything safety-related or regulated. Egress width, fire-compartment boundaries, allergen or high-care segregation, cleanroom grade boundaries, ATEX zone edges and crane envelopes are not tradeable at any price, and a tool that proposes trading them once will be — correctly — switched off. Encode them as filters applied before scoring. Soft preferences, such as keeping noisy operations away from the quality lab, belong in the objective; hard rules belong in the feasible region's definition.
- Simulation certifies; it does not decide
- The generator's score is a cheap proxy — flow times distance, plus whatever penalties were encoded. It cannot see queueing, blocking, starving, changeover interactions or the way a shared forklift couples two areas that look independent on a flow matrix. Discrete-event simulation can, which is why the pipeline is generate-cheaply-then-certify-expensively rather than a single scoring pass. The number that makes the certification honest is the fidelity gap: simulated throughput minus actual throughput for the same period and mix, published with every result. A model that is consistently 8% optimistic is usable, because the reader can correct for it. A model whose gap has never been computed is a drawing that moves.
- The soft layer is where AI is actually allowed to run
- Notice that only one arrow in the diagram goes straight from the constraint screen to execution without human approval, and it carries only the reversible layer: which pallet goes in which position, where staging is allocated, which routes vehicles prefer, how the kitting point is arranged. These decisions can be re-made every week and undone in a shift, which is precisely why they can be governed by a written policy rather than by an approval queue. Everything bolted down goes the long way round, through certification and review and a shutdown window. Programmes that try to give the optimiser authority over the bolted-down layer do not fail on safety — they fail on approval, and they consume a year discovering it.
- The reconciliation loop is the difference between a capability and a study
- The arrow from execution back to the spatial model is the one that turns a project into an asset. Each executed change — soft or hard — corrects the model, so the next generation run starts from a truer picture than the last one did, and the capability improves with use. Without it, every study begins by rebuilding the model, which is why plants that have run three layout studies in a decade have paid for the same survey three times. The organisational version of this is equally simple and equally often skipped: make the model update part of the work order's completion criteria, so nobody has to remember to do it separately.
One deliberate exclusion: where the search and simulation compute actually runs — on a workstation, on plant edge hardware, or burst into a cloud tenancy for a weekend — is a real question and a separate one. It is an infrastructure decision with its own data-residency and OT-segregation arguments, and it does not change any of the reasoning on this page. Treat it as a scheduling and architecture matter once the three evidence artefacts exist, not as a prerequisite for starting.
The five rungs of the layout ladder, in detail
Drawn, Measured, Simulated, Optimised, Adaptive — what each looks like on the ground, the signals a reviewer can check in an afternoon, and the mistake that traps plants there.
The ladder below describes how a plant's capability to change its own layout matures, and it is deliberately not a generic AI maturity model. Each rung is defined by what the plant can actually do — describe, measure, evaluate, generate, adapt — and by which layer of the layout that capability reaches. The hallmarks are observable conditions, the diagnostic signals are checks you can run against your own systems this week, and the anti-pattern is the specific error most often made trying to leave that rung.
Value released along the layout ladder
Value stays close to flat through Drawn and Measured — where most plants are — because measurement produces arguments rather than options. It inflects at Simulated, when being wrong becomes cheap, and again at Optimised, when generating an option costs almost nothing. The final rung is flatter than it looks: Adaptive releases value continuously but only across the reversible layer.
Flow cost removed, and kept removed by stage
- Stage 1 · Drawn — 31% of operators. The layout exists as a drawing rather than a model, material flow is described from memory, and layout decisions are made in a workshop.
- Stage 2 · Measured — 36% of operators. Material flow is quantified from transactions and telemetry, so layout arguments now carry evidence — but the plant still generates its options by hand.
- Stage 3 · Simulated — 22% of operators. A calibrated model of the plant exists, so candidate layouts are evaluated rather than argued — and the hard constraints are written down as rules.
- Stage 4 · Optimised — 8% of operators. Layout generation is a standing capability: candidates are generated, screened against encoded constraints, certified in simulation, and priced with their disruption.
- Stage 5 · Adaptive — 3% of operators. The reversible layer of the layout re-optimises continuously inside a written policy, while physical moves are scheduled from certified evidence.
Curve shape: logistic, plotted from the stage data above. Distribution: Stage framing consistent with the acatech Industrie 4.0 Maturity Index.
Select a rung
Every rung's full detail is in the page source — the selector only changes which panel is visible, so nothing here depends on JavaScript to exist.
Stage 1
Drawn
31% of operators sit here
The layout exists as a drawing rather than a model, material flow is described from memory, and layout decisions are made in a workshop.
Stage 1 is not ignorance of the plant — the people on the floor usually know it intimately. It is the absence of any representation of the plant that a computer could reason about. The geometry lives in a drawing that cannot be queried, the flow lives in the heads of the supervisors who walk it, and the cost of the flow lives nowhere at all. Every layout question therefore has to be re-answered by argument, and arguments are won by the person who has been there longest.
The tell is what happens when someone proposes moving a machine. At stage 1 the discussion is about whether it will fit and whether the services reach — questions about the building — and never about what it does to throughput, congestion or handling cost, because nobody has a number for those. The change is then justified by a benefit that was estimated on the back of the proposal itself, which means the plant has no way of knowing afterwards whether the move worked.
This is a cheaper stage to leave than most people assume, because the first move out of it is measurement rather than construction. It is also expensive to stay in: without a flow record, every layout decision is a fresh guess, and each guess is embedded into concrete for a decade. The compounding cost is not the bad decisions, it is that good ones cannot be recognised as good.
In practice
The staging area nobody chose
In a mid-sized food plant, the pallet staging in front of the packing hall grew where it did because a line was extended in 2014 and the space in front of the old wall was empty. Eleven years later, every pallet from the raw store crosses the packing hall's main pedestrian route to reach it. Two supervisors will tell you it is a nuisance. Nobody has counted the crossings, so nothing has ever been proposed and nothing has ever been costed.
What it looks like
- The authoritative layout is a PDF or a printed general arrangement drawing on the wall
- Nobody can say how far material travels per unit, or what a metre of travel costs
- Layout changes are argued from experience and settled by seniority
- The drawing was last reconciled with the floor at commissioning, or at the last major project
Diagnostic signals you can check this week
- Ask for the current layout in a machine-readable form. If you receive a PDF or a paper print, you are here
- Ask what the plant's material travel distance per unit is. At stage 1 there is no answer, not even a rough one
- Walk the busiest route with a supervisor and count crossings and reversals — then ask whether anyone has ever counted them before
- Check when the general arrangement drawing was last reconciled against the floor; commissioning is the usual answer
Anti-pattern · Buying layout software first
The instinctive fix is a layout or simulation tool, on the theory that the tool will produce the answer. It will not, because every one of them consumes two inputs the plant does not yet have: an accurate machine-readable geometry and a real from-to flow matrix. The tool then gets fed the 2014 drawing and last year's product mix, produces a beautiful result, and the result is quietly ignored by everyone who knows the floor. Spend the first quarter producing the two inputs; the tool question answers itself afterwards, and the shortlist will be shorter and cheaper than the one you would have bought from.
What holds you here
There is no queryable model of the floor and no measured flow, so every layout proposal is an opinion and no result can be attributed afterwards.
Highest-leverage next move
Build the two inputs for one hall: a machine-readable as-built geometry, and a from-to material-flow matrix derived from MES and WMS transactions rather than from memory.
Cost of leaving
- Effort
- 2–4 months
- Team
- One industrial engineer, one data engineer, part-time; a day of surveying per hall
- Risk
- Low — nothing in production changes, and the outputs are useful even if the programme stops
- To next stage
- 2–4 months
If this is you, the next step is
A two-week exercise: survey the geometry, extract the flow, price a metre of travel.
Stage 2
Measured
36% of operators sit here
Material flow is quantified from transactions and telemetry, so layout arguments now carry evidence — but the plant still generates its options by hand.
Stage 2 is where the conversation changes character. Once a from-to matrix exists, the question stops being whether the staging area is a nuisance and becomes how many pallet-metres a year it costs, which is a question with an answer. Proposals start carrying evidence, and the evidence usually surprises people: the route everyone complains about is rarely the most expensive one, because complaint tracks visibility and cost tracks volume.
The limitation is that measurement produces an argument, not a search. An engineer can hold perhaps three candidate layouts in mind and compare them fairly; the plant has thousands of feasible arrangements, and the good ones are frequently counter-intuitive because they trade a longer path for a shorter queue. So a stage-2 plant reliably improves on where it started and reliably stops well short of what the same floor could do, and nobody knows by how much, because no baseline of what was possible was ever computed.
This is the mode of the industry and the plateau worth naming. Measurement is genuinely valuable and genuinely insufficient, and because it feels like progress it can absorb years. The signature of a plant stuck here is a shelf of good flow studies and a layout that has changed twice in a decade, both times for reasons unrelated to any of them.
In practice
The study that proved the wrong route was the problem
A speciality chemicals site ran a six-week flow study after complaints about tanker-to-blender transfers blocking the main aisle. The transfers turned out to be 4% of the site's total handling metres. The dominant cost was drum movements between the blending hall and the finishing store, invisible because they happened on night shift when the aisle was empty. The study was correct, the complaint was correct, and the two had almost nothing to do with each other.
What it looks like
- A from-to flow matrix exists, built from MES or WMS transaction history
- Spaghetti diagrams and travel-distance figures appear in layout proposals
- Someone can state travel distance and handling touches per unit for the main product families
- Candidate layouts are still drawn by an engineer and compared two or three at a time
Diagnostic signals you can check this week
- Ask to see the from-to matrix and check what period and product mix it covers; anything older than the last major SKU change is describing a plant that no longer exists
- Ask how many candidate layouts were compared in the last change proposal. Two or three means the options were drawn, not generated
- Check whether the flow figures came from MES/WMS transactions or from a manual observation week
- Ask what a metre of travel costs on the busiest route. A stage-2 plant usually has a distance but not a cost
Anti-pattern · Treating the spaghetti diagram as the answer
A spaghetti diagram is an excellent instrument of persuasion and a poor instrument of design: it shows where flow is tangled without showing which untangling is worth the disruption. Plants that stop here tend to make the visually obvious change — straighten the route in the picture — and find the benefit smaller than expected, because the tangle was absorbing variability that now surfaces somewhere else. Convert the diagram into a costed from-to matrix and a candidate-generation problem before you convert it into a move.
What holds you here
Options are drawn by hand, so the plant compares three candidates out of thousands and cannot know what it is leaving on the floor.
Highest-leverage next move
Build a discrete-event simulation of one hall, calibrate it until it reproduces last quarter's actual throughput, and encode the hard constraints — clearance, egress, zoning, services — as rules the model enforces.
Cost of leaving
- Effort
- 4–8 months
- Team
- Industrial engineer, simulation engineer, plant engineering sponsor
- Risk
- Low to medium — the work is analytical, but the first simulation will expose disagreements about how the plant really runs
- To next stage
- 4–8 months
If this is you, the next step is
We build the discrete-event model, calibrate it against last quarter's actuals, and show you the fidelity gap.
Stage 3
Simulated
22% of operators sit here
A calibrated model of the plant exists, so candidate layouts are evaluated rather than argued — and the hard constraints are written down as rules.
Stage 3 is the first stage at which the plant can be wrong cheaply. A calibrated model lets a proposal fail in an afternoon instead of failing in concrete, and the value of that is easy to underestimate because the avoided cost never appears in any account. The discipline that makes it real is calibration: a model that has never been made to reproduce a known period is a drawing that moves, and it will be believed more than it deserves precisely because it moves.
The second half of stage 3 is constraint encoding, and it is the half most plants skip. Every plant runs on rules that live in two or three long-serving engineers: this aisle must stay clear because it is the fire route, that wall is the boundary between high-care and low-care, this bay cannot take a pallet stack because of the floor loading, that machine needs three metres of maintenance access on the drive side. Until those are written as machine-checkable rules, no candidate generator can be trusted, because its first genuinely creative suggestion will be one that violates a rule nobody told it about.
The constraint that emerges here is throughput of a different kind: the plant can now evaluate a candidate layout in an afternoon but can still only invent three of them. Simulation without generation is a much better version of stage 2 — faster, fairer, better evidenced — and it is where a great many capable plants settle, because it is genuinely comfortable and it produces defensible answers to the questions somebody thought to ask.
In practice
The model that finally settled the buffer argument
A pharmaceutical packaging site had argued for two years about whether the inter-line buffer before the cartoner was too small. The calibrated model showed that doubling it improved throughput by almost nothing, because the real constraint was changeover sequencing upstream — but that halving it freed floor space with no throughput penalty at all. The buffer shrank, the argument ended, and the freed bay took a second labeller the following year.
What it looks like
- A discrete-event model reproduces last quarter's actual throughput within a stated tolerance
- Clearance, egress, zoning and services constraints exist as checkable rules, not as engineering memory
- Proposals arrive with a simulation run attached, against the current product mix
- The model has a named owner and a recalibration cadence tied to mix changes
Diagnostic signals you can check this week
- Ask what the model's fidelity gap was on the last release — simulated throughput minus actual, same period and mix. If nobody has computed it, the model is uncalibrated
- Ask to see the constraint rules. If the answer is a design-standard document rather than something the model enforces, they are not encoded
- Count how many candidate layouts were evaluated in the last study. Under ten means options are still being drawn by hand
- Ask what triggers recalibration. Calendar-based recalibration on a plant whose mix changes quarterly is a slow drift into fiction
Anti-pattern · Modelling the plant you designed instead of the plant you run
The most common simulation failure is not technical, it is editorial: the model encodes the standard cycle times, the planned changeover durations and the nominal availability, so it reproduces the plant's design intent rather than its behaviour. It then reports that every proposed change works, because in the designed plant nothing ever starves. Calibrate against a real period including its bad weeks, and publish the fidelity gap alongside every result — a model that is honestly 8% optimistic is far more useful than one that is silently perfect.
What holds you here
The plant can evaluate candidates but not generate them, so the search space explored is whatever three arrangements an engineer thought of.
Highest-leverage next move
Put a candidate generator in front of the simulation — a solver with a learned surrogate to screen arrangements — and make the encoded constraint set a hard filter that runs before any human sees a candidate.
Cost of leaving
- Effort
- 6–12 months
- Team
- Simulation engineer, industrial engineer, an EHS reviewer for the constraint set, plant engineering owner
- Risk
- Medium — encoding constraints surfaces disagreements about what the rules actually are, which is uncomfortable and necessary
- To next stage
- 6–12 months
If this is you, the next step is
Two workshops with plant engineering and EHS turn tribal rules into machine-checkable ones.
Stage 4
Optimised
8% of operators sit here
Layout generation is a standing capability: candidates are generated, screened against encoded constraints, certified in simulation, and priced with their disruption.
At stage 4 the marginal cost of asking a layout question collapses. Because generation, screening and certification are a pipeline rather than a project, the plant can afford to ask questions it previously could not justify: what if the second labeller went in the north bay, what if despatch marshalling moved outside, what does the layout look like if the new SKU family is 30% of volume in two years. The character of the conversation shifts from defending a proposal to choosing between certified options, which is a much healthier argument to be having.
The discipline that separates a real stage 4 from an impressive stage 3 is move economics. A generated layout has a benefit and a price, and the price is not the capital cost: it is the capital cost plus the output lost while the move happens, plus requalification or revalidation where the process is regulated, plus the ramp-back period where the line runs below rate while operators relearn it. Plants that price only the capex systematically over-move, discover the disruption afterwards, and spend the following two years unable to get any layout proposal approved.
The remaining constraint is human and structural. Every physical move still queues behind a shutdown window, a capital committee and, where the process is regulated, an authority. That is usually correct rather than a defect: it is the mechanism that keeps a search algorithm from rearranging a plant that people work in. What stage 4 changes is that the queue is now fed by certified, priced, comparable options instead of by whoever made the most persuasive case.
In practice
The shortlist that cost less than the study it replaced
A metals fabricator planning a bay reconfiguration generated and screened several thousand arrangements over a weekend, of which about sixty passed the constraint filter, of which six were simulated in detail. The chosen arrangement was not the one with the lowest travel distance — it was fourth on that measure — but it was the only one in the top ten that could be executed in two shutdown weekends instead of one continuous three-week outage. The move sequence, not the end state, decided it.
What it looks like
- Thousands of candidate arrangements are generated and screened per study, not three
- Every shortlisted candidate carries a simulation run, a constraint-compliance record and a reversion plan
- Move economics include disruption, requalification and ramp-back, not capital cost alone
- Realised benefit is measured after the move and fed back into the cost model
Diagnostic signals you can check this week
- Ask how many candidates the last study generated and how many survived the constraint screen; the ratio tells you how much of the constraint set is really encoded
- Ask to see the disruption line in the last move's business case. If there is only a capex line, the economics are half-built
- Ask whether the realised benefit of the last completed move was measured against a comparable unchanged area
- Check whether shortlisted candidates carry a move sequence, or only an end state. End-state-only proposals are what turn two weekends into three weeks
Anti-pattern · Optimising the end state and improvising the transition
The generated layout is the destination; the move is the journey, and the journey is where the money goes. Optimising purely for the steady-state flow cost produces arrangements that require the plant to be substantially empty to execute — every machine's new position occupied by the machine that has not moved yet. Model the move sequence as part of the candidate: which assets move in which window, what runs at reduced rate meanwhile, and what the reversion looks like if a window overruns. Arrangements that are 3% worse at rest and executable in a weekend beat the optimum you cannot reach.
What holds you here
Physical moves still queue behind shutdown windows and capital approval, so the value released is bounded by how often the plant can execute rather than by what it can find.
Highest-leverage next move
Move value into the reversible layer: put storage assignment, staging, kitting points and AMR traffic rules under a bounded, continuously re-optimised policy, so the layout improves between shutdowns rather than only at them.
Cost of leaving
- Effort
- 12–18 months
- Team
- Optimisation engineer, simulation engineer, plant engineering, finance partner for move economics, EHS reviewer
- Risk
- Medium to high — the generator will propose things the plant has never considered, and the governance around what it is allowed to propose has to exist first
- To next stage
- 12–18 months
If this is you, the next step is
We build the disruption and requalification model that turns a capex number into a decision.
Stage 5
Adaptive
3% of operators sit here
The reversible layer of the layout re-optimises continuously inside a written policy, while physical moves are scheduled from certified evidence.
Stage 5 is narrower than the phrase 'self-optimising factory' suggests, and the narrowness is the point. What re-optimises continuously is the soft layer: where things are put down, which routes vehicles prefer, how staging is allocated, how much buffer sits where. What does not re-optimise continuously is anything bolted to the floor, connected to a service, or inside a regulated boundary. A plant that has genuinely reached stage 5 is precise about which decisions sit inside the policy and which sit outside it, and can show you the document.
The second characteristic is that mobility becomes a specification. Once a plant knows what a move costs and how often the optimum shifts, it starts buying differently: skidded modules instead of grouted plinths, quick-disconnect services, castored benches, drop-in cell frames. This is a slower and more consequential change than any algorithm, because it converts a fraction of the structural layer into the cell layer and a fraction of the cell layer into the soft layer, which is where the compounding value actually is.
Sustaining stage 5 is a governance problem rather than a technical one, and it regresses more easily than it advances. The policy that was correct for last year's mix silently stops being correct; the spatial model drifts as small changes accumulate; the reconciliation audit gets skipped for two quarters during a busy period. The leading indicators are unglamorous — divergence rate, fidelity gap, the age of the policy document — and watching them is the whole job.
In practice
The bounded soft layer
A consumer-goods site re-optimises pallet slotting and AMR route preference for the following week every Sunday night, inside written bounds: no assignment may cross the allergen segregation boundary, no route may use the pedestrian-priority aisle during shift change, and no more than 15% of positions may change in one run so that operators are not relearning the store every week. Anything outside the bounds is a proposal for the Monday engineering meeting, not an action.
What it looks like
- Storage assignment, staging and AMR traffic policy re-optimise on a schedule inside stated bounds
- The bounds are a versioned document reviewed like code, not settings in a tool
- The spatial model is reconciled continuously and its divergence rate is monitored as a leading indicator
- Some assets are deliberately specified for mobility — skidded, castored, quick-disconnect — so the cell layer becomes semi-reversible
Diagnostic signals you can check this week
- Ask for the policy document that states what may re-optimise and inside what bounds; if it is a settings screen, there is no policy
- Ask when the reversion path was last exercised — reverting last week's slotting on a live shift should be a drill, not a theory
- Check the model-to-floor divergence rate trend; a rising rate is the earliest warning that the capability is decaying
- Ask which assets were specified for mobility in the last capital cycle. If none, the cell layer is still as rigid as it was at stage 3
Anti-pattern · Letting the soft layer churn
Continuous re-optimisation without a change budget produces a plant where nothing is where it was last week. Pick rates fall because operators lose their spatial memory, errors rise, and the measured benefit of the optimisation is consumed by the human cost of the churn — usually while the dashboard reports an improvement, because travel distance fell. Cap the proportion of positions that may change per run, measure pick rate and error rate alongside travel distance, and treat operator relearning as a real cost with a real number.
What holds you here
Sustaining adaptivity is a governance discipline: policy bounds silently expire, the spatial model drifts, and the capability decays without anyone deciding to stop it.
Highest-leverage next move
Treat the policy bounds and the spatial model as versioned, reviewed artefacts with owners and audit cadences — and specify mobility into the next capital cycle so more of the plant can move cheaply.
Cost of leaving
- Effort
- Continuous
- Team
- Optimisation owner, plant engineering, EHS, plus a standing review of the policy bounds
- Risk
- Concentrated — low frequency and high consequence: a policy that drifts out of validity fails on a segregation or safety boundary, not on throughput
If this is you, the next step is
We run your written bounds against real scenarios and the last two quarters of mix change.
Where manufacturing plants actually sit on the ladder
The distribution across the five rungs, why the Measured plateau is the deepest one, and what the published research does and does not support.
Most plants are on the Measured rung, and a large minority have not left Drawn. That is a different distribution from most AI capability curves, and the reason is structural rather than cultural: layout work has an unusually long feedback loop. A forecasting model can be improved forty times in a year; a plant layout might be materially changed twice in a decade, so the organisational learning rate is slow, the people who ran the last reconfiguration have often moved on, and each new study starts closer to the beginning than it should.
Illustrative distribution of manufacturing plants across the five rungs
Illustrative, not measured: a synthesis of published maturity-model stage distributions, the small number of sites recognised for advanced manufacturing practice relative to the industrial base, and industry survey reporting on simulation and digital-twin adoption. Treat the shape as an argument about where the plateau is, not as a census.
Share of plants
- 31% — 1 · Drawn
- 36% — 2 · Measured (the plateau)
- 22% — 3 · Simulated
- 8% — 4 · Optimised
- 3% — 5 · Adaptive
Source: Illustrative distribution, synthesised from acatech, World Economic Forum and MHI reporting
30
Largest layout (QAP) instance size any known method solves exactly
arXiv, QAP deep-RL study
7.5%
Average gap from a strong local-search baseline for a trained deep-RL layout policy, out of sample
arXiv, QAP deep-RL study
8 s
Target cycle time Siemens reports its Amberg line reached after the fix was made in the digital twin
Siemens
It is worth being precise about what the research supports, because layout is a field where vendor language runs a long way ahead of published results. The deep-reinforcement-learning study cited above reports solutions that are, out of sample, on average within 7.5% of a high-quality local search baseline (opens in a new tab), beating it on roughly 1.2% of instances. That is a real and useful result — a trained policy generalises to new instances without retraining, which local search cannot do — and it is emphatically not evidence that learning-based methods dominate classical optimisation on layout problems. Earlier work combining genetic search with simulation for unequal-area layouts under stochastic flow (opens in a new tab) makes the same point from the other direction: the hard part is representing the problem faithfully, not choosing the search algorithm.
No methods are known to exactly solve QAP instances of size greater than 30.
For a view of what advanced practice looks like at the top of the distribution, the World Economic Forum's Global Lighthouse Network (opens in a new tab) profiles sites recognised for deploying advanced manufacturing technology at scale, and MHI's annual industry report (opens in a new tab) tracks adoption of simulation, robotics and material-handling automation across the wider industrial base. The gap between the two is the honest picture: a small number of exemplary sites, a wide middle that has measured its flow and stopped there, and a large tail still working from drawings.
Sort layout changes by reversibility before you sort them by value
Three horizons — soft, cell and structural — with different approvers, different lead times, and radically different costs of being wrong.
The single most useful thing a plant can do before it buys any layout technology is to sort its layout decisions into three horizons by reversibility, because reversibility determines who may approve a change, how quickly it can happen, and how much evidence it needs to carry. A soft change — which pallet goes where, how staging is allocated, which route a vehicle prefers — can be made on Monday and undone on Tuesday. A structural change is the next decade of flow, poured into a floor slab. Treating both as 'layout' and running both through the same process is why plants either move too slowly or move too rashly, and frequently both at once in different halls.
| Horizon | What changes | Who signs it off | Lead time | Cost of being wrong | What AI should be allowed to do |
|---|---|---|---|---|---|
| Soft — flow rules | Storage assignment and slotting, staging and marshalling allocation, kitting points, AMR and forklift traffic rules, one-way aisles, buffer sizing, line-to-cell allocation | Area or shift supervisor, under a standing written policy | Hours to days | A shift of throughput; fully reversible | Re-optimise continuously inside stated bounds, with a one-instruction reversion |
| Cell — moveable assets | Moving a machine or workstation, changing cell orientation, re-racking, re-routing conveyors and chutes, reconfiguring a packing line, relocating a kitting bench | Plant engineering plus EHS, through change control | Weeks, and usually a shutdown window | Weeks of disrupted output plus services rework; partly reversible at a price | Generate and rank candidates; simulate the move sequence, not only the end state |
| Structural — the building | Walls and fire compartments, dock count and orientation, drainage, cleanroom grading, crane rails, floor loading, utility mains, roof plant | Capital committee, building control, and where regulated the competent authority | Quarters to years | The next decade of flow; effectively irreversible | Evaluate long-horizon scenarios under demand uncertainty — advisory only, never automated |
Which change should you make now?
Plot the change you are considering against two axes: how reversible it is, and how strong the flow evidence behind it is. Three of the four answers are not 'run the optimiser', and the bottom-left quadrant is where most regretted capital goes.
Just try it, then measure
- Reversible change, weak evidence
- The cheapest experiment a plant can run
- One shift, one area, one comparable control area
Run it now
- Reversible change, measured evidence
- Slotting, staging, traffic rules, buffer sizes
- Governs by written policy, not by approval queue
The capex trap
- Permanent change, weak evidence
- Where a decade of flow cost gets committed on a hunch
- Buy evidence first — it is orders of magnitude cheaper
Simulate, stage, schedule
- Permanent change, measured evidence
- Certify in simulation and screen against constraints
- Optimise the move sequence, not only the end state
The strategic implication of the table is that the goal of a layout programme is not a better plant layout. It is to move as much value as possible out of the structural horizon and into the soft one, where it can be re-decided continuously and cheaply. Some of that migration is analytical — realising that a staging rule achieves most of what a wall move was proposed for. A great deal of it is procurement: specifying skidded modules rather than grouted plinths, quick-disconnect services rather than hard-piped ones, castored benches, drop-in cell frames. A plant that has made those specification choices for five years has a structurally different optimisation problem from one that has not, and no algorithm can compensate for the difference.
Where layout optimisation lands in a plant
Receiving, process, packing, internal transport, despatch, services and the building — the decisions worth optimising, the system each one lives in, and the KPI it moves.
Layout value in a non-automotive plant concentrates in seven domains, and each has a natural horizon. A decision is a good first candidate when three things are true: the data behind it already exists in a system you control, the change sits in the soft or cell horizon, and it moves a KPI that a plant manager already reports. The map below is how we scope first and second pieces of work with manufacturers — food and beverage, pharma, chemicals, consumer goods, metals, electronics and industrial equipment alike, because the domains are common even where the processes are not.
| Plant domain | Layout decisions worth optimising | System of record | KPI it moves | Horizon |
|---|---|---|---|---|
| Receiving and raw store | Dock allocation, put-away and slotting by velocity and mix, inbound staging lanes, decant point placement | WMS / ERP | Dock-to-line time, MHE hours per 1,000 units | Soft |
| Process and make area | Cell arrangement and adjacency, vessel-to-filler routing, inter-stage buffer sizing, CIP and changeover staging | MES / process historian | Throughput per hour, blocked and starved time | Cell |
| Packing and finishing | Line balance and station spacing, changeover staging, case-packer and palletiser placement, reject-loop routing | MES / WMS | OEE performance loss, changeover minutes | Cell |
| Internal transport | AMR and AGV route network, one-way aisles, crossing and priority policy, charging and parking positions | AMR fleet manager / RTLS | Travel distance per unit, congestion wait, near-miss count | Soft |
| Finished goods and despatch | Pallet slotting, pick-face arrangement, marshalling lane allocation, loading-dock assignment | WMS | Picks per labour hour, order lead time | Soft |
| Utilities, services and maintenance | Service and compressed-air drop positions, spares store location, maintenance access clearance, lifting points | CMMS / EAM | Mean time to repair, permit and access time | Cell to structural |
| Site and building | Dock count and orientation, wall lines and fire compartments, cleanroom grading, drainage and floor loading | CAD / BIM and the capital plan | Throughput per square metre, capex per unit of capacity | Structural |
Internal transport and the two storage domains are where nearly every plant should begin, and the reason is not that the prize is largest — often it is not — but that the whole loop closes inside one quarter. The data is in the WMS and the fleet manager, the change is a rule rather than a move, the reversion is an instruction, and the KPI moves inside a week. That produces the one thing a layout programme most needs and most rarely has: a measured, attributable result early enough to fund the harder work in the process and packing halls.
The systems the layout data actually lives in
Layout work is unusual in that it spans the whole stack: geometry in CAD or BIM, work centres and routings in the MES, storage locations in the WMS, asset footprints and access requirements in the CMMS, and movement telemetry in the fleet manager or RTLS. The integration model that keeps this coherent is the standard one — ISA-95 (opens in a new tab) for the enterprise-to-control hierarchy and the definition of a work centre, OPC UA (opens in a new tab) for equipment-level information exchange, and the MESA model (opens in a new tab) for how operations functions relate. You do not need a new architecture for layout work; you need the coordinate mapping between the work-centre identifiers in your MES and the geometry in your spatial model, and that mapping is usually the single most valuable half-day of the project.
The KPI definitions that stop the argument
Layout benefits are contested more than most because several teams have a legitimate claim on the same minutes. Adopting a standard KPI definition set — ISO 22400-2 (opens in a new tab) defines KPIs for manufacturing operations management, including the components of OEE and the time model beneath them — removes an entire class of dispute about whether a saved minute was availability, performance or simply a shorter walk. Agree the definitions before the first study, not while reviewing its results.
The constraints that are not negotiable
Aisle and passageway clearance is a regulated matter in most jurisdictions — in the United States, for example, OSHA's materials handling and storage rule (opens in a new tab) requires sufficient safe clearances for aisles used by mechanical handling equipment and that aisles be kept clear and in good repair. In the European Union the Machinery Regulation (EU) 2023/1230 governs the safety requirements of machinery and assemblies, which is what a reconfigured production line becomes. Regulated process boundaries add more: cleanroom grading in pharmaceutical manufacture, high-care and low-care segregation and allergen separation in food, and ATEX zone boundaries in chemicals and dust-handling. All of these belong in the constraint filter, and moving equipment across one of them typically triggers requalification that dwarfs the move cost.
Where the reference work is published
For teams building the measurement and modelling side, NIST's manufacturing programme (opens in a new tab) and its smart manufacturing systems design and analysis work (opens in a new tab) are the most useful public reference points on system modelling, performance measurement and simulation interoperability, and they are vendor-neutral in a field where most published material is not.
What the transitions look like in public
Three publicly reported programmes, read against the ladder. None is an Atomic Loops engagement — each links to the operator's own published material.
The most instructive public examples are not the ones with the biggest numbers; they are the ones that show which artefact the operator invested in. In each case below the differentiator was a representation of the plant — a simulated line, a scanned building, a decades-old modelling capability — rather than a particular algorithm. That is the pattern worth copying, because algorithms are procurable and representations are not.
Three programmes read against the layout ladder
Outcomes as reported by the operators themselves; verify any figure against the linked source before reusing it, as we have not independently audited them. The card images are generated industry scenes from our media library, not photographs of the named sites, and no operator endorsement is implied.
SiemensElectronics manufacturing · Amberg Electronics Works, Germany34
- Challenge
- Designing a production line for Simatic controller components on a floor that Siemens reports carries roughly 1,200 different products and about 350 production changeovers a day — a mix profile under which a line designed for the average product is wrong for nearly every actual one.
- Approach
- The line was built in a digital twin before it was built on the floor, and the twin was used to identify which machine modules were limiting the design rather than accepting the first simulated result as the achievable rate.
- Reported outcome
- Siemens reports that the initial simulation promised an eleven-second cycle time, that analysis attributed the shortfall largely to machine modules that were planned for the line but did not work optimally, and that after those components were replaced in the digital twin the target cycle time of eight seconds was achieved.
- What it shows about the curveThis is the Simulated-to-Optimised transition in one artefact. The value came from being able to be wrong in the model — the first simulated design was rejected, not shipped — which is only possible when the model is trusted enough to overrule an existing plan.
Siemens — Electronics, Digital Enterprise and future technologies (opens in a new tab)
HenkelConsumer goods · laundry, home care and adhesives plants23
- Challenge
- Building a usable representation of factories that already existed, across a network of sites, without the luxury of designing them digitally from scratch.
- Approach
- Henkel describes creating a virtual factory by scanning the plant and connecting it — a complete copy of all assembly lines and rooms, published as cloud-based 3D replicas that simulate operations and surface optimal process parameters to operators, with sensor data feeding the model.
- Reported outcome
- Henkel reports digital twins in use as a working representation of its production facilities, including its Somat production at the Kruševac plant, and positions them as the basis for optimising processes and detecting damage or errors early.
- What it shows about the curveThis is the artefact most layout programmes skip. Reality capture of an existing building is how a brownfield plant gets a spatial model that matches the floor rather than the commissioning drawing — the load-bearing input for everything above it on the ladder.
Henkel — Digital twins are paving the way for the factory of the future (opens in a new tab)
Procter & GambleConsumer goods · global manufacturing and supply network34
- Challenge
- Sustaining a modelling and simulation capability across a large manufacturing network for long enough that it becomes an institutional asset rather than a series of consultancy studies.
- Approach
- P&G describes a long-running collaboration with the University of Cincinnati that began as a computer modelling lab used to improve manufacturing processes and expanded, over fifteen years and roughly 500 students, into a broader digital capability spanning manufacturing digital twins and supply-network modelling.
- Reported outcome
- P&G reports the partnership now covers manufacturing digital twins and supply-network modelling aimed at an efficient yet resilient product supply, with the modelling work embedded in how the business solves operational problems.
- What it shows about the curveThe Optimised rung is a capability, not a project. The distinguishing feature here is duration and continuity — models, people and conventions that persist between studies — which is precisely what a plant loses when it buys each layout study from a different supplier.
P&G — Digital Accelerator partnership with the University of Cincinnati (opens in a new tab)