Skip to content

v1.2.3

Compare
Choose a tag to compare
@davidscn davidscn released this 20 Jun 12:56
· 66 commits to master since this release
0acfa0f

This is a bugfix release, which fixes the erroneous data handling for multi-patch interfaces in FSI simulations. Multi-patch interface means that multiple patches are used within a single interface, e.g.,

(preciceDict excerpt)

...
interfaces
{
  Interface1
  {
    mesh              Fluid-Mesh;
    patches           (cylinder wall);
   }
}
...

having multiple interfaces with one patch per interface is not affected by this bug, e.g.,

...
interfaces
{
  Interface1
  {
    mesh              Fluid-Cylinder;
    patches           (cylinder);
   }
  Interface2
  {
    mesh              Fluid-Wall;
    patches           (wall);
   }
}
...

See #289 for more details or v1.2.2...v1.2.3 for all details on what changed.