Dear preCICE community,
I have successfully coupled our in-house finite-volume CFD solver with preCICE. Last week, I migrated our adapter from preCICE 2.X to preCICE 3.X. Thanks to the clear documentation on the website, the transition was smooth and quick.
I am currently running the FSI3 test case from Turek, using CalculiX as the structural solver. Forces and displacements are exchanged, and the acceleration method employed is constant under-relaxation.
The FSI coupling performs well when using the serial-implicit scheme. The results are satisfactory, mapping-independent, and consistent across different time-discretization methods.
Encouraged by this, I switched to parallel-implicit coupling. However, with this scheme, the FSI coupling is not as smooth. Using an implicit time-discretization on the CFD solver side, the coupling remains stable, but the results are not smooth. When switching to an explicit time-discretization, the coupling diverges. I am currently investigating the cause of this behavior.
From the documentation, I identified two key differences between serial-implicit and parallel-implicit coupling:
- Data Exchange Timing:
- In serial-implicit, the first participant uses the data from the previous iteration of the second participant to compute its solution for the current iteration. This updated solution is then sent to the second participant, which uses it to compute its own solution for the current iteration.
- In parallel-implicit, both solvers update their solutions for the current iteration simultaneously, using only the data from the previous iteration.
- Acceleration Method Application:
- In serial-implicit, acceleration is applied only to the coupling data exchanged from the
second
to thefirst
participant. - In parallel-implicit, acceleration is applied to all coupling data in both directions.
Are there any other significant differences between these two coupling schemes that I should be aware of?
Thank you in advance for your insights!
Best regards,
Guillaume De Nayer