From b5c2881f64f10845565e7c62096dce505beb9a2f Mon Sep 17 00:00:00 2001 From: "Bryan W. Weber" Date: Mon, 6 Jan 2014 18:46:55 +0000 Subject: [PATCH] [ck2cti] Add extra info about handling of extra thermo parameters See Issue 199. --- interfaces/cython/cantera/ck2cti.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/interfaces/cython/cantera/ck2cti.py b/interfaces/cython/cantera/ck2cti.py index d812f5f48..4394c6f78 100644 --- a/interfaces/cython/cantera/ck2cti.py +++ b/interfaces/cython/cantera/ck2cti.py @@ -1443,7 +1443,8 @@ class Parser(object): species = self.speciesDict[label] # use the first set of thermo data found if species.thermo is not None: - self.warn('Found additional thermo entry for species {0}'.format(label)) + self.warn('Found additional thermo entry for species {0}. ' + 'If --permissive was given, the first entry is used.'.format(label)) else: species.thermo = thermo species.composition = comp @@ -1479,7 +1480,8 @@ class Parser(object): species = self.speciesDict[label] # use the first set of thermo data found if species.thermo is not None: - self.warn('Found additional thermo entry for species {0}'.format(label)) + self.warn('Found additional thermo entry for species {0}. ' + 'If --permissive was given, the first entry is used.'.format(label)) else: species.thermo = thermo species.composition = comp