Vapor re-compression propane/propylene splitter — a PENG-ROBINSON process flowsheet
Propylene/propane splitters have a notoriously low relative volatility (~1.1-1.15), so they run at high reflux and benefit from heat pumping: the overhead vapor is compressed and used to reboil the same column at a lower operating pressure (here 12 bar vs. a conventional ~20 bar), cutting the compressor shell cost (Christopher et al., Ind. Eng. Chem. Res. 56, 14557, 2017). The reboiler heat-integration loop itself is not modeled here (that would need a recycle-coupled duty match) — this shows the column plus the overhead compression/condensing train, a bounded simplification.
167 views 0 forks
- Rigorous PENG-ROBINSON thermodynamics, solved by the same engine every simulation runs on.
- 3 unit operations modeled: COL, COMP, COND.
- Focus areas: Heat pump, Vapor recompression, Polymer-grade propylene, Distillation.
- Thermodynamics
- PENG-ROBINSON
- Components
- propane, propylene
- Unit operations
- COLCOMPCOND
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("vrc-propane-propylene-splitter")
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
Bio-ethanol: energy-integrated distillation + MVR stillage concentration
A dilute beer (10% ethanol) is concentrated toward the azeotrope in a beer column, and the water-rich stillage bottoms are concentrated in an evaporator whose vapor is recompressed by a mechanical-vapor-recompression (MVR) compressor — recovering the stillage vapor's latent heat as high-grade heating duty instead of venting it, the energy-integration route that eliminates a separate thermal oxidizer.
Ethanol–water distillation
An 8-stage column concentrating ethanol overhead toward the azeotrope (the headline demo).
Tray efficiency — real trays vs ideal stages
The same ethanol–water column solved with a Murphree vapor tray efficiency of 0.7 instead of ideal equilibrium stages. A real sieve/valve tray never reaches full vapor-liquid equilibrium — the vapor leaving it only partly approaches the equilibrium composition with the tray liquid, mixing in un-equilibrated vapor from the tray below: y = E·K·x + (1−E)·y_below (Murphree 1925). At E = 0.7 each of these 12 trays does 70% of an ideal stage's work, so the overhead ethanol is lower than an equilibrium column of the same tray count would predict — which is exactly why a real column needs more trays than a shortcut (ideal-stage) calculation says. Both HYSYS and Aspen RadFrac expose this per-tray efficiency; set murphree_efficiency back to 1.0 to recover the ideal-stage column. The efficiency auto-selects the component-flow Naphtali-Sandholm solver (the reduced-form solvers carry no explicit per-tray VLE row to apply an efficiency to).
Superheated-steam drying loop with MVR heat recovery
A wet cake is dried in a superheated-steam dryer (steam as the drying medium instead of hot air), and the evaporated moisture — pure steam — is recovered by mechanical vapor recompression (MVR) plus a trim superheater into high-grade superheated steam that reheats the recirculating drying medium. Superheated-steam drying is the energy-efficient route for biofuel and food solids (distillers' grains, beet pulp, lignite): because the drying atmosphere is steam, the evaporated water leaves as more steam whose latent heat is recompressed and reused, instead of being lost in a humid exhaust.
Distillation column startup dynamics (feed-rate step)
An 8-stage ethanol-water column at a reduced startup feed rate. Solves the steady state normally; switch to the Dynamic solve mode with weir/level-controlled hydraulics enabled and step the feed rate up (e.g. 6 → 9 mol/s) to watch the bottoms draw genuinely rebalance to the new throughput as the tray inventories fill — a feed-rate disturbance no fixed-hydraulics dynamic model (incl. this same column's own default rigorous mode) can show at all. Honest bound: the vapor traffic is held at its steady-state value in this mode, so the distillate draw (condenser-level-controlled off vapor inflow) does not move for a feed-rate-only step — only the liquid/bottoms side responds.
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.