Skip to content

Commit 55e25ce

Browse files
committed
Save cantera files that were made from chemkin files to a separate folder.
So they don't over-write the ones that are being written directly.
1 parent d350c21 commit 55e25ce

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

rmgpy/rmg/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1810,7 +1810,7 @@ def generate_cantera_files(self, chemkin_file, **kwargs):
18101810
"""
18111811
transport_file = os.path.join(os.path.dirname(chemkin_file), "tran.dat")
18121812
file_name = os.path.splitext(os.path.basename(chemkin_file))[0] + ".yaml"
1813-
out_name = os.path.join(self.output_directory, "cantera", file_name)
1813+
out_name = os.path.join(self.output_directory, "cantera_from_ck", file_name)
18141814
if "surface_file" in kwargs:
18151815
out_name = out_name.replace("-gas.", ".")
18161816
cantera_dir = os.path.dirname(out_name)

0 commit comments

Comments
 (0)