Aromatics column (Strigle) — a PENG-ROBINSON process flowsheet
A simple aromatics splitter recovering benzene overhead from a toluene/xylene-heavy feed, as described by R. Strigle (Gulf Publishing, 1987) — a classic packed-column textbook design case.
168 views 1 forks
- Rigorous PENG-ROBINSON thermodynamics, solved by the same engine every simulation runs on.
- 1 unit operations modeled: COL.
- Focus areas: Aromatics, Distillation, Textbook, Strigle.
- Thermodynamics
- PENG-ROBINSON
- Components
- benzene, toluene, o_xylene
- Unit operations
- COL
Opens in a new tab, loaded straight into the app — no setup.
Read the step-by-step guideReproduce this exact result from Python — the real client.get_example() → run_and_wait() path, not a mockup.
from flowsim.sdk import FlowSimClient
client = FlowSimClient()
example = client.get_example("strigle-aromatics-column")
sim = client.create_simulation(example["title"], example["flowsheet"])
result = client.run_and_wait(sim["id"])
print(result["status"]) # "converged"
streams = client.streams(sim["id"])Related models
Depropanizer (Strigle)
A depropanizer recovering propylene and propane overhead from a C₄-and-heavier hydrocarbon feed, as described by R. Strigle (Gulf Publishing, 1987).
Perry Ch.13 Example 3: butane/pentane splitter
A simple two-cut distillation splitting butane overhead from pentane bottoms, from Chapter 13 of Perry's Chemical Engineers' Handbook.
Perry Ch.13 Example 4: sloppy-butane three-cut splitter
A three-cut column with a side draw producing a deliberately 'sloppy' (off-spec, cheaper-to-make) butane cut between a propane overhead and a pentane-plus bottoms, from Chapter 13 of Perry's Chemical Engineers' Handbook.
Industrial i-butane/n-butane splitter
A close-boiling isobutane/n-butane splitter as reported by Klemola and Ilme (Ind. Eng. Chem. Res. 1996, 35, 4579) — the relative volatility between the two isomers is small (~1.3), so the column needs many stages and a high reflux ratio for a sharp split, unlike the wider-boiling LPG splits elsewhere in this library.
Reformate splitter
A single column cutting catalytic reformate into a light benzene/hexane overhead and a toluene/xylene bottoms — the IECR 50, 5680 configuration from the ChemSep casebook.
Ethanol–water distillation
An 8-stage column concentrating ethanol overhead toward the azeotrope (the headline demo).