@@ -35,8 +35,8 @@ def temp_values(S, NatomE, tol):
35
35
return (temp_ind , temp_ind_nswt , temp_ind_swt , temp_ind_E , temp_NE , temp_NS , temp_ind_remove )
36
36
37
37
def remove_item (N0 , zip1 , zip2 , ls1 , ls2 , NP , SIZE ):
38
- """ Remove species from the computed indeces list of gaseous and condensed species
39
- and append the indeces of species that we have to remove """
38
+ """ Remove species from the computed indexes list of gaseous and condensed species
39
+ and append the indexes of species that we have to remove """
40
40
ls0 = []
41
41
for n , ind in zip (zip1 , zip2 ):
42
42
if log (n / NP ) < - SIZE :
@@ -118,8 +118,7 @@ def print_moles(N0, LS, it):
118
118
#@profile
119
119
def equilibrium (self , pP , TP , strR ):
120
120
""" Generalized Gibbs minimization method """
121
- E , S , C , PD , TN , strThProp = [self .E , self .S , self .C , self .PD ,
122
- self .TN , self .strThProp ]
121
+ S , C , strThProp = [self .S , self .C , self .strThProp ]
123
122
N0 , A0 = (C .N0 .Value , C .A0 .Value )
124
123
R0 = C .R0
125
124
R0TP = R0 * TP # [J/(mol)]
@@ -134,7 +133,7 @@ def equilibrium(self, pP, TP, strR):
134
133
SIZE = - log (C .tolN )
135
134
e = 0.
136
135
STOP = 1.
137
- # Find indeces of the species/elements that we have to remove from the stoichiometric matrix A0
136
+ # Find indexes of the species/elements that we have to remove from the stoichiometric matrix A0
138
137
# for the sum of elements whose value is <= tolN
139
138
ind_A0_E0 = remove_elements (NatomE , A0 , self .C .tolN )
140
139
# List of indices with nonzero values
0 commit comments