OpenFOAM-4.x-lab/src
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
..
combustionModels Update code to use the simpler C++11 template syntax removing spaces between closing ">"s 2016-01-10 22:41:16 +00:00
conversion Make disallowed member functions private 2016-01-20 10:41:14 +00:00
dummyThirdParty Completed update ...ErrorIn -> ...ErrorInFunction 2015-11-11 09:03:39 +00:00
dynamicFvMesh Rename DataEntry -> Function1 2016-02-08 16:18:07 +00:00
dynamicMesh processorPolyPatch, processorCyclicPolyPatch: Rationalized the construction of the patch name 2016-02-02 20:07:16 +00:00
edgeMesh Info -> InfoInFunction and updated comments 2016-01-20 17:51:15 +00:00
engine Completed update ...ErrorIn -> ...ErrorInFunction 2015-11-11 09:03:39 +00:00
fileFormats Update headers 2016-01-11 13:02:52 +00:00
finiteVolume oscillatingFixedValue BC replaced by uniformFixedValue with the new Function1Types::Sine 2016-02-09 08:57:42 +00:00
fvAgglomerationMethods Update code to use the simpler C++11 template syntax removing spaces between closing ">"s 2016-01-10 22:41:16 +00:00
fvMotionSolver Rename DataEntry -> Function1 2016-02-08 16:18:07 +00:00
fvOptions Rename DataEntry -> Function1 2016-02-08 16:18:07 +00:00
genericPatchFields Update code to use the simpler C++11 template syntax removing spaces between closing ">"s 2016-01-10 22:41:16 +00:00
lagrangian Rename DataEntry -> Function1 2016-02-08 16:18:07 +00:00
mesh Rename DataEntry -> Function1 2016-02-08 16:18:07 +00:00
meshTools coordinateSystems/coordinateRotation: Corrected e1, e2 and e3 and updated documentation 2016-01-29 09:56:59 +00:00
ODE Completed update ...ErrorIn -> ...ErrorInFunction 2015-11-11 09:03:39 +00:00
OpenFOAM Function1: Rationalized the stream output 2016-02-08 21:43:56 +00:00
OSspecific/POSIX Info -> InfoInFunction 2016-01-19 21:58:11 +00:00
parallel Info -> InfoInFunction and updated comments 2016-01-20 16:21:37 +00:00
postProcessing Rename DataEntry -> Function1 2016-02-08 16:18:07 +00:00
Pstream Completed update ...ErrorIn -> ...ErrorInFunction 2015-11-11 09:03:39 +00:00
randomProcesses Completed update ...ErrorIn -> ...ErrorInFunction 2015-11-11 09:03:39 +00:00
regionCoupled Update code to use the simpler C++11 template syntax removing spaces between closing ">"s 2016-01-10 22:41:16 +00:00
regionModels Rename DataEntry -> Function1 2016-02-08 16:18:07 +00:00
renumber Completed update ...ErrorIn -> ...ErrorInFunction 2015-11-11 09:03:39 +00:00
sampling rawSurfaceWriter: Added support for compressed output 2016-02-02 20:22:27 +00:00
sixDoFRigidBodyMotion Update code to use the simpler C++11 template syntax removing spaces between closing ">"s 2016-01-10 22:41:16 +00:00
surfMesh Info -> InfoInFunction and updated comments 2016-01-20 17:51:15 +00:00
thermophysicalModels Rename DataEntry -> Function1 2016-02-08 16:18:07 +00:00
topoChangerFvMesh Info -> InfoInFunction and updated comments 2016-01-20 10:18:13 +00:00
transportModels Rename DataEntry -> Function1 2016-02-08 16:18:07 +00:00
triSurface Add support for flex-2.6 2016-01-18 19:44:38 +00:00
TurbulenceModels TurbulenceModels: Reorder stress component evaluation 2016-02-04 20:23:22 +00:00
Allwmake fvOptions: wmakeLnInclude before building the TurbulenceModels libraries 2015-12-01 13:10:51 +00:00