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
{{ message }}
This repository was archived by the owner on Jun 7, 2024. It is now read-only.
Copy file name to clipboardExpand all lines: source/RMG/jing/rxnSys/JDAS.java
+19-5Lines changed: 19 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -279,11 +279,25 @@ public void generatePDepReactionList(ReactionModel p_reactionModel,
279
279
// check if this reaction is already in the list and also
280
280
// check if this reaction has a reverse reaction which is already present in the list.
281
281
if (rxn.reactantEqualsProduct()) continue;
282
-
if (troeList.contains(rxn) || troeList.contains(reverse)) continue;
283
-
if (thirdBodyList.contains(rxn) || thirdBodyList.contains(reverse)) continue;
284
-
if (lindemannList.contains(rxn) || lindemannList.contains(reverse)) continue;
285
-
if (seedList.contains(rxn) || seedList.contains(reverse)) continue; // exclude rxns already in seed mechanism
286
-
282
+
if (troeList.contains(rxn) || troeList.contains(reverse)) {
283
+
//Logger.debug(String.format("Excluding FAME-estimated PDep rate for %s from ODEs because its Troe rate is in a reaction library or seed mechanism.",rxn));
284
+
continue; // exclude rxns already in seed mechanism
//Logger.debug(String.format("Excluding FAME-estimated PDep rate for %s from ODEs because its 3-body rate is in a reaction library or seed mechanism.",rxn));
288
+
continue; // exclude rxns already in seed mechanism
//Logger.debug(String.format("Excluding FAME-estimated PDep rate for %s from ODEs because its Lindemann rate is in a reaction library or seed mechanism.",rxn));
292
+
continue; // exclude rxns already in seed mechanism
//Logger.debug(String.format("Excluding FAME-estimated PDep rate for %s from ODEs because it's in the seed mechanism",rxn));
296
+
continue; // exclude rxns already in seed mechanism
297
+
}
298
+
else {
299
+
//Logger.debug(String.format("Including FAME-estimated PDep rate for %s in ODEs because it's not in the seed mechanism, nor does it have a P-dep rate from a reaction library.",rxn));
300
+
}
287
301
if (!pDepList.contains(rxn) && !pDepList.contains(reverse)) {
0 commit comments