You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/Phase.jl
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -150,9 +150,9 @@ function getveckinetics(rxns)
150
150
otherrxninds =Array{Int64,1}()
151
151
for (i,tp) inenumerate(tps)
152
152
iftypeof(tp)<:Tuple
153
-
typ = tp[1]
153
+
typ =split(tp[1],".")[end] #this split needs done because in pyrms the type names come as ReactionMechanismSimulator.Arrhenius instead of Arrhenius in RMS proper
154
154
else
155
-
typ =tp
155
+
typ =split(tp,".")[end]
156
156
end
157
157
rinds = [findfirst(isequal(rxn),rxns) for rxn in rxnlists[i]]
0 commit comments