openfoam/tutorials/incompressible
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
..
adjointShapeOptimizationFoam/pitzDaily Tutorials fvSolution files: removed solver entries which use default 2016-06-15 07:39:12 +01:00
boundaryFoam tutorials/incompressible/boundaryFoam/boundaryWallFunctionsProfile: Corrected typo 2016-08-01 20:10:19 +01:00
icoFoam Removed fixedWalls from cuttingPatches because it is redundant now fixedWalls is noSlip 2016-06-08 14:08:26 +01:00
nonNewtonianIcoFoam/offsetCylinder Tutorials fvSolution files: removed solver entries which use default 2016-06-15 07:39:12 +01:00
pimpleDyMFoam dynamicMotionSolverListFvMesh: New mesh-motion solver supporting multiple moving regions 2016-12-01 15:57:15 +00:00
pimpleFoam Maxwell model for viscoelasticity using the upper-convected time 2016-09-20 18:38:15 +01:00
pisoFoam foamCleanTutorials: Simplified cleaning the mesh by removing the constant/polyMesh directory 2016-10-13 15:02:32 +01:00
porousSimpleFoam Tutorials fvSolution files: removed solver entries which use default 2016-06-15 07:39:12 +01:00
shallowWaterFoam/squareBump tutorials/incompressible/shallowWaterFoam/squareBump/.gmtcommands4: deleted 2016-09-25 16:53:37 +01:00
simpleFoam PBiCGStab: New preconditioned bi-conjugate gradient stabilized solver for asymmetric lduMatrices 2016-09-05 11:46:42 +01:00
SRFPimpleFoam/rotor2D Allwmake: Remove 'set -x' which generates a lot of noise 2016-11-13 18:08:22 +00:00
SRFSimpleFoam/mixer tutorials and templates: Updated wall BC for velocity to noSlip 2016-02-09 20:08:34 +00:00