We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b00a89c commit 936b86cCopy full SHA for 936b86c
1 file changed
scripts/importChemkinLibrary.py
@@ -38,7 +38,7 @@
38
species.label = getSpeciesIdentifier(species)
39
species.index = -1
40
# load thermo library entries
41
- thermoLibrary = ThermoLibrary()
+ thermoLibrary = ThermoLibrary(name=name)
42
for i in range(len(speciesList)):
43
species = speciesList[i]
44
if species.thermo:
@@ -52,7 +52,7 @@
52
logging.warning('Species {0} did not contain any thermo data and was omitted from the thermo library.'.format(str(species)))
53
54
# load kinetics library entries
55
- kineticsLibrary = KineticsLibrary()
+ kineticsLibrary = KineticsLibrary(name=name)
56
kineticsLibrary.entries = {}
57
for i in range(len(reactionList)):
58
reaction = reactionList[i]
0 commit comments