OpenFOAM-4.x-lab/src/finiteVolume
Henry Weller 20718552c0 oscillatingFixedValue BC replaced by uniformFixedValue with the new Function1Types::Sine
For example the sinusoidal motion of the floating object in the
potentialFreeSurfaceFoam/oscillatingBox tutorial is now specified thus

    floatingObject
    {
        type            fixedNormalInletOutletVelocity;

        fixTangentialInflow false;

        normalVelocity
        {
            type            uniformFixedValue;
            uniformValue    sine;
            uniformValueCoeffs
            {
                frequency 1;
                amplitude table
                (
                    (   0     0)
                    (  10 0.025)
                    (1000 0.025)
                );
                scale     (0 1 0);
                level     (0 0 0);
            }
        }

        value           uniform (0 0 0);
    }

rather than using

    floatingObject
    {
        type            fixedNormalInletOutletVelocity;

        fixTangentialInflow false;

        normalVelocity
        {
            type            oscillatingFixedValue;
            refValue        uniform (0 1 0);
            offset          (0 -1 0);
            amplitude       table
            (
                (   0     0)
                (  10 0.025)
                (1000 0.025)
            );
            frequency       constant 1;
        }

        value           uniform (0 0 0);
    }
2016-02-09 08:57:42 +00:00
..
cfdTools Rename DataEntry -> Function1 2016-02-08 16:18:07 +00:00
fields oscillatingFixedValue BC replaced by uniformFixedValue with the new Function1Types::Sine 2016-02-09 08:57:42 +00:00
finiteVolume Info -> InfoInFunction and updated comments 2016-01-20 17:51:15 +00:00
fvMatrices Info -> InfoInFunction and updated comments 2016-01-20 16:21:37 +00:00
fvMesh Info -> InfoInFunction and updated comments 2016-01-20 17:51:15 +00:00
interpolation Info -> InfoInFunction and updated comments 2016-01-20 17:51:15 +00:00
Make oscillatingFixedValue BC replaced by uniformFixedValue with the new Function1Types::Sine 2016-02-09 08:57:42 +00:00
surfaceMesh Add the OpenFOAM source tree 2014-12-10 22:40:10 +00:00
volMesh Add the OpenFOAM source tree 2014-12-10 22:40:10 +00:00