We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f6071ec commit ea1321fCopy full SHA for ea1321f
contrib/perplex/create_lo_res_table.py
@@ -138,8 +138,10 @@ def create_table(
138
temperature_range_total[0] + (i_T + 1) * delta_T,
139
]
140
if n_splits_pressure > 1 or n_splits_temperature > 1:
141
+ split_project_name = f"{project_name}_P{i_P + 1:02d}_T{i_T + 1:02d}"
142
outfile = f"{outfile_base}_P{i_P + 1:02d}_T{i_T + 1:02d}.dat"
143
else:
144
+ split_project_name = project_name
145
outfile = f"{outfile_base}.dat"
146
147
print(
@@ -148,7 +150,7 @@ def create_table(
148
150
# Create the table for the current split
149
151
create_table(
152
perplex_bindir,
- project_name,
153
+ split_project_name,
154
database,
155
perplex_option_file,
156
composition,
0 commit comments