DEV Community

Cover image for CSTR vs PFR: Why Two Ideal Reactors Need Very Different Volumes
NovaSolver
NovaSolver

Posted on Originally published at novasolver.jp

CSTR vs PFR: Why Two Ideal Reactors Need Very Different Volumes

Imagine two tanks on a chemical plant, both fed the same reactant stream, both asked to convert 90 percent of it. One is a well-stirred vessel with an impeller turning at its center. The other is a long pipe through which the fluid flows in an orderly procession. Run the numbers and the pipe needs roughly a quarter of the volume of the tank to do the identical job. That gap is not a rounding error or a quirk of one process — it is built into the way each reactor mixes its contents.

This article explains the two ideal continuous-reactor models, derives the residence time each one needs, works a side-by-side example, and flags the assumptions that decide whether the comparison holds.

Why this calculation matters

Continuous reactors are the backbone of large-scale chemical production, and the choice between a continuous stirred-tank reactor (CSTR) and a plug-flow reactor (PFR) is one of the earliest and most consequential decisions in process design. Reactor volume drives capital cost, footprint, inventory of hazardous material, and heat-transfer area. Picking the wrong configuration can multiply the required volume several-fold for no benefit.

The two reactors differ in one fundamental way: how the reactant concentration varies inside them. A CSTR is perfectly mixed, so the whole vessel sits at the low exit concentration, and the reaction everywhere runs at that slow exit rate. A PFR has no back-mixing, so concentration falls gradually from inlet to outlet, and much of the reactor still enjoys a high concentration and a fast rate. For reactions whose rate rises with concentration — which covers most of them — the PFR is more volume-efficient. Knowing how to quantify that difference is what turns a qualitative preference into a sized vessel.

The core method

Both reactors are characterized by the residence time, tau — the reactor volume divided by the volumetric flow rate, or equivalently the average time a fluid element spends inside. For a first-order reaction with rate constant k, the design equations for a target fractional conversion X take a clean closed form.

For the plug-flow reactor, integrating the rate along the length of the reactor gives:

tau_PFR = -ln(1 - X) / k
Enter fullscreen mode Exit fullscreen mode

For the continuous stirred-tank reactor, the whole vessel reacts at the exit condition, and the mole balance gives:

tau_CSTR = X / (k * (1 - X))
Enter fullscreen mode Exit fullscreen mode

The structural difference is worth pausing on. The PFR expression contains a logarithm, which grows slowly. The CSTR expression contains the term (1 - X) in the denominator, which heads toward zero as conversion approaches 100 percent — so tau_CSTR blows up. At low conversion the two reactors are nearly equivalent. At high conversion they diverge dramatically, and the CSTR pays an ever-steeper penalty for each additional percent of conversion.

The reason traces straight back to mixing. A CSTR runs entirely at the dilute exit concentration. A PFR experiences the full range of concentrations from rich inlet to lean outlet, so its average reaction rate is higher and it reaches the same conversion in less volume.

A worked example

Take a first-order reaction with a rate constant k = 0.5 per minute, and a target conversion of X = 0.90 — that is, 90 percent of the reactant must be consumed. Compute the residence time each reactor needs.

Step 1 — plug-flow reactor.

tau_PFR = -ln(1 - X) / k
tau_PFR = -ln(1 - 0.90) / 0.5
tau_PFR = -ln(0.10) / 0.5
tau_PFR = 2.303 / 0.5
tau_PFR = 4.6 min
Enter fullscreen mode Exit fullscreen mode

Step 2 — continuous stirred-tank reactor.

tau_CSTR = X / (k * (1 - X))
tau_CSTR = 0.90 / (0.5 * (1 - 0.90))
tau_CSTR = 0.90 / (0.5 * 0.10)
tau_CSTR = 0.90 / 0.05
tau_CSTR = 18 min
Enter fullscreen mode Exit fullscreen mode

Step 3 — compare. The PFR reaches 90 percent conversion with a residence time of 4.6 minutes, while the CSTR needs 18 minutes — almost four times as long. Since residence time is volume divided by the same flow rate, the CSTR also needs almost four times the volume to do the identical job.

That ratio is not constant. Repeat the exercise at X = 0.50 and the two reactors come out far closer. The penalty for choosing a CSTR grows sharply as the target conversion climbs, which is exactly why high-conversion processes so often favour a PFR, or a CSTR followed by a PFR in series.

Common mistakes

Comparing reactors at the wrong conversion. The CSTR-versus-PFR gap depends strongly on X. Quoting "the CSTR needs four times the volume" as a universal rule is wrong — that figure is specific to 90 percent conversion. Always state the conversion the comparison applies to.

Using the first-order formulas for other rate laws. The equations above assume a first-order reaction. Zero-order, second-order, and autocatalytic reactions have different design equations, and for some autocatalytic cases a CSTR can actually be the smaller reactor. Match the design equation to the rate law.

Confusing residence time with real clock time per molecule. tau is volume over flow rate — the mean residence time. In a CSTR individual molecules spend widely varying times inside; some leave almost immediately. tau is an average, not a guaranteed dwell time.

Forgetting that real reactors are not ideal. A real stirred tank has imperfect mixing and a real pipe reactor has some axial dispersion. The ideal CSTR and PFR are the two limiting cases; an actual reactor sits somewhere between them, and a tracer study is what locates it.

Ignoring temperature and heat effects. These design equations assume k is constant, which means isothermal operation. An exothermic reaction in a poorly cooled PFR develops a hot spot that changes k along its length, and the simple integral no longer applies.

Try the interactive NovaSolver calculator

The contrast between the two reactors is much easier to feel when you can move the inputs and watch both answers respond. The CSTR vs PFR Comparison Simulator on NovaSolver lets you set the inlet concentration, the rate constant, the reactor volume and the flow rate for the first-order reaction A to B, and returns the exit concentration and conversion for both a CSTR and a PFR side by side — so you can see directly why a PFR achieves a higher conversion under the same conditions.

Related calculators

You can explore the rest in the chemistry tools hub.

Closing note

The CSTR-versus-PFR comparison is a small calculation with a large message. Two ideal reactors, fed the same stream and asked for the same conversion, can differ in volume by a factor of several — and the reason is nothing more exotic than how each one mixes. A PFR keeps concentration high through much of its length and reacts fast; a CSTR runs everywhere at the lean exit condition and pays for it. Match the design equation to your rate law, state the conversion you are comparing at, remember that real reactors live between the two ideals, and the choice between a tank and a pipe becomes a number you can defend.

Top comments (0)