Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
EvenSol committed May 1, 2024
1 parent 99e9378 commit fcbd8ed
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,7 @@ public class RachfordRice {
* @throws neqsim.util.exception.IsNaNException if any.
* @throws neqsim.util.exception.TooManyIterationsException if any.
*/
public static double calcBeta2(double[] K, double[] z)
throws neqsim.util.exception.IsNaNException,
public static double calcBeta(double[] K, double[] z) throws neqsim.util.exception.IsNaNException,
neqsim.util.exception.TooManyIterationsException {

int i;
Expand Down Expand Up @@ -160,7 +159,8 @@ public static double calcBeta2(double[] K, double[] z)
* @throws neqsim.util.exception.IsNaNException if any.
* @throws neqsim.util.exception.TooManyIterationsException if any.
*/
public static double calcBeta(double[] K, double[] z) throws neqsim.util.exception.IsNaNException,
public static double calcBeta2(double[] K, double[] z)
throws neqsim.util.exception.IsNaNException,
neqsim.util.exception.TooManyIterationsException {

double tolerance = neqsim.thermo.ThermodynamicModelSettings.phaseFractionMinimumLimit;
Expand Down

0 comments on commit fcbd8ed

Please sign in to comment.