diff --git a/src/thermophysicalModels/reactionThermo/chemistryReaders/chemkinReader/chemkinLexer.L b/src/thermophysicalModels/reactionThermo/chemistryReaders/chemkinReader/chemkinLexer.L index 6db89e7a69..98a7bbd29c 100644 --- a/src/thermophysicalModels/reactionThermo/chemistryReaders/chemkinReader/chemkinLexer.L +++ b/src/thermophysicalModels/reactionThermo/chemistryReaders/chemkinReader/chemkinLexer.L @@ -158,13 +158,15 @@ reactionCoeff {space}{floatNum}{space} calPerMol {space}"CAL/MOLE"{space} kcalPerMol {space}"KCAL/MOLE"{space} joulePerMol {space}"JOULES/MOLE"{space} -otherReactionsUnit {space}("KELVINS"|"EVOLTS"|"MOLES"|"MOLECULES"){space} +kelvins {space}"KELVINS"{space} +otherReactionsUnit {space}("EVOLTS"|"MOLES"|"MOLECULES"){space} cal {space}"CAL"{space} kcal {space}"KCAL"{space} joule {space}"JOUL"{space} kjoule {space}"KJOU"{space} -otherReactionUnit {space}("MOLE"|"MOLECULE"|"KELV"|"KELVIN"|"EVOL"|"EVOLTS"){space} +kelvin {space}("KELV"|"KELVIN"){space} +otherReactionUnit {space}("MOLE"|"MOLECULE"|"EVOL"|"EVOLTS"){space} /* ------------------------------------------------------------------------- *\ @@ -677,6 +679,10 @@ bool finishReaction = false; RRreactions = RRjoule; } +{kelvins} { + RRreactions = 1.0; + } + {otherReactionsUnit} { } @@ -1483,6 +1489,10 @@ bool finishReaction = false; RRreaction = RRjoule/1000.0; } +{kelvin} { + RRreaction = 1.0; + } + {otherReactionsUnit} { }