OpenFOAM-5.x/tutorials/incompressible
Henry Weller 045014d232 porosityModel: The "<porosityModel>Coeffs" sub-dictionary is now optional
For example the porosity coefficients may now be specified thus:

porosity1
{
    type            DarcyForchheimer;

    cellZone        porosity;

    d   (5e7 -1000 -1000);
    f   (0 0 0);

    coordinateSystem
    {
        type    cartesian;
        origin  (0 0 0);
        coordinateRotation
        {
            type    axesRotation;
            e1      (0.70710678 0.70710678 0);
            e2      (0 0 1);
        }
    }
}

rather than

porosity1
{
    type            DarcyForchheimer;
    active          yes;
    cellZone        porosity;

    DarcyForchheimerCoeffs
    {
        d   (5e7 -1000 -1000);
        f   (0 0 0);

        coordinateSystem
        {
            type    cartesian;
            origin  (0 0 0);
            coordinateRotation
            {
                type    axesRotation;
                e1      (0.70710678 0.70710678 0);
                e2      (0 0 1);
            }
        }
    }
}

support for which is maintained for backward compatibility.
2017-04-13 14:00:00 +01:00
..
adjointShapeOptimizationFoam/pitzDaily pitzDaily tutorials: updated blockMeshDict files to use multi-grading 2017-03-17 12:42:20 +00: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:37 +01:00
pimpleDyMFoam wingMotion tutorial: Corrected fvSolution file 2017-03-09 23:11:30 +00:00
pimpleFoam fvOptions: The "<type>Coeffs" sub-dictionary is now optional 2017-04-13 13:30:17 +01:00
pisoFoam fvOptions: The "<type>Coeffs" sub-dictionary is now optional 2017-04-13 13:30:17 +01:00
porousSimpleFoam porosityModel: The "<porosityModel>Coeffs" sub-dictionary is now optional 2017-04-13 14:00:00 +01:00
shallowWaterFoam/squareBump tutorials/incompressible/shallowWaterFoam/squareBump/.gmtcommands4: deleted 2016-09-25 16:53:37 +01:00
simpleFoam fvOptions: The "<type>Coeffs" sub-dictionary is now optional 2017-04-13 13:30:17 +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