We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 37289c7 commit 8e8877dCopy full SHA for 8e8877d
1 file changed
rmgpy/solver/base.pyx
@@ -213,6 +213,8 @@ cdef class ReactionSystem(DASx):
213
self.T = Quantity(conditions['T'], 'K')
214
if 'P' in keys and hasattr(self, 'P'):
215
self.P = Quantity(conditions['P'], 'Pa')
216
+ if 'potential' in keys and hasattr(self, 'potential'):
217
+ self.potential = Quantity(conditions['potential'], 'V')
218
for k in keys:
219
if is_conc:
220
if k in self.initial_concentrations.keys():
0 commit comments