precice / calculix-adapter

preCICE-adapter for the CSM code CalculiX
GNU General Public License v3.0
51 stars 20 forks source link

Fixed mesh configuration 2D coupling with Face meshes #94

Closed boris-martin closed 2 years ago

boris-martin commented 2 years ago

Context

Quasi2D simulations are currently supported with nodal meshes (for FSI typically) but weren't supported for faces mesh. (i.e. to transfer pressure, heat fluxes, film temperature or convection coefficient, so mostly heat transfer) While with nodal meshes we need some elaborate tricks to convert from 3D to 2D (because there is more than one 3D vertex for a 2D vertex), face meshes are simpler: just cropping the Z-component should work. Since all mappings are consistent, there is no need to pay attention to the number of faces etc.

Changes

When configuring a face mesh in 2D, nothing changes except that if preCICE is configured in 2D, we crop the Z-component when sending the mesh. Previously, sent data was erroneous (CalculiX sends data in the format "x1 y1 z1 x2 y2 z2..." but preCICE expects 2D data so the x-coordinate of the second vertex is z1, and so on).