We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0c19f20 commit 54f6cdaCopy full SHA for 54f6cda
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