Hopefully, we have convinced you that the use of cubic equations of state can represent a very meaningful and advantageous way of modeling the PVT behavior of petroleum fluids. What we need now are the tools that will allow us to get the information that we want out of them. Even though cubic equations of state are explicit in pressure, pressure is not the common unknown to be calculated in the typical problem. In the most common problem, pressure and temperature are known and we want either molar volume (or its reciprocal, molar density) or compressibility factor (the most likely case). Therefore, we are faced very often with the need to solve for the roots of a cubic expression. Here we present a number of approaches that may be followed.
Analytical scheme
Given the cubic polynomial with real coefficients: x3 + ax2 + bx + c = 0, the first step is to calculate the parameters:
(11.5)
Now let M = R2 – Q3 be the discriminant. We then consider the following cases:
-
If M < 0 (R2 < Q3), the polynomial has three real roots. For this case, compute and calculate the three distinct real roots as:
(11.6a)
(11.6b)
(11.6c)
Note that x1, x2, x3 are not given in any special order, and that has to be calculated in radians.
-
If M > 0 (R2 > Q3), the polynomial has only one real root. Compute:
(11.7a)
(11.7b)
and calculate the real root as follows:
(11.7c)
Two complex roots (complex conjugates) may be found as well. However, they are of no interest for our purposes, and thus no formulas are provided. Such formulas can be found in the following suggested readings:
- W.H. Press, S.A. Teukolsky, W.T. Vetterling, B.P. Flannery, Numerical Recipes in Fortran, 2nd Edition, Cambridge Univ. Press, (1992), p. 179.
- Spiegel, M., Liu, J., Mathematical handbook of formulas and tables, 2nd Edition, Schaum’s Outline Series, McGraw Hill, p.10.
Sometimes, the equations for S and T listed above cause problems while programming. This usually happens whenever the computer/calculator performs the cubic root of a negative quantity. If you want to avoid such a situation, you may compute S’ and T’ instead:
(making T’=0 when S’=0)
where:
abs(R) = Absolute value of R
and
sign(R) = (+1) or (– 1) if R is positive or negative respectively.
It may be defined as:
sign(R) = R/Abs(R)
and then the real root is:
Keep in mind the following useful relationships among the roots of any cubic expression:
(11.8a)
(11.8b)
(11.8c)
Self-Check
Test your understanding of cubic root calculations by analytical means by solving the following examples.
With general cubic expressions,
with EOS in terms of volume (v), for a pure component,
=> One real root (one phase),
Another example,
=> Two possible phases (three real roots),
with EOS in terms of the compressibility factor (z), for a pure component,
=> One phase,
Another example,
=> Two possible phases,
Numerical Scheme
The Newton-Raphson method provides a useful scheme for solving for a non-explicit variable from any form of equation (not only cubic ones). Newton-Raphson is an iterative procedure with a fast convergence, although it is not always capable of providing an answer — because a first guess close enough to the actual answer must be provided.
In solving for “x” in any equation of the type f(x)=0, the method provides a new estimate (new guess) closer to the actual answer, based on the previous estimate (old guess). This is written as follows:
(11.9)
Considering a cubic equation , the previous equation takes the form:
(11.10)
The iterations continue until no significant improvement for “xnew” is achieved, i.e., | xnew – xold | < tolerance. An educated guess must be provided as the starting value for the iterations. If you are solving a cubic equation in Z (compressibility factor), it is usually recommend to take Z = bP/RT as the starting guess for the compressibility of the liquid phase and Z = 1 for the vapor root.
Semi-analytical Scheme
If you used the previous numerical approach to calculate one of the roots of the cubic expression, the semi-analytical scheme can give you the other two real roots (when they exist). By using the relationships given before, with the value ‘x1’ as the root already known, the other two roots are calculated by solving the system of equations:
(11.11a)
(11.11b)
which leads to a quadratic expression.
This procedure can be reduced to the following steps:
-
Let be the original cubic polynomial and “E” the root which is already known (x1 = E). Then, we may factorize such a cubic expression as:
(11.12a)
where:
(11.12b)
(11.12c)
-
Solve for x2, x3 by using the quadratic expression formulae,
(11.13a)
(11.13b)
(11.13c)