|
16 | 16 | * <li>Flash calculations converge and produce physically valid results (VF in [0,1], positive |
17 | 17 | * density, positive pressure).</li> |
18 | 18 | * <li>For light components (ω ≤ 0.49) PR-LK and PR78 give identical VF (same m-factor).</li> |
19 | | - * <li>For mixtures containing heavy pseudo-components (ω > 0.49) PR-LK and PR78 differ |
20 | | - * measurably, because PR-LK applies the PR76 m-factor to all components while PR78 uses a |
21 | | - * modified polynomial for ω > 0.49.</li> |
| 19 | + * <li>For mixtures containing heavy pseudo-components (ω > 0.49) PR-LK and PR78 differ measurably, |
| 20 | + * because PR-LK applies the PR76 m-factor to all components while PR78 uses a modified polynomial |
| 21 | + * for ω > 0.49.</li> |
22 | 22 | * <li>Clone preserves model name.</li> |
23 | 23 | * </ol> |
24 | 24 | */ |
@@ -83,8 +83,8 @@ public void testVfEqualsToPr78ForLightComponents() { |
83 | 83 |
|
84 | 84 | // PR76 == PR78 for omega < 0.49 -> VF must agree within numerical precision |
85 | 85 | assertEquals(vfPr78, vfLk, 1e-6, |
86 | | - "PR-LK and PR78 should give identical VF for light components; got LK=" |
87 | | - + vfLk + " vs PR78=" + vfPr78); |
| 86 | + "PR-LK and PR78 should give identical VF for light components; got LK=" + vfLk + " vs PR78=" |
| 87 | + + vfPr78); |
88 | 88 | } |
89 | 89 |
|
90 | 90 | @Test |
@@ -125,8 +125,8 @@ public void testVfDifferentFromPr78ForHeavyComponents() { |
125 | 125 |
|
126 | 126 | // PR76 != PR78 for heavy components -> VF must differ by more than numerical noise |
127 | 127 | assertTrue(Math.abs(vfLk - vfPr78) > 1e-6, |
128 | | - "PR-LK and PR78 should give different VF for heavy components (omega>0.49); got LK=" |
129 | | - + vfLk + " vs PR78=" + vfPr78); |
| 128 | + "PR-LK and PR78 should give different VF for heavy components (omega>0.49); got LK=" + vfLk |
| 129 | + + " vs PR78=" + vfPr78); |
130 | 130 | } |
131 | 131 |
|
132 | 132 | @Test |
|
0 commit comments