diff --git a/applications/solvers/combustion/PDRFoam/PDRFoamAutoRefine.C b/applications/solvers/combustion/PDRFoam/PDRFoamAutoRefine.C index 4005d2d26f..6f41ca13c7 100644 --- a/applications/solvers/combustion/PDRFoam/PDRFoamAutoRefine.C +++ b/applications/solvers/combustion/PDRFoam/PDRFoamAutoRefine.C @@ -122,7 +122,7 @@ int main(int argc, char *argv[]) fvc::makeAbsolute(phi, rho, U); // Test : disable refinement for some cells - PackedBoolList& protectedCell = + bitSet& protectedCell = refCast(mesh).protectedCell(); if (protectedCell.empty()) diff --git a/applications/solvers/incompressible/pimpleFoam/overPimpleDyMFoam/interpolatedFaces.H b/applications/solvers/incompressible/pimpleFoam/overPimpleDyMFoam/interpolatedFaces.H index c9dd9cd8fe..b86e23c3c8 100644 --- a/applications/solvers/incompressible/pimpleFoam/overPimpleDyMFoam/interpolatedFaces.H +++ b/applications/solvers/incompressible/pimpleFoam/overPimpleDyMFoam/interpolatedFaces.H @@ -2,8 +2,8 @@ interpolationCellPoint UInterpolator(HbyA); // Determine faces on outside of interpolated cells -PackedBoolList isOwnerInterpolatedFace(mesh.nInternalFaces()); -PackedBoolList isNeiInterpolatedFace(mesh.nInternalFaces()); +bitSet isOwnerInterpolatedFace(mesh.nInternalFaces()); +bitSet isNeiInterpolatedFace(mesh.nInternalFaces()); // Determine donor cells labelListList donorCell(mesh.nInternalFaces()); @@ -175,11 +175,11 @@ surfaceVectorField faceNormals(mesh.Sf()/mesh.magSf()); forAll(isNeiInterpolatedFace, faceI) { label cellId = -1; - if (isNeiInterpolatedFace[faceI]) + if (isNeiInterpolatedFace.test(faceI)) { cellId = mesh.faceNeighbour()[faceI]; } - else if (isOwnerInterpolatedFace[faceI]) + else if (isOwnerInterpolatedFace.test(faceI)) { cellId = mesh.faceOwner()[faceI]; } diff --git a/applications/test/List/Test-List.C b/applications/test/List/Test-List.C index 9af25cbe5a..979ce9ac5d 100644 --- a/applications/test/List/Test-List.C +++ b/applications/test/List/Test-List.C @@ -474,7 +474,7 @@ int main(int argc, char *argv[]) } { - PackedBoolList select = HashSetOps::bitset(locations); + bitSet select = HashSetOps::bitset(locations); auto output = ListOps::createWithValue