Updated for WM_LABEL_SIZE=64

This commit is contained in:
Henry Weller
2023-04-17 20:57:32 +01:00
parent 5bcca1cca9
commit 8a6be43be6
4 changed files with 12 additions and 12 deletions

View File

@ -546,7 +546,7 @@ Foam::polyMesh::polyMesh
IOobject::NO_READ, IOobject::NO_READ,
IOobject::AUTO_WRITE IOobject::AUTO_WRITE
), ),
0 label(0)
), ),
neighbour_ neighbour_
( (
@ -559,7 +559,7 @@ Foam::polyMesh::polyMesh
IOobject::NO_READ, IOobject::NO_READ,
IOobject::AUTO_WRITE IOobject::AUTO_WRITE
), ),
0 label(0)
), ),
clearedPrimitives_(false), clearedPrimitives_(false),
boundary_ boundary_

View File

@ -2,7 +2,7 @@
========= | ========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org \\ / O peration | Website: https://openfoam.org
\\ / A nd | Copyright (C) 2011-2022 OpenFOAM Foundation \\ / A nd | Copyright (C) 2011-2023 OpenFOAM Foundation
\\/ M anipulation | \\/ M anipulation |
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
License License
@ -426,7 +426,7 @@ Foam::polyMesh::polyMesh
IOobject::NO_READ, IOobject::NO_READ,
IOobject::AUTO_WRITE IOobject::AUTO_WRITE
), ),
0 label(0)
), ),
owner_ owner_
( (
@ -439,7 +439,7 @@ Foam::polyMesh::polyMesh
IOobject::NO_READ, IOobject::NO_READ,
IOobject::AUTO_WRITE IOobject::AUTO_WRITE
), ),
0 label(0)
), ),
neighbour_ neighbour_
( (
@ -452,7 +452,7 @@ Foam::polyMesh::polyMesh
IOobject::NO_READ, IOobject::NO_READ,
IOobject::AUTO_WRITE IOobject::AUTO_WRITE
), ),
0 label(0)
), ),
clearedPrimitives_(false), clearedPrimitives_(false),
boundary_ boundary_
@ -715,7 +715,7 @@ Foam::polyMesh::polyMesh
IOobject::NO_READ, IOobject::NO_READ,
IOobject::AUTO_WRITE IOobject::AUTO_WRITE
), ),
0 label(0)
), ),
owner_ owner_
( (
@ -728,7 +728,7 @@ Foam::polyMesh::polyMesh
IOobject::NO_READ, IOobject::NO_READ,
IOobject::AUTO_WRITE IOobject::AUTO_WRITE
), ),
0 label(0)
), ),
neighbour_ neighbour_
( (
@ -741,7 +741,7 @@ Foam::polyMesh::polyMesh
IOobject::NO_READ, IOobject::NO_READ,
IOobject::AUTO_WRITE IOobject::AUTO_WRITE
), ),
0 label(0)
), ),
clearedPrimitives_(false), clearedPrimitives_(false),
boundary_ boundary_

View File

@ -414,7 +414,7 @@ Foam::singleCellFvMesh::singleCellFvMesh
io.readOpt(), io.readOpt(),
io.writeOpt() io.writeOpt()
), ),
0 label(0)
), ),
patchFaceMap_ patchFaceMap_
( (

View File

@ -2,7 +2,7 @@
========= | ========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org \\ / O peration | Website: https://openfoam.org
\\ / A nd | Copyright (C) 2013-2022 OpenFOAM Foundation \\ / A nd | Copyright (C) 2013-2023 OpenFOAM Foundation
\\/ M anipulation | \\/ M anipulation |
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
License License
@ -156,7 +156,7 @@ void Foam::patchInjectionBase::setPositionAndCell
} }
} }
return 0; return label(0);
}; };
const polyPatch& patch = mesh.boundaryMesh()[patchId_]; const polyPatch& patch = mesh.boundaryMesh()[patchId_];