OpenFOAM-5.x/tutorials/incompressible/simpleFoam/rotorDisk
Henry Weller e3c67dc111 fvOptions: The "<type>Coeffs" sub-dictionary is now optional
For example the actuationDiskSource fvOption may now be specified

disk1
{
    type            actuationDiskSource;

    fields      (U);

    selectionMode   cellSet;
    cellSet         actuationDisk1;
    diskDir         (1 0 0);    // Orientation of the disk
    Cp              0.386;
    Ct              0.58;
    diskArea        40;
    upstreamPoint   (581849 4785810 1065);
}

rather than

disk1
{
    type            actuationDiskSource;
    active          on;

    actuationDiskSourceCoeffs
    {
        fields      (U);

        selectionMode   cellSet;
        cellSet         actuationDisk1;
        diskDir         (1 0 0);    // Orientation of the disk
        Cp              0.386;
        Ct              0.58;
        diskArea        40;
        upstreamPoint   (581849 4785810 1065);
    }
}

but this form is supported for backward compatibility.
2017-04-13 13:30:17 +01:00
..
0 tutorials/incompressible/simpleFoam/rotorDisk: Tutorial for the rotorDiskSource functionObject 2015-07-01 12:37:21 +01:00
constant tutorials: Removed unnecessary "boundary" files 2015-11-13 20:05:37 +00:00
system fvOptions: The "<type>Coeffs" sub-dictionary is now optional 2017-04-13 13:30:17 +01:00
Allclean tutorials: Remove the unnecessary "\"s on "cp", "rm" and "mv" 2016-05-05 15:17:55 +01:00
Allrun snappyHexMesh: Automatically remove zero-sized patches 2016-05-13 17:47:38 +01:00