View Issue Details

IDProjectCategoryView StatusLast Update
0001407OpenFOAMBugpublic2014-10-15 08:53
ReporterShorty Assigned Touser4 
PrioritynormalSeverityminorReproducibilityalways
Status resolvedResolutionno change required 
PlatformLinuxOSUbuntuOS Version14.04
Summary0001407: Additional »inGroups« inseration with createBaffles in boundary type »slip«
DescriptionThere is a bug while using createBaffles. The utility always creates a copy of inGroups in the boundary file:

Befor createBaffles:

    topAndBottom
    {
        type slip;
        inGroups 1(slip);
        nFaces 200;
        startFace 37302;
    }

After createBaffles:

    topAndBottom
    {
        type slip;
        inGroups 1(slip);
        nFaces 200;
        startFace 37302;
        inGroups 1 ( slip );
    }

This only appears if the boundary type is »slip«
Steps To ReproduceUse the case in the attachment and execute the run bash file
TagsNo tags attached.

Activities

Shorty

2014-10-03 09:24

reporter  

bugReportInGroups.tar.gz (1,130,825 bytes)

user4

2014-10-15 08:53

  ~0003253

slip is not a valid polyPatch type.

(the generic patch&patchField substitution mechanism hides this in your case; disable this subsitution by changing in the etc/controlDict

    disallowGenericFvPatchField 1;
    disallowGenericPointPatchField 1;
    disallowGenericPolyPatch 1;
)

Issue History

Date Modified Username Field Change
2014-10-03 09:24 Shorty New Issue
2014-10-03 09:24 Shorty File Added: bugReportInGroups.tar.gz
2014-10-15 08:53 user4 Note Added: 0003253
2014-10-15 08:53 user4 Status new => resolved
2014-10-15 08:53 user4 Fixed in Version => 2.3.x
2014-10-15 08:53 user4 Resolution open => no change required
2014-10-15 08:53 user4 Assigned To => user4