Skip to content

Commit 2a392fe

Browse files
authored
Merge pull request #56 from su2code/update_fsi_python
Update fsi python
2 parents 2698662 + 119d55c commit 2a392fe

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

_tutorials/multiphysics/Unsteady_FSI_Python/Dynamic_FSI_Python.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ Available keywords for the config file:
215215

216216
* __RESTART_SOL__ (string): YES or NO
217217

218-
* __MOVING_MARKER__ (string): name for the interface marker
218+
* __MOVING_MARKER__ (string): numerical ID of the SET1 card indentifying the group of nodes to be used as interface
219219

220220
* __IMPOSED_MODES__ (dictionary): In case of imposed motion this list contains the modes with imposed motion and the type of motion. Example: ```IMPOSED_MODES={0:["SINUSOIDAL"],3:["BLENDED_STEP"],4:["SINUSOIDAL"]}```. If more imposed motions have to be superposed on the same mode, we can write: ```IMPOSED_MODES={0:["SINUSOIDAL","BLENDED_STEP"]}```
221221

@@ -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)