View Issue Details

IDProjectCategoryView StatusLast Update
0000963OpenFOAMBugpublic2013-08-20 15:11
Reporterdavidh Assigned Tohenry  
PrioritynormalSeverityminorReproducibilityalways
Status resolvedResolutionfixed 
PlatformanyOSanyOS Versionany
Summary0000963: PhaseEulerFoam - correction of the phase flux ("phi") patch types does not include "partialSlip" patches
DescriptionIn the PhaseEulerFoam solvers the following lines have been added to the constructor of the phase class:
....
            if
            (
                isA<fixedValueFvPatchVectorField>(U_.boundaryField()[i])
             || isA<slipFvPatchVectorField>(U_.boundaryField()[i])
            )
            {
                phiTypes[i] = fixedValueFvPatchScalarField::typeName;
            }
...


This omits "partial slip" boundaries since they are not derived from slip. This could probably be fixed by adding the condition:
    "isA<partialSlipFvPatchVectorField>(U_.boundaryField()[i]) "
TagsNo tags attached.

Activities

henry

2013-08-20 15:11

manager   ~0002430

Resolved by commit 9d0d6374913c4bf3325e81e86666f12f0c757097

Issue History

Date Modified Username Field Change
2013-08-14 20:07 davidh New Issue
2013-08-20 15:11 henry Note Added: 0002430
2013-08-20 15:11 henry Status new => resolved
2013-08-20 15:11 henry Resolution open => fixed
2013-08-20 15:11 henry Assigned To => henry