Skip to content

Commit 119d55c

Browse files
authored
Update Dynamic_FSI_Python.md
1 parent 7f13155 commit 119d55c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

_tutorials/multiphysics/Unsteady_FSI_Python/Dynamic_FSI_Python.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -317,10 +317,10 @@ $ python3 /your/path/to/fsi_computation.py -f fsi.cfg
317317
If you built you version of SU2 in parallel, run instead:
318318

319319
```
320-
$ mpirun -np X python3 /your/path/to/fsi_computation.py --parallel -f fsi.cfg
320+
$ mpirun -np X python3 -m mpi4py /your/path/to/fsi_computation.py --parallel -f fsi.cfg
321321
```
322322

323-
Substituting X with the appropriate number of cores.
323+
Substituting X with the appropriate number of cores. The ```-m``` flag set to ```mpi4py``` will instruct python to call ```MPI_Abort()``` in case of unhandled exceptions. In this way, you will avoid reaching deadlocks during execution.
324324

325325
You will see, after the usual preprocessing steps, the following output:
326326

0 commit comments

Comments
 (0)