-
-
Notifications
You must be signed in to change notification settings - Fork 94
Description
Hi there,
This issue was found when I was doing a FSI simulation using OpenFOAM v7 / CalculiX v2.15 / preCICE v2.0.0.
Please let me lead you to this discourse-post for more details.
As suggested by @MakisH , a brief introduction to the settings of turbulence model in OpenFOAM is to simply turn on the turbulence by setting /constant/turbulenceProperties
file, using:
simulationType RAS;
RAS
{
RASModel kOmegaSST;
turbulence on;
}
Of course, the corresponding initial conditions such as k
, omega
, nut
, p
and U
are well defined in the 0/
directory.
When the turbulence model is turned on, the FSI simulation stops at the 2nd iteration of the first time step of the coupling (shown in the figure in the post)
Interestingly however, when I turned off the turbulence (switch to laminar
):
simulationType laminar;
The FSI simulation went well and no errors are reported. However, the results are definitely not I'm expecting since the turbulent behaviours cannot be well resolved in my FSI simulation.
As @MakisH said, I do also suspect this issue might be originated from the OpenFOAM adapter side, so I'm looking for help from developers.
Should you requires more information please contact me directly and I'm happy to assists.