View Issue Details

IDProjectCategoryView StatusLast Update
0001884OpenFOAMBugpublic2015-10-29 14:06
ReporterTomF Assigned Tohenry  
PrioritylowSeverityminorReproducibilityalways
Status resolvedResolutionfixed 
PlatformGNU/LinuxOSOpenSuSEOS Version13.2
Summary0001884: Incorrect description of boundary usage in comment for porousBafflePressureFvPatchField.H
DescriptionIn the commented section of $FOAM_SRC/turbulenceModels/derivedFvPatchFields/porousBafflePressure/porousBafflePressureFvPatchField.H there is an example showing the usage as:

    Example of the boundary condition specification:
    \verbatim
    myPatch
    {
        type porousBafflePressure;
        patchType cyclic;
        jump uniform 0;
        I 1000000;
        D 0.001;
        L 0.1;
        value uniform 0;
    }
    \endverbatim

Using this results in an error specifying that the "keyword length is undefined". The correct usage would be:

    Example of the boundary condition specification:
    \verbatim
    myPatch
    {
        type porousBafflePressure;
        patchType cyclic;
        jump uniform 0;
        I 1000000;
        D 0.001;
        length 0.1;
        value uniform 0;
    }
    \endverbatim
Steps To ReproduceUse the boundary condition with the details as in the source file.
TagsNo tags attached.

Activities

henry

2015-10-29 14:06

manager   ~0005513

Resolved in OpenFOAM-dev by commit 15d700a9665c36aa87a4bf4fa8659c6c020c12b5

Issue History

Date Modified Username Field Change
2015-10-29 13:56 TomF New Issue
2015-10-29 14:06 henry Note Added: 0005513
2015-10-29 14:06 henry Status new => resolved
2015-10-29 14:06 henry Resolution open => fixed
2015-10-29 14:06 henry Assigned To => henry