OpenFOAM-5.x/tutorials/multiphase/interDyMFoam/RAS
Henry Weller 2eac40eac6 dynamicMotionSolverListFvMesh: New mesh-motion solver supporting multiple moving regions
e.g. the motion of two counter-rotating AMI regions could be defined:

dynamicFvMesh   dynamicMotionSolverListFvMesh;

solvers
(
    rotor1
    {
        solver solidBody;

        cellZone        rotor1;

        solidBodyMotionFunction  rotatingMotion;
        rotatingMotionCoeffs
        {
            origin        (0 0 0);
            axis          (0 0 1);
            omega         6.2832; // rad/s
        }
    }

    rotor2
    {
        solver solidBody;

        cellZone        rotor2;

        solidBodyMotionFunction  rotatingMotion;
        rotatingMotionCoeffs
        {
            origin        (0 0 0);
            axis          (0 0 1);
            omega         -6.2832; // rad/s
        }
    }
);

Any combination of motion solvers may be selected but there is no special
handling of motion interaction; the motions are applied sequentially and
potentially cumulatively.

To support this new general framework the solidBodyMotionFvMesh and
multiSolidBodyMotionFvMesh dynamicFvMeshes have been converted into the
corresponding motionSolvers solidBody and multiSolidBody and the tutorials
updated to reflect this change e.g. the motion in the mixerVesselAMI2D tutorial
is now defined thus:

dynamicFvMesh   dynamicMotionSolverFvMesh;

solver solidBody;

solidBodyCoeffs
{
    cellZone        rotor;

    solidBodyMotionFunction  rotatingMotion;
    rotatingMotionCoeffs
    {
        origin        (0 0 0);
        axis          (0 0 1);
        omega         6.2832; // rad/s
    }
}
2016-12-01 15:57:15 +00:00
..
damBreakWithObstacle tutorials: Renamed sub-directories ras -> RAS and les -> LES 2016-09-20 19:03:40 +01:00
DTCHull tutorials: Renamed sub-directories ras -> RAS and les -> LES 2016-09-20 19:03:40 +01:00
floatingObject tutorials: Renamed sub-directories ras -> RAS and les -> LES 2016-09-20 19:03:40 +01:00
mixerVesselAMI dynamicMotionSolverListFvMesh: New mesh-motion solver supporting multiple moving regions 2016-12-01 15:57:15 +00:00
sloshingTank2D dynamicMotionSolverListFvMesh: New mesh-motion solver supporting multiple moving regions 2016-12-01 15:57:15 +00:00
sloshingTank2D3DoF dynamicMotionSolverListFvMesh: New mesh-motion solver supporting multiple moving regions 2016-12-01 15:57:15 +00:00
sloshingTank3D dynamicMotionSolverListFvMesh: New mesh-motion solver supporting multiple moving regions 2016-12-01 15:57:15 +00:00
sloshingTank3D3DoF dynamicMotionSolverListFvMesh: New mesh-motion solver supporting multiple moving regions 2016-12-01 15:57:15 +00:00
sloshingTank3D6DoF dynamicMotionSolverListFvMesh: New mesh-motion solver supporting multiple moving regions 2016-12-01 15:57:15 +00:00
testTubeMixer dynamicMotionSolverListFvMesh: New mesh-motion solver supporting multiple moving regions 2016-12-01 15:57:15 +00:00