Skip to content

Commit e8d0cd2

Browse files
committed
Run motorbike sequentially and make it readable
1 parent a87b916 commit e8d0cd2

5 files changed

Lines changed: 12 additions & 11 deletions

File tree

tutorials/incompressibleFluid/motorBike/lesFiles/Allrun

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ ls -d processor* | xargs -I {} rm -rf ./{}/0
1212
ls -d processor* | xargs -I {} mv ./{}/500 ./{}/0
1313
ls -d processor* | xargs -I {} rm -rf ./{}/0/uniform
1414

15-
runParallel foamRun
15+
runApplication foamRun
1616

1717
runApplication reconstructPar
1818

tutorials/incompressibleFluid/motorBike/motorBike/Allrun

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@ cp $FOAM_TUTORIALS/resources/geometry/motorBike.obj.gz constant/geometry/
99

1010
runApplication blockMesh
1111
runApplication decomposePar -copyZero
12-
runParallel snappyHexMesh -overwrite
12+
runApplication snappyHexMesh -overwrite
1313

1414
find . -type f -iname "*level*" -exec rm {} \;
1515

16-
runParallel renumberMesh -overwrite
16+
runApplication renumberMesh -overwrite
1717

18-
runParallel potentialFoam -initialiseUBCs
18+
runApplication potentialFoam -initialiseUBCs
1919

20-
runParallel foamRun
20+
runApplication foamRun
2121

2222
#------------------------------------------------------------------------------

tutorials/incompressibleFluid/motorBike/motorBike/system/controlDict

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ writeInterval 500;
3232

3333
purgeWrite 0;
3434

35-
writeFormat binary;
35+
writeFormat ascii;
3636

3737
writePrecision 6;
3838

tutorials/incompressibleFluid/motorBikeSteady/Allrun

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ runApplication surfaceFeatures
1111
runApplication blockMesh
1212

1313
runApplication decomposePar -copyZero
14-
runParallel snappyHexMesh -overwrite
14+
runApplication snappyHexMesh -overwrite
1515

16-
runParallel patchSummary
17-
runParallel potentialFoam
18-
runParallel foamRun
16+
runApplication patchSummary
17+
runApplication potentialFoam
18+
runApplication foamRun
1919

2020
runApplication reconstructPar -latestTime
2121

tutorials/incompressibleFluid/motorBikeSteady/system/controlDict

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ FoamFile
99
{
1010
format ascii;
1111
class dictionary;
12+
location "system";
1213
object controlDict;
1314
}
1415
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
@@ -31,7 +32,7 @@ writeInterval 100;
3132

3233
purgeWrite 0;
3334

34-
writeFormat binary;
35+
writeFormat ascii;
3536

3637
writePrecision 6;
3738

0 commit comments

Comments
 (0)