Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion rmgpy/solver/base.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -714,7 +714,8 @@ cdef class ReactionSystem(DASx):
if sensitivity:
time_array = []
norm_sens_array = [[] for spec in self.sensitive_species]
Comment thread
sevyharris marked this conversation as resolved.
RTP = constants.R * self.T.value_si / self.P.value_si
if not self.constant_volume:
RTP = constants.R * self.T.value_si / self.P.value_si
# identify sensitive species indices
sens_species_indices = np.array([species_index[spec] for spec in self.sensitive_species],
int) # index within core_species list of the sensitive species
Expand Down
Loading
Loading