Skip to content

Commit

Permalink
make phaseFractionMinimumLimit static (#1126)
Browse files Browse the repository at this point in the history
  • Loading branch information
EvenSol authored Oct 3, 2024
1 parent 6468ce9 commit df1584a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
*/
public interface ThermodynamicModelSettings extends java.io.Serializable {
/** Constant <code>phaseFractionMinimumLimit=1e-12</code>. */
double phaseFractionMinimumLimit = 1e-12;
static double phaseFractionMinimumLimit = 1e-12;
/** Constant <code>MAX_NUMBER_OF_COMPONENTS=100</code>. */
int MAX_NUMBER_OF_COMPONENTS = 100;
}

0 comments on commit df1584a

Please sign in to comment.