Skip to content

Commit 72a4d62

Browse files
committed
FDS Utilities: Change cantera solution file format.
1 parent 2839e25 commit 72a4d62

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Utilities/Python/scripts/cantera_reaction_rates.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ def save_csv_file(fullFilePath, csvdata):
2020
csvdata = csvdata.apply(lambda x: x.str.strip() if x.dtype == 'object' else x)
2121
csvdata.replace('nan','',inplace=True)
2222
csvdata.replace('NAN','',inplace=True)
23-
csvdata = csvdata.map(lambda x: f'{x:12.5f}' if isinstance(x, (float)) else x)
23+
csvdata = csvdata.map(lambda x: f'{x:10.5f}' if isinstance(x, (float)) else x)
2424
csvdata.to_csv(fullFilePath,index=False)
2525

2626

0 commit comments

Comments
 (0)