Physics explanations for common NeqSim results. USE WHEN: users ask 'why' about simulation results, when explaining unexpected behavior, or when adding educational context to notebooks and reports. Maps common engineering phenomena to plain-language explanations.
Reference explanations for common thermodynamic and process phenomena. Use these to add educational context to simulation results.
What happens: Gas cools when throttled (expanded through a valve) without doing work. Why: At moderate pressures, intermolecular attraction dominates — expanding gas molecules must overcome attractive forces, consuming internal energy, which lowers temperature. At very high pressures (above the inversion temperature), repulsive forces dominate and the gas heats up instead. Typical values: Natural gas JT coefficient: 0.3-0.7 K/bar. CO2: 0.5-1.2 K/bar (higher because stronger intermolecular forces). Hydrogen: negative (heats on expansion at ambient T). Engineering significance: JT cooling across choke valves can cause hydrate formation, wax deposition, or auto-refrigeration below material design temperature limits (MDMT).
What happens: A gas mixture forms liquid when pressure decreases (opposite of what you'd expect — normally, lowering pressure should vaporize liquid). For mixtures between the cricondenbar and the cricondentherm on the phase envelope, the dew point curve has a retrograde region where the mixture enters the two-phase zone upon depressurization. This occurs because heavier components become less soluble in the lighter gas phase at intermediate pressures. Rich gas/condensate pipelines may form liquid slugs during depressurization. Separator design must account for liquid dropout at pipeline conditions.
What happens: Water molecules form cage-like crystalline structures around small gas molecules (methane, ethane, propane, CO2, H2S) at high pressure and low temperature. Why: At high pressure, gas molecules are forced close to water molecules. Below a certain temperature (the hydrate equilibrium temperature), the water cages become thermodynamically stable. The structure type depends on the guest molecule size: sI (methane, CO2), sII (propane, i-butane), sH (large molecules with help gas). Prevention: (1) Keep temperature above hydrate equilibrium + margin (typically 3-6 C), (2) Inject thermodynamic inhibitors (MEG, methanol) to shift equilibrium, (3) Inject low-dosage hydrate inhibitors (kinetic inhibitors, anti-agglomerants), (4) Insulate pipelines, (5) Remove free water (dehydration).
What happens: The phase envelope shows the boundary between single-phase and two-phase regions on a P-T diagram. Key points:
Why SRK vs PR vs CPA matters:
What the numbers mean:
What determines separation quality:
What the duty number means:
What causes it:
You forgot to call fluid.initProperties() after the flash. The flash calculates
phase compositions and fractions, but transport/physical properties (density, viscosity,
thermal conductivity) require a separate initialization step.
SRK (and PR) cannot model hydrogen bonding between water and hydrocarbons. They predict
water solubility in gas that is either too high or too low depending on conditions.
Use CPA (SystemSrkCPAstatoil) with mixing rule 10 for any system containing water.
The outlet pressure is set lower than the inlet pressure. A compressor increases
pressure — use ThrottlingValve or Expander for pressure reduction.
The inlet fluid may be entirely in one phase at the separator conditions. Run a standalone TPflash on the feed fluid at separator P and T to verify. If only one phase exists, separation isn't physically possible at those conditions.
CO2 has stronger intermolecular forces (quadrupole moment) than methane, so expanding CO2 requires more energy to overcome molecular attraction, producing a larger temperature drop per bar of pressure reduction.
MEG (mono-ethylene glycol) is a thermodynamic hydrate inhibitor. It lowers the activity of water, making it harder for water molecules to form the cage structures around gas molecules. Colligative effect — more inhibitor = lower hydrate T. Typical shift: 1-3 C per 10 wt% MEG in the aqueous phase.
Liquid slugs in gas pipelines cause: (1) increased pressure drop, (2) equipment damage from slug impact on bends and separators, (3) unstable flow delivery to receiving facilities, (4) potential hydrate formation in the liquid phase.
Standard SRK and PR systematically underpredict liquid density (5-15% error).
Volume translation adds a constant shift to the molar volume prediction without
changing the phase equilibrium (VLE). Use SystemSrkEosvolcor or SystemPrEosvolcor
when accurate liquid density is important (pipeline sizing, tank volumes).
Call fluid.setMultiPhaseCheck(true) before the flash. Without this,
the solver only checks for gas/liquid equilibrium and may miss a second liquid
phase (aqueous). This is especially important for CPA systems with water.