Skip to content

Commit ec42490

Browse files
committed
Make capitalization of the subfolder name consistent with OpenFOAM requirements
1 parent c0c1920 commit ec42490

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

  • benchmarks/rotating-cylinders/openfoam

benchmarks/rotating-cylinders/openfoam/Snakefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@ with open("parameters.json") as f:
55
config = json.load(f)
66

77
rule all:
8-
input: "postprocessing/done"
8+
input: "postProcessing/done"
99

1010

1111
rule run_simulation_container:
1212
input:
1313
template="system/blockMeshDict.template"
1414
output:
1515
directory("1000"),
16-
touch("postprocessing/done")
16+
touch("postProcessing/done")
1717
params:
1818
r0=config["domain"]["r1"],
1919
r1=config["domain"]["r2"],
@@ -43,5 +43,5 @@ rule run_simulation_container:
4343
ls -la
4444
tail log.simpleFoam
4545
46-
touch postprocessing/done
46+
touch postProcessing/done
4747
"""

0 commit comments

Comments
 (0)