openfoam/tutorials/multiphase/interPhaseChangeDyMFoam/propeller
Henry Weller 1c687baa35 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
..
0.orig totalPressureFvPatchScalarField, uniformTotalPressureFvPatchScalarField: simplified and rationalized 2016-06-16 12:21:34 +01:00
constant dynamicMotionSolverListFvMesh: New mesh-motion solver supporting multiple moving regions 2016-12-01 15:57:15 +00:00
system Tutorials fvSolution files: removed solver entries which use default 2016-06-15 07:39:12 +01:00
Allclean tutorials: Remove the unnecessary "\"s on "cp", "rm" and "mv" 2016-05-05 15:17:55 +01:00
Allrun bin/tools/RunFunctions: runParallel now obtains the number of processors from numberOfSubdomains 2016-01-27 14:19:25 +00:00
Allrun.pre tutorials: Remove the unnecessary "\"s on "cp", "rm" and "mv" 2016-05-05 15:17:55 +01:00