Compute fluid forces on boundaries #13705
Replies: 1 comment 8 replies
-
There are some utilities to calculate the drag (see the
This normally appears at the very first iteration of the first step as everything is zero. If you're getting this at each time iteration I'm afraid you're right, there's something wrong in your simulation. It seems to me that you're effectively not coupling the two solver.s
I'm not 100% sure of what you actually target. If you need a CFD in which the motion of the boundaries is known, I'd use the CFD ALE solver (
|
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Hello,
I am working on a 2D FSI problem involving two cylinders immersed in a viscous stagnant fluid. One cylinder is fixed while the other one is oscillating around its initial position. My goal is to estimate the hydrodynamic forces (pressure and viscous force) applied onto the two cylinders.
I managed to run simulations but I have some concerns :
How to access to the forces ? I tried converting the bin files to vtk files to calculate the forces with Paraview but it is quite challenging. In fact, I would like to get at the end of the simulations a file that contains all the informations needed (pressure, velocity, normal vectors) at the nodes of the cylinders' boundaries.
At each time iteration, i have this Warning : - ResidualBasedBlockBuilderAndSolver: ATTENTION! setting the RHS to zero!
PartitionedFSIBaseSolver: FSI non-linear iteration = 1 |res|/sqrt(nDOFS) = 0.0
PartitionedFSIBaseSolver: FSI non-linear iteration convergence achieved in 1 iterations. - I ran a test case to compare and the residual is non zero so I assume something goes wrong in my simulations.
I use the FSI module to get access to the "ALE mesh displacement BC" but then I am forced to specifiate a solid with mechanical properties, and mesh it, while I am only interested on the fluid properties and the forces but not the cylinder dynamic. So my question is : is there a way to run the simulation without resolving the dynamics of the cylinder ? Right now I am using the model "Solid small displacements" with the constitutive law "Linear Elastic Plane Strain" and random values of density, young modulus and Poisson ratio.
Any insights or guidance would be greatly appreciated! 🙌
Thanks in advance for the help!
Beta Was this translation helpful? Give feedback.
All reactions